机器学习
嘿芝麻
弱监督目标检测/定位
展开
-
softmax的log似然代价函数(公式求导)
在人工神经网络(ANN)中,Softmax通常被用作输出层的激活函数。这不仅是因为它的效果好,而且因为它使得ANN的输出值更易于理解。同时,softmax配合log似然代价函数,其训练效果也要比采用二次代价函数的方式好。【转】http://blog.csdn.net/u014313009/article/details/510453031. softmax函数及转载 2017-08-23 20:26:37 · 1515 阅读 · 0 评论 -
深度学习常用数据集
ImageNet http://www.image-net.org/Microsoft的COCO http://mscoco.org/CIFAR-10和CIFAR-100 https://www.cs.toronto.edu/~kriz/cifar.htmlPASCAL VOC http://host.robots.ox.ac.uk/pascal/VOC/常用预训练模型池:原创 2018-01-22 11:52:32 · 587 阅读 · 0 评论 -
【ECCV 2018】Paper List
The ECCV 2018 papers, provided here by the Computer Vision Foundation, are the author-created versions. http://openaccess.thecvf.com/content_ECCV_2018/html/原创 2018-09-01 14:50:19 · 6526 阅读 · 0 评论 -
Faster RCNN pytorch 复现
本文参考的复现代码为Faster RCNN with PyTorch。1.Install the requirements pip install pyyaml sympy h5py cython numpy scipy menpo·install opencv3 1.1 Update packagessudo apt-get updatesudo apt-get upgrad...原创 2018-09-19 15:04:10 · 6121 阅读 · 28 评论 -
Dilated Convolutions 空洞卷积 pytorch版
from torch import nnimport torch.nn.init as initdef transform(): return Compose([ ToTensor(), # Normalize((12,12,12),std = (1,1,1)), ])arr = range(1,26)arr = np.reshape(ar...转载 2018-12-14 17:48:20 · 12195 阅读 · 5 评论