├── .gitignore ├── CMakeLists.txt ├── README.html ├── README.md ├── RNN-train-sample ├── FW.lua ├── GRU.lua ├── README.md ├── RNN.lua ├── data.lua ├── longData.lua ├── main.lua ├── network.lua ├── testLongData.lua ├── test_FW.lua ├── test_FW_TT.lua └── train-er-rnn.lua ├── _xLearn-demos ├── README-train ├── elab_logo.gif ├── face-detect-multiscale.lua ├── face-detect-segmented.lua ├── face-detect-singlescale.lua ├── face-detect-w-attention.lua ├── face-detect.ui ├── faces-attention.ui ├── haarcascade_frontalface_alt.xml ├── live-kinect.lua ├── live-kinect.ui ├── live-segm+sift.lua ├── live-segm+sift.ui ├── live-segm.lua ├── live-segm.ui ├── live-sift.lua ├── live-sift.ui ├── multithreaded.lua ├── opencv-tester.lua ├── opencv-tester.ui ├── temporal-diff.lua ├── test-cam.lua ├── test-opticalFlow.lua ├── test-segmentation.lua ├── test-stereo.lua ├── train-on-faces.lua ├── train-on-mnist-hessian.lua ├── train-on-mnist.lua └── trainAutoencoder.lua ├── attention ├── .DS_Store ├── attention.lua └── attention.ui ├── demo-core ├── README.md ├── display.lua ├── framecamera.lua ├── frameimage.lua ├── framevideo.lua ├── process.lua └── spatial.lua ├── demo-learner ├── g.ui ├── glarge.ui ├── run.lua └── ui.lua ├── demo-tracker ├── display.lua ├── frame.lua ├── process.lua └── run.lua ├── demo-visor ├── README.md └── run.lua ├── dok ├── graphicalmodels │ └── index.dok ├── gui │ └── index.dok ├── supervised │ ├── convnet.png │ ├── index.dok │ ├── linear_regression.png │ ├── logistic_argmax.png │ ├── logistic_regression.png │ ├── loss.png │ ├── mse_loss.png │ └── nll_loss.png └── unsupervised │ ├── auto_decoder.png │ ├── auto_encoder.png │ ├── index.dok │ ├── mse_loss.png │ ├── psd_encoder.png │ ├── psd_loss.png │ ├── sparse_coding.png │ └── sparse_coding_optim.png ├── face-detector-elab ├── HDg.ui ├── PyramidPacker.lua ├── PyramidUnPacker.lua ├── g.ui ├── model.net └── run.lua ├── filter-bank ├── g.ui └── run.lua ├── flow ├── 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 ├── road-net ├── multinet-float.net ├── preproc.t7 ├── run.lua ├── segmtools.lua ├── u1net.net └── unsup-cl-30.net ├── saliency-itti ├── g.ui └── run.lua ├── saliency-net ├── g.ui ├── run-qt.lua └── run-sdl.lua ├── segment-color ├── g.ui └── run.lua ├── simple-frame-grabber ├── g.ui └── run.lua ├── temporal-difference ├── frame.lua ├── lib │ ├── Makefile │ ├── http.c │ ├── http.h │ ├── video_decoder.c │ ├── videocap.c │ ├── videocap.h │ ├── videocodec.c │ └── videocodec.h └── 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-elab ├── 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/e-lab/torch7-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/README.md -------------------------------------------------------------------------------- /RNN-train-sample/FW.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/FW.lua -------------------------------------------------------------------------------- /RNN-train-sample/GRU.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/GRU.lua -------------------------------------------------------------------------------- /RNN-train-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/README.md -------------------------------------------------------------------------------- /RNN-train-sample/RNN.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/RNN.lua -------------------------------------------------------------------------------- /RNN-train-sample/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/data.lua -------------------------------------------------------------------------------- /RNN-train-sample/longData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/longData.lua -------------------------------------------------------------------------------- /RNN-train-sample/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/main.lua -------------------------------------------------------------------------------- /RNN-train-sample/network.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/network.lua -------------------------------------------------------------------------------- /RNN-train-sample/testLongData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/testLongData.lua -------------------------------------------------------------------------------- /RNN-train-sample/test_FW.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/test_FW.lua -------------------------------------------------------------------------------- /RNN-train-sample/test_FW_TT.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/test_FW_TT.lua -------------------------------------------------------------------------------- /RNN-train-sample/train-er-rnn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/RNN-train-sample/train-er-rnn.lua -------------------------------------------------------------------------------- /_xLearn-demos/README-train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/README-train -------------------------------------------------------------------------------- /_xLearn-demos/elab_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/elab_logo.gif -------------------------------------------------------------------------------- /_xLearn-demos/face-detect-multiscale.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/face-detect-multiscale.lua -------------------------------------------------------------------------------- /_xLearn-demos/face-detect-segmented.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/face-detect-segmented.lua -------------------------------------------------------------------------------- /_xLearn-demos/face-detect-singlescale.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/face-detect-singlescale.lua -------------------------------------------------------------------------------- /_xLearn-demos/face-detect-w-attention.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/face-detect-w-attention.lua -------------------------------------------------------------------------------- /_xLearn-demos/face-detect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/face-detect.ui -------------------------------------------------------------------------------- /_xLearn-demos/faces-attention.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/faces-attention.ui -------------------------------------------------------------------------------- /_xLearn-demos/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /_xLearn-demos/live-kinect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/live-kinect.lua -------------------------------------------------------------------------------- /_xLearn-demos/live-kinect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/live-kinect.ui -------------------------------------------------------------------------------- /_xLearn-demos/live-segm+sift.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/live-segm+sift.lua -------------------------------------------------------------------------------- /_xLearn-demos/live-segm+sift.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/live-segm+sift.ui -------------------------------------------------------------------------------- /_xLearn-demos/live-segm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/live-segm.lua -------------------------------------------------------------------------------- /_xLearn-demos/live-segm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/live-segm.ui -------------------------------------------------------------------------------- /_xLearn-demos/live-sift.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/live-sift.lua -------------------------------------------------------------------------------- /_xLearn-demos/live-sift.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/live-sift.ui -------------------------------------------------------------------------------- /_xLearn-demos/multithreaded.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/multithreaded.lua -------------------------------------------------------------------------------- /_xLearn-demos/opencv-tester.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/opencv-tester.lua -------------------------------------------------------------------------------- /_xLearn-demos/opencv-tester.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/opencv-tester.ui -------------------------------------------------------------------------------- /_xLearn-demos/temporal-diff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/temporal-diff.lua -------------------------------------------------------------------------------- /_xLearn-demos/test-cam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/test-cam.lua -------------------------------------------------------------------------------- /_xLearn-demos/test-opticalFlow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/test-opticalFlow.lua -------------------------------------------------------------------------------- /_xLearn-demos/test-segmentation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/test-segmentation.lua -------------------------------------------------------------------------------- /_xLearn-demos/test-stereo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/test-stereo.lua -------------------------------------------------------------------------------- /_xLearn-demos/train-on-faces.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/train-on-faces.lua -------------------------------------------------------------------------------- /_xLearn-demos/train-on-mnist-hessian.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/train-on-mnist-hessian.lua -------------------------------------------------------------------------------- /_xLearn-demos/train-on-mnist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/train-on-mnist.lua -------------------------------------------------------------------------------- /_xLearn-demos/trainAutoencoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/_xLearn-demos/trainAutoencoder.lua -------------------------------------------------------------------------------- /attention/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/attention/.DS_Store -------------------------------------------------------------------------------- /attention/attention.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/attention/attention.lua -------------------------------------------------------------------------------- /attention/attention.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/attention/attention.ui -------------------------------------------------------------------------------- /demo-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-core/README.md -------------------------------------------------------------------------------- /demo-core/display.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-core/display.lua -------------------------------------------------------------------------------- /demo-core/framecamera.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-core/framecamera.lua -------------------------------------------------------------------------------- /demo-core/frameimage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-core/frameimage.lua -------------------------------------------------------------------------------- /demo-core/framevideo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-core/framevideo.lua -------------------------------------------------------------------------------- /demo-core/process.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-core/process.lua -------------------------------------------------------------------------------- /demo-core/spatial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-core/spatial.lua -------------------------------------------------------------------------------- /demo-learner/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-learner/g.ui -------------------------------------------------------------------------------- /demo-learner/glarge.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-learner/glarge.ui -------------------------------------------------------------------------------- /demo-learner/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-learner/run.lua -------------------------------------------------------------------------------- /demo-learner/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-learner/ui.lua -------------------------------------------------------------------------------- /demo-tracker/display.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-tracker/display.lua -------------------------------------------------------------------------------- /demo-tracker/frame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-tracker/frame.lua -------------------------------------------------------------------------------- /demo-tracker/process.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-tracker/process.lua -------------------------------------------------------------------------------- /demo-tracker/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-tracker/run.lua -------------------------------------------------------------------------------- /demo-visor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-visor/README.md -------------------------------------------------------------------------------- /demo-visor/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/demo-visor/run.lua -------------------------------------------------------------------------------- /dok/graphicalmodels/index.dok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/graphicalmodels/index.dok -------------------------------------------------------------------------------- /dok/gui/index.dok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/gui/index.dok -------------------------------------------------------------------------------- /dok/supervised/convnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/supervised/convnet.png -------------------------------------------------------------------------------- /dok/supervised/index.dok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/supervised/index.dok -------------------------------------------------------------------------------- /dok/supervised/linear_regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/supervised/linear_regression.png -------------------------------------------------------------------------------- /dok/supervised/logistic_argmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/supervised/logistic_argmax.png -------------------------------------------------------------------------------- /dok/supervised/logistic_regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/supervised/logistic_regression.png -------------------------------------------------------------------------------- /dok/supervised/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/supervised/loss.png -------------------------------------------------------------------------------- /dok/supervised/mse_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/supervised/mse_loss.png -------------------------------------------------------------------------------- /dok/supervised/nll_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/supervised/nll_loss.png -------------------------------------------------------------------------------- /dok/unsupervised/auto_decoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/unsupervised/auto_decoder.png -------------------------------------------------------------------------------- /dok/unsupervised/auto_encoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/unsupervised/auto_encoder.png -------------------------------------------------------------------------------- /dok/unsupervised/index.dok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/unsupervised/index.dok -------------------------------------------------------------------------------- /dok/unsupervised/mse_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/unsupervised/mse_loss.png -------------------------------------------------------------------------------- /dok/unsupervised/psd_encoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/unsupervised/psd_encoder.png -------------------------------------------------------------------------------- /dok/unsupervised/psd_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/unsupervised/psd_loss.png -------------------------------------------------------------------------------- /dok/unsupervised/sparse_coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/unsupervised/sparse_coding.png -------------------------------------------------------------------------------- /dok/unsupervised/sparse_coding_optim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/dok/unsupervised/sparse_coding_optim.png -------------------------------------------------------------------------------- /face-detector-elab/HDg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/face-detector-elab/HDg.ui -------------------------------------------------------------------------------- /face-detector-elab/PyramidPacker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/face-detector-elab/PyramidPacker.lua -------------------------------------------------------------------------------- /face-detector-elab/PyramidUnPacker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/face-detector-elab/PyramidUnPacker.lua -------------------------------------------------------------------------------- /face-detector-elab/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/face-detector-elab/g.ui -------------------------------------------------------------------------------- /face-detector-elab/model.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/face-detector-elab/model.net -------------------------------------------------------------------------------- /face-detector-elab/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/face-detector-elab/run.lua -------------------------------------------------------------------------------- /filter-bank/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/filter-bank/g.ui -------------------------------------------------------------------------------- /filter-bank/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/filter-bank/run.lua -------------------------------------------------------------------------------- /flow/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/flow/g.ui -------------------------------------------------------------------------------- /flow/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/flow/run.lua -------------------------------------------------------------------------------- /gabor-layer-demo /GaborLayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/gabor-layer-demo /GaborLayer.lua -------------------------------------------------------------------------------- /gabor-layer-demo /frame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/gabor-layer-demo /frame.ui -------------------------------------------------------------------------------- /gabor-layer-demo /gabortest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/gabor-layer-demo /gabortest.lua -------------------------------------------------------------------------------- /linear-regression/example-linear-regression.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/linear-regression/example-linear-regression.lua -------------------------------------------------------------------------------- /live-kinect/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/live-kinect/g.ui -------------------------------------------------------------------------------- /live-kinect/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/live-kinect/run.lua -------------------------------------------------------------------------------- /load-data/load-images.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/load-data/load-images.lua -------------------------------------------------------------------------------- /logistic-regression/example-logistic-regression.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/logistic-regression/example-logistic-regression.csv -------------------------------------------------------------------------------- /logistic-regression/example-logistic-regression.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/logistic-regression/example-logistic-regression.lua -------------------------------------------------------------------------------- /mst-based-segmenter/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/mst-based-segmenter/run.lua -------------------------------------------------------------------------------- /person-detector/HDg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/HDg.ui -------------------------------------------------------------------------------- /person-detector/PyramidPacker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/PyramidPacker.lua -------------------------------------------------------------------------------- /person-detector/PyramidUnPacker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/PyramidUnPacker.lua -------------------------------------------------------------------------------- /person-detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/README.md -------------------------------------------------------------------------------- /person-detector/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/data.lua -------------------------------------------------------------------------------- /person-detector/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/g.ui -------------------------------------------------------------------------------- /person-detector/model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/model.lua -------------------------------------------------------------------------------- /person-detector/model.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/model.net -------------------------------------------------------------------------------- /person-detector/preprocessing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/preprocessing.lua -------------------------------------------------------------------------------- /person-detector/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/run.lua -------------------------------------------------------------------------------- /person-detector/rundemo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/rundemo.lua -------------------------------------------------------------------------------- /person-detector/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/test.lua -------------------------------------------------------------------------------- /person-detector/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/person-detector/train.lua -------------------------------------------------------------------------------- /profiling/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/profiling/.DS_Store -------------------------------------------------------------------------------- /profiling/conv-cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/profiling/conv-cpu.lua -------------------------------------------------------------------------------- /profiling/conv-gpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/profiling/conv-gpu.lua -------------------------------------------------------------------------------- /profiling/linear-cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/profiling/linear-cpu.lua -------------------------------------------------------------------------------- /profiling/linear-gpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/profiling/linear-gpu.lua -------------------------------------------------------------------------------- /profiling/results.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/profiling/results.rtf -------------------------------------------------------------------------------- /road-net/multinet-float.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/road-net/multinet-float.net -------------------------------------------------------------------------------- /road-net/preproc.t7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/road-net/preproc.t7 -------------------------------------------------------------------------------- /road-net/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/road-net/run.lua -------------------------------------------------------------------------------- /road-net/segmtools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/road-net/segmtools.lua -------------------------------------------------------------------------------- /road-net/u1net.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/road-net/u1net.net -------------------------------------------------------------------------------- /road-net/unsup-cl-30.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/road-net/unsup-cl-30.net -------------------------------------------------------------------------------- /saliency-itti/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/saliency-itti/g.ui -------------------------------------------------------------------------------- /saliency-itti/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/saliency-itti/run.lua -------------------------------------------------------------------------------- /saliency-net/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/saliency-net/g.ui -------------------------------------------------------------------------------- /saliency-net/run-qt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/saliency-net/run-qt.lua -------------------------------------------------------------------------------- /saliency-net/run-sdl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/saliency-net/run-sdl.lua -------------------------------------------------------------------------------- /segment-color/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/segment-color/g.ui -------------------------------------------------------------------------------- /segment-color/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/segment-color/run.lua -------------------------------------------------------------------------------- /simple-frame-grabber/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/simple-frame-grabber/g.ui -------------------------------------------------------------------------------- /simple-frame-grabber/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/simple-frame-grabber/run.lua -------------------------------------------------------------------------------- /temporal-difference/frame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/frame.lua -------------------------------------------------------------------------------- /temporal-difference/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/lib/Makefile -------------------------------------------------------------------------------- /temporal-difference/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/lib/http.c -------------------------------------------------------------------------------- /temporal-difference/lib/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/lib/http.h -------------------------------------------------------------------------------- /temporal-difference/lib/video_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/lib/video_decoder.c -------------------------------------------------------------------------------- /temporal-difference/lib/videocap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/lib/videocap.c -------------------------------------------------------------------------------- /temporal-difference/lib/videocap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/lib/videocap.h -------------------------------------------------------------------------------- /temporal-difference/lib/videocodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/lib/videocodec.c -------------------------------------------------------------------------------- /temporal-difference/lib/videocodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/lib/videocodec.h -------------------------------------------------------------------------------- /temporal-difference/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/temporal-difference/run.lua -------------------------------------------------------------------------------- /tensors/slicing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tensors/slicing.lua -------------------------------------------------------------------------------- /tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/.gitignore -------------------------------------------------------------------------------- /tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/README.md -------------------------------------------------------------------------------- /tracker/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/compile.sh -------------------------------------------------------------------------------- /tracker/display.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/display.lua -------------------------------------------------------------------------------- /tracker/fastdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/fastdist.c -------------------------------------------------------------------------------- /tracker/fastdist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/fastdist.h -------------------------------------------------------------------------------- /tracker/g.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/g.ui -------------------------------------------------------------------------------- /tracker/process.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/process.lua -------------------------------------------------------------------------------- /tracker/random.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/random.net -------------------------------------------------------------------------------- /tracker/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/run.lua -------------------------------------------------------------------------------- /tracker/source.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/source.lua -------------------------------------------------------------------------------- /tracker/state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/state.lua -------------------------------------------------------------------------------- /tracker/supervised.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/supervised.net -------------------------------------------------------------------------------- /tracker/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/ui.lua -------------------------------------------------------------------------------- /tracker/unsupervised.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/tracker/unsupervised.net -------------------------------------------------------------------------------- /train-a-digit-classifier/dataset-mnist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-a-digit-classifier/dataset-mnist.lua -------------------------------------------------------------------------------- /train-a-digit-classifier/train-on-mnist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-a-digit-classifier/train-on-mnist.lua -------------------------------------------------------------------------------- /train-autoencoder/autoencoder-data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-autoencoder/autoencoder-data.lua -------------------------------------------------------------------------------- /train-autoencoder/train-autoencoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-autoencoder/train-autoencoder.lua -------------------------------------------------------------------------------- /train-face-detector-elab/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-face-detector-elab/data.lua -------------------------------------------------------------------------------- /train-face-detector-elab/model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-face-detector-elab/model.lua -------------------------------------------------------------------------------- /train-face-detector-elab/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-face-detector-elab/run.lua -------------------------------------------------------------------------------- /train-face-detector-elab/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-face-detector-elab/test.lua -------------------------------------------------------------------------------- /train-face-detector-elab/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-face-detector-elab/train.lua -------------------------------------------------------------------------------- /train-on-cifar/train-on-cifar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-on-cifar/train-on-cifar.lua -------------------------------------------------------------------------------- /train-on-housenumbers/train-on-housenumbers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/torch7-demos/HEAD/train-on-housenumbers/train-on-housenumbers.lua --------------------------------------------------------------------------------