/loadccv

Load ccv networks in Torch7

Primary LanguageCMIT LicenseMIT

loadccv

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.

Install

luarocks make

Usage

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')

Example

See the example section.