
DeepLearning
vwenyu-L
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
deeplearning-tricks
0.batch-size= N full-batch1.batch-size=1 online_learning2.natch-size=m mini-batch原创 2016-03-06 13:39:10 · 558 阅读 · 0 评论 -
pytorch-basic tutorial
CONTACT WEIBOREFERENCESTENSORCLASS MODULEDESIGN MODULECONTAINERMULTI GPUDATASETSAVE RESTOREOPTIMIZERPARAM INITERRORSTENSORBOARDXPROFILER''' by L'''import torch import...原创 2017-12-06 17:39:19 · 656 阅读 · 0 评论 -
Deep Learning
CONTACT WEIBOcapsule networkgenerative adversarial network (GAN)recurrent neural network (RNN)source of deep learning and mlpaper sources原创 2017-12-09 09:56:05 · 334 阅读 · 0 评论 -
tensorflow-basic tutorial
CONTACT WEIBOREFERENCEIMAGE PROCESS TF.APP TENSORBOARD SERVINGSOMETHING原创 2017-12-09 09:59:56 · 406 阅读 · 0 评论 -
capsule network
1. DynamicRoutingBetweenCapsules2. Matrix capsules with EM Routing-----reference---------------------https://jhui.github.io/2017/11/14/Matrix-Capsules-with-EM-routing-Capsule原创 2017-11-25 16:24:40 · 1831 阅读 · 0 评论 -
generative adversarial network
---------------------reference------------------------------1. http://blog.aylien.com/introduction-generative-adversarial-networks-code-tensorflow/原创 2016-12-06 17:30:47 · 1898 阅读 · 0 评论 -
paper sources
ICCV, CVPR : http://wwww.cv-foundation.org/NIPS: https://papers.nips.cc/ICML JMLR AISTAS http://jmlr.org/processings/papers/CFF http://www.cff.org.cn/http://axive.org原创 2016-04-28 14:41:28 · 632 阅读 · 0 评论 -
py-faster-rcnn
--------------------reference-----------------------0. https://github.com/rbgirshick/py-faster-rcnn1. http://blog.youkuaiyun.com/samylee/article/details/512017442. http://blog.youkuaiyun.com/hgd1010101/arti原创 2016-10-02 11:11:30 · 622 阅读 · 0 评论 -
About RNN
about rnn原创 2016-09-30 13:37:47 · 356 阅读 · 0 评论 -
attention model
----------attention-----------http://blog.youkuaiyun.com/shenxiaolu1984/article/details/51582185原创 2016-10-24 13:12:57 · 372 阅读 · 0 评论 -
source of deep learning and ml
------------------0------------------------------#/usr/bin/bahIMAGE_ROOT=xxxrm -rf train.txtfind IMAGE_ROOT/image/ -name *xx.jpg | cut -d '/' -f3 | sed "s/$/ 1/" >> train.txtfine IMAGE_ROOT/原创 2016-03-10 15:58:19 · 1073 阅读 · 0 评论 -
database-scholar
1. Hashing图像检索源码及数据库总结 http://blog.youkuaiyun.com/willard_yuan/article/details/29806755原创 2016-06-21 15:52:32 · 327 阅读 · 0 评论 -
牛人博客相关
1. http://dustintran.com/blog/原创 2016-06-08 21:10:58 · 332 阅读 · 0 评论 -
implement of deep neural network --- python
import numpy as npimport randomdef sigmoid(z): return 1.0/(1.0 + np.exp(-z))def sigmoid_prime(z): return sigmoid(z)*(1.0-sigmoid(z))class Net(object): def __init__(self,原创 2016-03-26 21:22:23 · 577 阅读 · 0 评论 -
pytorch-distributed traning
1. 单机多卡数据并行```model = xxx losses = torch.nn.parallel.data_parallel(model, inputs=(), device_ids=[], dim=x) # functional style```2. pytorch-1.0 distributed2.1 单机多卡 2.2 多级多卡 ----...原创 2019-01-28 15:25:48 · 1115 阅读 · 2 评论