
机器学习
嘿芝麻
弱监督目标检测/定位
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
softmax的log似然代价函数(公式求导)
在人工神经网络(ANN)中,Softmax通常被用作输出层的激活函数。这不仅是因为它的效果好,而且因为它使得ANN的输出值更易于理解。同时,softmax配合log似然代价函数,其训练效果也要比采用二次代价函数的方式好。 【转】http://blog.youkuaiyun.com/u014313009/article/details/51045303 1. softmax函数及转载 2017-08-23 20:26:37 · 1548 阅读 · 0 评论 -
深度学习常用数据集
ImageNet http://www.image-net.org/ Microsoft的COCO http://mscoco.org/ CIFAR-10和CIFAR-100 https://www.cs.toronto.edu/~kriz/cifar.html PASCAL VOC http://host.robots.ox.ac.uk/pascal/VOC/ 常用预训练模型池:原创 2018-01-22 11:52:32 · 646 阅读 · 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 · 6570 阅读 · 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 packages sudo apt-get update sudo apt-get upgrad...原创 2018-09-19 15:04:10 · 6397 阅读 · 28 评论 -
Dilated Convolutions 空洞卷积 pytorch版
from torch import nn import torch.nn.init as init def 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 · 12319 阅读 · 5 评论