├── .gitattributes ├── .jenkins └── test.sh ├── Basics.ipynb ├── CIFAR10_Part1.ipynb ├── CIFAR10_Part2.ipynb ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Control_Ops.ipynb ├── Getting_Caffe1_Models_for_Translation.ipynb ├── Image_Pre-Processing_Pipeline.ipynb ├── LICENSE ├── Loading_Pretrained_Models.ipynb ├── MNIST.ipynb ├── MNIST_Dataset_and_Databases.ipynb ├── Model_Quickload.ipynb ├── Multi-GPU_Training.ipynb ├── NOTICE ├── Python_Op.ipynb ├── README.md ├── Toy_Regression.ipynb ├── Training_a_Model.ipynb ├── create_your_own_dataset.ipynb ├── experimental └── Immediate.ipynb ├── helpers.py ├── images ├── Cellsx128.png ├── Ducreux.jpg ├── Flower-id.png ├── Places-cnn-visual-example.png ├── aircraft-carrier.jpg ├── astronauts.jpg ├── cat.jpg ├── cell-tower.jpg ├── cowboy-hat.jpg ├── flower.jpg ├── imagenet-boat.png ├── imagenet-caffe2.png ├── imagenet-meme.jpg ├── imagenet-montage.jpg ├── lemon.jpg ├── mirror-image.jpg ├── orange.jpg ├── orangutan.jpg ├── pretzel.jpg └── sickle-cells.jpg ├── inference_codes.txt ├── jupyter_notebook_config.py ├── new_op ├── readme.md ├── sample │ ├── add5_op_test.py │ ├── run_add5_op.py │ └── sample.md └── template │ ├── add5_op.cc │ ├── add5_op.cu │ └── add5_op.h ├── nomnigraph_model_exploration.ipynb ├── py_gen ├── Basics.py ├── CIFAR10_Part1.py ├── CIFAR10_Part2.py ├── Control_Ops.py ├── Getting_Caffe1_Models_for_Translation.py ├── Image_Pre-Processing_Pipeline.py ├── Loading_Pretrained_Models.py ├── MNIST.py ├── MNIST_Dataset_and_Databases.py ├── Model_Quickload.py ├── Multi-GPU_Training.py ├── Python_Op.py ├── Toy_Regression.py ├── Training_a_Model.py ├── create_your_own_dataset.py └── sparseNN.py ├── start_ipython_notebook.sh └── tutorials_to_script_converter.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-documentation 2 | -------------------------------------------------------------------------------- /.jenkins/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/.jenkins/test.sh -------------------------------------------------------------------------------- /Basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Basics.ipynb -------------------------------------------------------------------------------- /CIFAR10_Part1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/CIFAR10_Part1.ipynb -------------------------------------------------------------------------------- /CIFAR10_Part2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/CIFAR10_Part2.ipynb -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Control_Ops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Control_Ops.ipynb -------------------------------------------------------------------------------- /Getting_Caffe1_Models_for_Translation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Getting_Caffe1_Models_for_Translation.ipynb -------------------------------------------------------------------------------- /Image_Pre-Processing_Pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Image_Pre-Processing_Pipeline.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /Loading_Pretrained_Models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Loading_Pretrained_Models.ipynb -------------------------------------------------------------------------------- /MNIST.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/MNIST.ipynb -------------------------------------------------------------------------------- /MNIST_Dataset_and_Databases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/MNIST_Dataset_and_Databases.ipynb -------------------------------------------------------------------------------- /Model_Quickload.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Model_Quickload.ipynb -------------------------------------------------------------------------------- /Multi-GPU_Training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Multi-GPU_Training.ipynb -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/NOTICE -------------------------------------------------------------------------------- /Python_Op.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Python_Op.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/README.md -------------------------------------------------------------------------------- /Toy_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Toy_Regression.ipynb -------------------------------------------------------------------------------- /Training_a_Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/Training_a_Model.ipynb -------------------------------------------------------------------------------- /create_your_own_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/create_your_own_dataset.ipynb -------------------------------------------------------------------------------- /experimental/Immediate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/experimental/Immediate.ipynb -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/helpers.py -------------------------------------------------------------------------------- /images/Cellsx128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/Cellsx128.png -------------------------------------------------------------------------------- /images/Ducreux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/Ducreux.jpg -------------------------------------------------------------------------------- /images/Flower-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/Flower-id.png -------------------------------------------------------------------------------- /images/Places-cnn-visual-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/Places-cnn-visual-example.png -------------------------------------------------------------------------------- /images/aircraft-carrier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/aircraft-carrier.jpg -------------------------------------------------------------------------------- /images/astronauts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/astronauts.jpg -------------------------------------------------------------------------------- /images/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/cat.jpg -------------------------------------------------------------------------------- /images/cell-tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/cell-tower.jpg -------------------------------------------------------------------------------- /images/cowboy-hat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/cowboy-hat.jpg -------------------------------------------------------------------------------- /images/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/flower.jpg -------------------------------------------------------------------------------- /images/imagenet-boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/imagenet-boat.png -------------------------------------------------------------------------------- /images/imagenet-caffe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/imagenet-caffe2.png -------------------------------------------------------------------------------- /images/imagenet-meme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/imagenet-meme.jpg -------------------------------------------------------------------------------- /images/imagenet-montage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/imagenet-montage.jpg -------------------------------------------------------------------------------- /images/lemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/lemon.jpg -------------------------------------------------------------------------------- /images/mirror-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/mirror-image.jpg -------------------------------------------------------------------------------- /images/orange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/orange.jpg -------------------------------------------------------------------------------- /images/orangutan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/orangutan.jpg -------------------------------------------------------------------------------- /images/pretzel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/pretzel.jpg -------------------------------------------------------------------------------- /images/sickle-cells.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/images/sickle-cells.jpg -------------------------------------------------------------------------------- /inference_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/inference_codes.txt -------------------------------------------------------------------------------- /jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/jupyter_notebook_config.py -------------------------------------------------------------------------------- /new_op/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/new_op/readme.md -------------------------------------------------------------------------------- /new_op/sample/add5_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/new_op/sample/add5_op_test.py -------------------------------------------------------------------------------- /new_op/sample/run_add5_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/new_op/sample/run_add5_op.py -------------------------------------------------------------------------------- /new_op/sample/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/new_op/sample/sample.md -------------------------------------------------------------------------------- /new_op/template/add5_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/new_op/template/add5_op.cc -------------------------------------------------------------------------------- /new_op/template/add5_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/new_op/template/add5_op.cu -------------------------------------------------------------------------------- /new_op/template/add5_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/new_op/template/add5_op.h -------------------------------------------------------------------------------- /nomnigraph_model_exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/nomnigraph_model_exploration.ipynb -------------------------------------------------------------------------------- /py_gen/Basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Basics.py -------------------------------------------------------------------------------- /py_gen/CIFAR10_Part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/CIFAR10_Part1.py -------------------------------------------------------------------------------- /py_gen/CIFAR10_Part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/CIFAR10_Part2.py -------------------------------------------------------------------------------- /py_gen/Control_Ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Control_Ops.py -------------------------------------------------------------------------------- /py_gen/Getting_Caffe1_Models_for_Translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Getting_Caffe1_Models_for_Translation.py -------------------------------------------------------------------------------- /py_gen/Image_Pre-Processing_Pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Image_Pre-Processing_Pipeline.py -------------------------------------------------------------------------------- /py_gen/Loading_Pretrained_Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Loading_Pretrained_Models.py -------------------------------------------------------------------------------- /py_gen/MNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/MNIST.py -------------------------------------------------------------------------------- /py_gen/MNIST_Dataset_and_Databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/MNIST_Dataset_and_Databases.py -------------------------------------------------------------------------------- /py_gen/Model_Quickload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Model_Quickload.py -------------------------------------------------------------------------------- /py_gen/Multi-GPU_Training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Multi-GPU_Training.py -------------------------------------------------------------------------------- /py_gen/Python_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Python_Op.py -------------------------------------------------------------------------------- /py_gen/Toy_Regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Toy_Regression.py -------------------------------------------------------------------------------- /py_gen/Training_a_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/Training_a_Model.py -------------------------------------------------------------------------------- /py_gen/create_your_own_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/create_your_own_dataset.py -------------------------------------------------------------------------------- /py_gen/sparseNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/py_gen/sparseNN.py -------------------------------------------------------------------------------- /start_ipython_notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/start_ipython_notebook.sh -------------------------------------------------------------------------------- /tutorials_to_script_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/tutorials/HEAD/tutorials_to_script_converter.py --------------------------------------------------------------------------------