├── .gitignore ├── LICENSE ├── README.md ├── cuda2cpu └── README.md ├── linear2conv └── spatial_model.ipynb ├── model_graph ├── README.md ├── model_def.py └── visualize.py ├── profiler ├── README.md └── profile.py ├── pytorch2thnets └── thexport.py └── torch2pytorch └── th2pyth.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/README.md -------------------------------------------------------------------------------- /cuda2cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/cuda2cpu/README.md -------------------------------------------------------------------------------- /linear2conv/spatial_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/linear2conv/spatial_model.ipynb -------------------------------------------------------------------------------- /model_graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/model_graph/README.md -------------------------------------------------------------------------------- /model_graph/model_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/model_graph/model_def.py -------------------------------------------------------------------------------- /model_graph/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/model_graph/visualize.py -------------------------------------------------------------------------------- /profiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/profiler/README.md -------------------------------------------------------------------------------- /profiler/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/profiler/profile.py -------------------------------------------------------------------------------- /pytorch2thnets/thexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/pytorch2thnets/thexport.py -------------------------------------------------------------------------------- /torch2pytorch/th2pyth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-lab/pytorch-toolbox/HEAD/torch2pytorch/th2pyth.ipynb --------------------------------------------------------------------------------