Skip to content

Instantly share code, notes, and snippets.

@Tonyfy
Tonyfy / LCNN_train_test.prototxt
Last active January 8, 2017 09:00
LCNN neural network architectures
name: "LCNN_net"
layer {
name: "data"
type:"Data"
top: "data"
top: "label"
data_param{
source: "lmdb_0start/casia494414_train0start_lmdb"
backend: LMDB
batch_size: 64 }

c 艹 learning plan


  • 课程视频网址,网易公开课上的有中文字幕
  • 课件打印(可选),自己安排每周的视频学习时间,课后习题以及编程习题,以下安排仅作参考

周次 7 8 9 10 11 12 13 14 15 16 17 18
起始日期 10.13 10.19 10.26 11.2 11.9 11.16 11.23 12.7 12.14 12.21 12.28 2016.1.4
@Tonyfy
Tonyfy / predict.cpp
Last active August 29, 2015 14:22 — forked from Zackory/predict.cpp
#include <cuda_runtime.h>
#include <cstring>
#include <cstdlib>
#include <vector>
#include <string>
#include <iostream>
#include <stdio.h>
#include "caffe/caffe.hpp"