├── .gitignore ├── CMakeLists.txt ├── README.md ├── attention ├── README.md ├── attention.lua └── attention.ui ├── filter-bank ├── g.ui └── run.lua ├── gabor-layer-demo ├── GaborLayer.lua ├── frame.ui └── gabortest.lua ├── linear-regression └── example-linear-regression.lua ├── live-kinect ├── g.ui └── run.lua ├── load-data └── load-images.lua ├── logistic-regression ├── example-logistic-regression.csv └── example-logistic-regression.lua ├── mst-based-segmenter └── run.lua ├── person-detector ├── HDg.ui ├── PyramidPacker.lua ├── PyramidUnPacker.lua ├── README.md ├── data.lua ├── g.ui ├── model.lua ├── model.net ├── preprocessing.lua ├── run.lua ├── rundemo.lua ├── test.lua └── train.lua ├── profiling ├── .DS_Store ├── conv-cpu.lua ├── conv-gpu.lua ├── linear-cpu.lua ├── linear-gpu.lua └── results.rtf ├── segment-color ├── g.ui └── run.lua ├── simple-frame-grabber ├── g.ui └── run.lua ├── temporal-diff ├── g.ui └── run.lua ├── tensors └── slicing.lua ├── tracker ├── .gitignore ├── README.md ├── compile.sh ├── display.lua ├── fastdist.c ├── fastdist.h ├── g.ui ├── process.lua ├── random.net ├── run.lua ├── source.lua ├── state.lua ├── supervised.net ├── ui.lua └── unsupervised.net ├── train-a-digit-classifier ├── dataset-mnist.lua └── train-on-mnist.lua ├── train-autoencoder ├── autoencoder-data.lua └── train-autoencoder.lua ├── train-face-detector ├── data.lua ├── model.lua ├── run.lua ├── test.lua └── train.lua ├── train-on-cifar └── train-on-cifar.lua └── train-on-housenumbers └── train-on-housenumbers.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/README.md -------------------------------------------------------------------------------- /attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/attention/README.md -------------------------------------------------------------------------------- /attention/attention.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/attention/attention.lua -------------------------------------------------------------------------------- /attention/attention.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/attention/attention.ui -------------------------------------------------------------------------------- /filter-bank/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/filter-bank/g.ui -------------------------------------------------------------------------------- /filter-bank/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/filter-bank/run.lua -------------------------------------------------------------------------------- /gabor-layer-demo/GaborLayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/gabor-layer-demo/GaborLayer.lua -------------------------------------------------------------------------------- /gabor-layer-demo/frame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/gabor-layer-demo/frame.ui -------------------------------------------------------------------------------- /gabor-layer-demo/gabortest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/gabor-layer-demo/gabortest.lua -------------------------------------------------------------------------------- /linear-regression/example-linear-regression.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/linear-regression/example-linear-regression.lua -------------------------------------------------------------------------------- /live-kinect/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/live-kinect/g.ui -------------------------------------------------------------------------------- /live-kinect/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/live-kinect/run.lua -------------------------------------------------------------------------------- /load-data/load-images.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/load-data/load-images.lua -------------------------------------------------------------------------------- /logistic-regression/example-logistic-regression.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/logistic-regression/example-logistic-regression.csv -------------------------------------------------------------------------------- /logistic-regression/example-logistic-regression.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/logistic-regression/example-logistic-regression.lua -------------------------------------------------------------------------------- /mst-based-segmenter/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/mst-based-segmenter/run.lua -------------------------------------------------------------------------------- /person-detector/HDg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/HDg.ui -------------------------------------------------------------------------------- /person-detector/PyramidPacker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/PyramidPacker.lua -------------------------------------------------------------------------------- /person-detector/PyramidUnPacker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/PyramidUnPacker.lua -------------------------------------------------------------------------------- /person-detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/README.md -------------------------------------------------------------------------------- /person-detector/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/data.lua -------------------------------------------------------------------------------- /person-detector/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/g.ui -------------------------------------------------------------------------------- /person-detector/model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/model.lua -------------------------------------------------------------------------------- /person-detector/model.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/model.net -------------------------------------------------------------------------------- /person-detector/preprocessing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/preprocessing.lua -------------------------------------------------------------------------------- /person-detector/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/run.lua -------------------------------------------------------------------------------- /person-detector/rundemo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/rundemo.lua -------------------------------------------------------------------------------- /person-detector/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/test.lua -------------------------------------------------------------------------------- /person-detector/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/person-detector/train.lua -------------------------------------------------------------------------------- /profiling/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/profiling/.DS_Store -------------------------------------------------------------------------------- /profiling/conv-cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/profiling/conv-cpu.lua -------------------------------------------------------------------------------- /profiling/conv-gpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/profiling/conv-gpu.lua -------------------------------------------------------------------------------- /profiling/linear-cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/profiling/linear-cpu.lua -------------------------------------------------------------------------------- /profiling/linear-gpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/profiling/linear-gpu.lua -------------------------------------------------------------------------------- /profiling/results.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/profiling/results.rtf -------------------------------------------------------------------------------- /segment-color/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/segment-color/g.ui -------------------------------------------------------------------------------- /segment-color/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/segment-color/run.lua -------------------------------------------------------------------------------- /simple-frame-grabber/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/simple-frame-grabber/g.ui -------------------------------------------------------------------------------- /simple-frame-grabber/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/simple-frame-grabber/run.lua -------------------------------------------------------------------------------- /temporal-diff/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/temporal-diff/g.ui -------------------------------------------------------------------------------- /temporal-diff/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/temporal-diff/run.lua -------------------------------------------------------------------------------- /tensors/slicing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tensors/slicing.lua -------------------------------------------------------------------------------- /tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/.gitignore -------------------------------------------------------------------------------- /tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/README.md -------------------------------------------------------------------------------- /tracker/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/compile.sh -------------------------------------------------------------------------------- /tracker/display.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/display.lua -------------------------------------------------------------------------------- /tracker/fastdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/fastdist.c -------------------------------------------------------------------------------- /tracker/fastdist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/fastdist.h -------------------------------------------------------------------------------- /tracker/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/g.ui -------------------------------------------------------------------------------- /tracker/process.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/process.lua -------------------------------------------------------------------------------- /tracker/random.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/random.net -------------------------------------------------------------------------------- /tracker/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/run.lua -------------------------------------------------------------------------------- /tracker/source.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/source.lua -------------------------------------------------------------------------------- /tracker/state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/state.lua -------------------------------------------------------------------------------- /tracker/supervised.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/supervised.net -------------------------------------------------------------------------------- /tracker/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/ui.lua -------------------------------------------------------------------------------- /tracker/unsupervised.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/tracker/unsupervised.net -------------------------------------------------------------------------------- /train-a-digit-classifier/dataset-mnist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-a-digit-classifier/dataset-mnist.lua -------------------------------------------------------------------------------- /train-a-digit-classifier/train-on-mnist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-a-digit-classifier/train-on-mnist.lua -------------------------------------------------------------------------------- /train-autoencoder/autoencoder-data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-autoencoder/autoencoder-data.lua -------------------------------------------------------------------------------- /train-autoencoder/train-autoencoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-autoencoder/train-autoencoder.lua -------------------------------------------------------------------------------- /train-face-detector/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-face-detector/data.lua -------------------------------------------------------------------------------- /train-face-detector/model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-face-detector/model.lua -------------------------------------------------------------------------------- /train-face-detector/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-face-detector/run.lua -------------------------------------------------------------------------------- /train-face-detector/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-face-detector/test.lua -------------------------------------------------------------------------------- /train-face-detector/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-face-detector/train.lua -------------------------------------------------------------------------------- /train-on-cifar/train-on-cifar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-on-cifar/train-on-cifar.lua -------------------------------------------------------------------------------- /train-on-housenumbers/train-on-housenumbers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch/demos/HEAD/train-on-housenumbers/train-on-housenumbers.lua --------------------------------------------------------------------------------