12 2016 档案
摘要:blockDim.x*gridDim.x 跳过一个grid int <<<参数1,参数2>>>(int *a,int * b,int * c); 如果是一维的,参数1表示一个grid里面有多少个block块,参数2表示一个block块里面有多少个thread线程 namespace caffe {
阅读全文
摘要:RELULayer层 bottom[0]->count=n*c*w*h=50*96*56*56 count=50*96*56*56,根据bottom_data[i]访问所有的数据(多维数组都是一维数组那个样子存储的,所以这样就可以访问所有的数据),同时说明,一批50是一起计算的 conv_layer
阅读全文
摘要:首先修改src/caffe/proto/下的caffe.proto,修改好后需要编译 然后修改include/caffe/layers/logwxl_layer.hpp 然后修改src/caffe/layers/logwxl_layer.cpp和logwxl_layer.cu 最后make all
阅读全文
摘要:配置参考博客:(目前有问题,百度说官网的是32bit,现在正在尝试64位 http://www.powerxing.com/install-hadoop-cluster/
阅读全文
摘要:可以在子类中通过基类名访问函数 // oj4.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include<iostream>#include<vector>using namespa
阅读全文
摘要:pading :SAME,VALID 区别 http://blog.csdn.net/mao_xiao_feng/article/details/53444333 tensorflow实现的各种算法:http://www.cnblogs.com/zhizhan/p/5971423.html 卷积神经
阅读全文