资源简介
卷积神经网络的简单实现
开发语言:C++
便宜环境:Ubuntu 16.04
依赖库eigen3
代码片段和文件信息
/*
* Activationlayer.cpp
*
* Created on: Feb 8 2018
* Author: user
*/
#include “Activationlayer.h“
namespace DeepLearning {
Activationlayer::Activationlayer(layerType layerType)
: layer(layerType){
// TODO Auto-generated constructor stub
}
Activationlayer::~Activationlayer() {
// TODO Auto-generated destructor stub
}
/*-----------------------------------------------------------------------------------
* public interface
*----------------------------------------------------------------------------------*/
int Activationlayer::Forward(const vector &input vector &output){
if(input.empty()){
return -1;
}
// save input data.
this->m_input = input;
this->m_output.clear();
for(unsigned int i = 0; i < input.siz
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-02-10 02:32 hello_cnn-master\
文件 2251 2018-02-10 02:32 hello_cnn-master\Activationla
文件 993 2018-02-10 02:32 hello_cnn-master\Activationla
文件 486 2018-02-10 02:32 hello_cnn-master\CMakeLists.txt
文件 1870 2018-02-10 02:32 hello_cnn-master\Cifar.cpp
文件 473 2018-02-10 02:32 hello_cnn-master\Cifar.h
文件 12922 2018-02-10 02:32 hello_cnn-master\Convolutionla
文件 2292 2018-02-10 02:32 hello_cnn-master\Convolutionla
文件 1066 2018-02-10 02:32 hello_cnn-master\DebugPrint.h
文件 7852 2018-02-10 02:32 hello_cnn-master\FullConnect.cpp
文件 1441 2018-02-10 02:32 hello_cnn-master\FullConnect.h
文件 3510 2018-02-10 02:32 hello_cnn-master\la
文件 1116 2018-02-10 02:32 hello_cnn-master\la
文件 3228 2018-02-10 02:32 hello_cnn-master\Minst.cpp
文件 554 2018-02-10 02:32 hello_cnn-master\Minst.h
文件 5320 2018-02-10 02:32 hello_cnn-master\Net.cpp
文件 1444 2018-02-10 02:32 hello_cnn-master\Net.h
文件 4510 2018-02-10 02:32 hello_cnn-master\Poolingla
文件 1059 2018-02-10 02:32 hello_cnn-master\Poolingla
文件 641 2018-02-10 02:32 hello_cnn-master\README.md
文件 1131 2018-02-10 02:32 hello_cnn-master\Relula
文件 564 2018-02-10 02:32 hello_cnn-master\Relula
文件 1175 2018-02-10 02:32 hello_cnn-master\Sigmoidla
文件 566 2018-02-10 02:32 hello_cnn-master\Sigmoidla
文件 3627 2018-02-10 02:32 hello_cnn-master\Softmaxla
文件 1174 2018-02-10 02:32 hello_cnn-master\Softmaxla
文件 1117 2018-02-10 02:32 hello_cnn-master\Tanhla
文件 545 2018-02-10 02:32 hello_cnn-master\Tanhla
文件 4690 2018-02-10 02:32 hello_cnn-master\main.cpp
文件 629 2018-02-10 02:32 hello_cnn-master\readme
- 上一篇:医学药物管理系统C语言
- 下一篇:MFC42D.dll
相关资源
- c++实现P2PDemo(点对点聊天)
- 斐波那契数列(c++实现)
- C++实现经纬度与公里网的装换
- FFT 快速傅里叶变换C++实现
- C++实现主席树(可持久化线段树)
- c++实现:哥德巴赫猜想(6~n的证明)
- C++实现解方程(代码)
- TSP问题遗传算法C/C++实现
- HMAC-SHA1 C++实现
- linux c++实现https
- 哈夫曼编码(c++实现)
- C++实现信号滤波处理
- MD5加密算法C++实现
- 图像扭曲C++实现
- C++实现高并发内存池
- C/C++实现对X509数字证书解析及验证
- c++实现贪吃蛇
- 用c++实现我的朋友信息管理
- C++实现图书管理系统
- C++实现http/https/ftp文件
- Storage and Buffer Manager C++实现
- c++实现内存搜索源代码和CE差不多
- 模拟鼠标单击、双击 C++实现
- 使用C++实现Socket 2人聊天
- vc++实现图像的缩放
- C++实现树和森林
- Opencv + c++实现简单的小波变换
- 大地测量学编程C++实现
- 实用Fourier变换与C++实现
- VC++实现GPS数据采集与提取的软件编程
评论
共有 条评论