A tool that lets you load ccv networks in Torch7 (inspired by loadcaffe).
Installing ccv is not required since this tools mimicks
ccv_convnet_read
, i.e it
reads a ccv .sqlite3
archive and builds the corresponding network with Torch
modules.
luarocks make
You can convert a ccv network right from the command-line:
loadccv /path/to/ccv/samples/image-net-2012-vgg-d.sqlite3
Or use the library in your program:
local ccv = require 'loadccv'
local net = ccv.load('/path/to/ccv/samples/image-net-2012-vgg-d.sqlite3')
See the example section.