├── .gitignore ├── LICENSE ├── README.md ├── setup.py └── torchscope ├── __init__.py ├── helper.py └── scope.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tramac/torchscope/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tramac/torchscope/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tramac/torchscope/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tramac/torchscope/HEAD/setup.py -------------------------------------------------------------------------------- /torchscope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tramac/torchscope/HEAD/torchscope/__init__.py -------------------------------------------------------------------------------- /torchscope/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tramac/torchscope/HEAD/torchscope/helper.py -------------------------------------------------------------------------------- /torchscope/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tramac/torchscope/HEAD/torchscope/scope.py --------------------------------------------------------------------------------