魏秀参:解析卷积神经网络。魏秀参:解析卷积神经网络。魏秀参:解析卷积神经网络。魏秀参:解析卷积神经网络。魏秀参:解析卷积神经网络
2020-01-21 03:13:57 83.03MB 深度学习 卷积神经网络 pdf
1
卷积神经网络在图像识别应用,此压缩包包括代码。
2020-01-06 03:11:39 40.96MB 深度学习
1
cifar10vgg.h5是cifar10由vgg16卷积神经网络跑通的权重文件,可用此文件进行转移学习,该代码在我的下载上面可以下载! http://download.csdn.net/download/qq_30803353/10158299
2020-01-03 11:30:27 57.35MB cifar10vgg 深度学习 卷积神经网络
1
基于tensorflow和pycharm实现基于卷积神经网络的手写字体识别系统,并上传制作好的课程文件,以供大家直接使用,代码亲测可用
2019-12-21 21:50:45 1020KB 期末作业 深度学习 卷积神经网络
1
本资料为基于python的卷积神经网络(CNN)实现 layer文件夹中包括卷积层、池化层、全连接层、relu层等基础层 没有调用tensorflow, pytorch等深度学习框架,手动实现了各层的反向传播BP算法
2019-12-21 21:47:34 60KB 深度学习 卷积神经网络 python 卷积层
1
深度学习、人工智能、机器学习、卷积神经网络的调研。
2019-12-21 21:28:46 956KB 深度学习 卷积神经网络 调研
1
手写数字识别MNIST数据集,内含t10k-images-idx3-ubyte.gz等四个压缩文件以及卷积神经网络识别代码。
1
该文档包含了比较全面的行为识别的综述,以及深度学习的最近进展,能够帮助大家尽快掌握该领域的发展现状,为大家理清研究思路提供一定的帮助和参考。
2019-12-21 20:00:04 5.11MB 行为识别 深度学习 卷积神经网络
1
深度学习之卷积神经网络CNN做手写体识别的VS代码。支持linux版本和VS2012版本。 tiny-cnn: A C++11 implementation of convolutional neural networks ======== tiny-cnn is a C++11 implementation of convolutional neural networks. design principle ----- * fast, without GPU 98.8% accuracy on MNIST in 13 minutes training (@Core i7-3520M) * header only, policy-based design supported networks ----- ### layer-types * fully-connected layer * convolutional layer * average pooling layer ### activation functions * tanh * sigmoid * rectified linear * identity ### loss functions * cross-entropy * mean-squared-error ### optimization algorithm * stochastic gradient descent (with/without L2 normalization) * stochastic gradient levenberg marquardt dependencies ----- * boost C++ library * Intel TBB sample code ------ ```cpp #include "tiny_cnn.h" using namespace tiny_cnn; // specify loss-function and optimization-algorithm typedef network CNN; // tanh, 32x32 input, 5x5 window, 1-6 feature-maps convolution convolutional_layer C1(32, 32, 5, 1, 6); // tanh, 28x28 input, 6 feature-maps, 2x2 subsampling average_pooling_layer S2(28, 28, 6, 2); // fully-connected layers fully_connected_layer F3(14*14*6, 120); fully_connected_layer F4(120, 10); // connect all CNN mynet; mynet.add(&C1); mynet.add(&S2); mynet.add(&F3); mynet.add(&F4); assert(mynet.in_dim() == 32*32); assert(mynet.out_dim() == 10); ``` more sample, read main.cpp build sample program ------ ### gcc(4.6~) without tbb ./waf configure --BOOST_ROOT=your-boost-root ./waf build with tbb ./waf configure --TBB --TBB_ROOT=your-tbb-root --BOOST_ROOT=your-boost-root ./waf build with tbb and SSE/AVX ./waf configure --AVX --TBB --TBB_ROOT=your-tbb-root --BOOST_ROOT=your-boost-root ./waf build ./waf configure --SSE --TBB --TBB_ROOT=your-tbb-root --BOOST_ROOT=your-boost-root ./waf build or edit inlude/co
2019-12-21 19:40:28 10.29MB 深度学习 卷积神经网络 CNN VS
1
深度学习的卷积神经网络CNN用于做人脸检测等CV算法的C++库。
2019-12-21 19:40:28 4.1MB 深度学习 卷积神经网络 CNN 人脸检测
1