├── .gitignore ├── README.md ├── ckpts ├── 110.pickle └── 78.pickle ├── knot_theory.ipynb ├── requirements.txt └── test_ckpt.py /.gitignore: -------------------------------------------------------------------------------- 1 | knot_theory_invariants.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHI-Labs/CompactNet/HEAD/README.md -------------------------------------------------------------------------------- /ckpts/110.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHI-Labs/CompactNet/HEAD/ckpts/110.pickle -------------------------------------------------------------------------------- /ckpts/78.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHI-Labs/CompactNet/HEAD/ckpts/78.pickle -------------------------------------------------------------------------------- /knot_theory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHI-Labs/CompactNet/HEAD/knot_theory.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHI-Labs/CompactNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHI-Labs/CompactNet/HEAD/test_ckpt.py --------------------------------------------------------------------------------