├── .gitignore ├── LICENSE ├── README.md ├── backend ├── cudnn.lua ├── cunn.lua └── nn.lua ├── cli.lua ├── example ├── README.md ├── imgnet.words ├── indri-960.jpg └── main.lua ├── init.lua ├── loadccv-scm-1.rockspec └── util.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/README.md -------------------------------------------------------------------------------- /backend/cudnn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/backend/cudnn.lua -------------------------------------------------------------------------------- /backend/cunn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/backend/cunn.lua -------------------------------------------------------------------------------- /backend/nn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/backend/nn.lua -------------------------------------------------------------------------------- /cli.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/cli.lua -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/example/README.md -------------------------------------------------------------------------------- /example/imgnet.words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/example/imgnet.words -------------------------------------------------------------------------------- /example/indri-960.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/example/indri-960.jpg -------------------------------------------------------------------------------- /example/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/example/main.lua -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/init.lua -------------------------------------------------------------------------------- /loadccv-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/loadccv-scm-1.rockspec -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltheil/loadccv/HEAD/util.c --------------------------------------------------------------------------------