├── .gitignore ├── LICENSE ├── README.md ├── examples └── snli │ └── spinn-example.py ├── logo.jpg ├── setup.py └── torchfold ├── __init__.py ├── torchfold.py └── torchfold_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/README.md -------------------------------------------------------------------------------- /examples/snli/spinn-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/examples/snli/spinn-example.py -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/logo.jpg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/setup.py -------------------------------------------------------------------------------- /torchfold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/torchfold/__init__.py -------------------------------------------------------------------------------- /torchfold/torchfold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/torchfold/torchfold.py -------------------------------------------------------------------------------- /torchfold/torchfold_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nearai/torchfold/HEAD/torchfold/torchfold_test.py --------------------------------------------------------------------------------