上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页
摘要: caffe自己有写查看模型的内容mxnet自己也写了一个import mxnet as mximport pdbdef load_checkpoint(prefix, epoch): """ Load model checkpoint from file.... 阅读全文
posted @ 2017-04-24 13:20 开往春天的拖拉机 阅读(750) 评论(0) 推荐(0) 编辑
摘要: caffe一样,编译的时候用make 或者make -8会遇到如下的错误include/mxnet/./base.h:50:2: error: #error "Currently we need g++ 4.8 or higher to fully support c++11 features"需要... 阅读全文
posted @ 2017-04-24 10:57 开往春天的拖拉机 阅读(130) 评论(0) 推荐(0) 编辑
摘要: caffe一样,编译的时候用make 或者make -8会遇到如下的错误include/mxnet/./base.h:50:2: error: #error "Currently we need g++ 4.8 or higher to fully support c... 阅读全文
posted @ 2017-04-24 10:57 开往春天的拖拉机 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 全连接操作(全连接层)也具有前向和反向。代码 解析如下 virtual void Forward(const OpContext &ctx, const std::vector &in_data, const ... 阅读全文
posted @ 2017-04-21 17:32 开往春天的拖拉机 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 全连接操作(全连接层)也具有前向和反向。代码 解析如下 virtual void Forward(const OpContext &ctx, const std::vector &in_data, ... 阅读全文
posted @ 2017-04-21 17:32 开往春天的拖拉机 阅读(500) 评论(0) 推荐(0) 编辑
摘要: caffe里面都是以layer的形式表现运算,mxnet中直接用operator来进行描述了具体的代码在src/operator中,下面将进行三个模块的解读convolution-inl.hconvolution.ccconvolution.cu/* * Copyright (c) 2015 by ... 阅读全文
posted @ 2017-04-21 16:35 开往春天的拖拉机 阅读(635) 评论(0) 推荐(0) 编辑
摘要: caffe里面都是以layer的形式表现运算,mxnet中直接用operator来进行描述了具体的代码在src/operator中,下面将进行三个模块的解读convolution-inl.hconvolution.ccconvolution.cu/* * Copyri... 阅读全文
posted @ 2017-04-21 16:35 开往春天的拖拉机 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 在文献[1]中写了怎样读mxnet的源代码。所有的模块接口的定义都在include/mxnet中,意思就是这个include里面的代码就是好的document以base.h为例进行分析#ifndef MXNET_BASE_H_#define MXNET_BASE_H_#include #includ... 阅读全文
posted @ 2017-04-21 15:42 开往春天的拖拉机 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 在文献[1]中写了怎样读mxnet的源代码。所有的模块接口的定义都在include/mxnet中,意思就是这个include里面的代码就是好的document以base.h为例进行分析#ifndef MXNET_BASE_H_#define MXNET_BASE_H_... 阅读全文
posted @ 2017-04-21 15:42 开往春天的拖拉机 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 在文章[1]中展示了c++11的最新特性,经过了13年的时间,c++11比c++98更改了一些新的特性,相当于一门新的语言。1吸收了当前其他流行语言的一些特性。1.1 比如可以使用auto来不指定变量类型,和python、matlab相似。auto x=0; //x has type int bec... 阅读全文
posted @ 2017-04-21 15:31 开往春天的拖拉机 阅读(125) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页