├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── analysis └── qubit_example.ipynb ├── data └── .empty ├── scinet ├── __init__.py ├── data_loader.py ├── ed_quantum.py ├── io.py └── model.py ├── tf_log └── .empty └── tf_save └── .empty /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/README.md -------------------------------------------------------------------------------- /analysis/qubit_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/analysis/qubit_example.ipynb -------------------------------------------------------------------------------- /data/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scinet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/scinet/__init__.py -------------------------------------------------------------------------------- /scinet/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/scinet/data_loader.py -------------------------------------------------------------------------------- /scinet/ed_quantum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/scinet/ed_quantum.py -------------------------------------------------------------------------------- /scinet/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/scinet/io.py -------------------------------------------------------------------------------- /scinet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eth-nn-physics/nn_physical_concepts/HEAD/scinet/model.py -------------------------------------------------------------------------------- /tf_log/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tf_save/.empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------