├── .gitignore ├── LICENSE ├── README.md ├── args.py ├── args_parser.py ├── dmrg ├── Project.toml └── heisenberg_2d.jl ├── ham.py ├── models ├── __init__.py ├── gpu_cond.py ├── mps.py ├── mps_base.py ├── mps_rnn.py ├── mps_rnn_2d.py ├── reorder.py ├── symmetry.py ├── tensor_rnn_2d.py └── tensor_rnn_cmpr_2d.py ├── plot_hi.py ├── readers ├── __init__.py ├── convert_variables.py ├── enlarge.py ├── hierarchical.py └── itensors.py ├── reproduce_hi.sh ├── requirements.txt ├── run_tests.sh ├── sampler.py ├── test_autoreg.py ├── test_autoreg_cond.py ├── test_autoreg_sample.py ├── test_load_init.py ├── test_load_out.py ├── utils.py └── vmc.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /out*/ 3 | __pycache__ 4 | Manifest.toml 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/README.md -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/args.py -------------------------------------------------------------------------------- /args_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/args_parser.py -------------------------------------------------------------------------------- /dmrg/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/dmrg/Project.toml -------------------------------------------------------------------------------- /dmrg/heisenberg_2d.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/dmrg/heisenberg_2d.jl -------------------------------------------------------------------------------- /ham.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/ham.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/gpu_cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/gpu_cond.py -------------------------------------------------------------------------------- /models/mps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/mps.py -------------------------------------------------------------------------------- /models/mps_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/mps_base.py -------------------------------------------------------------------------------- /models/mps_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/mps_rnn.py -------------------------------------------------------------------------------- /models/mps_rnn_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/mps_rnn_2d.py -------------------------------------------------------------------------------- /models/reorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/reorder.py -------------------------------------------------------------------------------- /models/symmetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/symmetry.py -------------------------------------------------------------------------------- /models/tensor_rnn_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/tensor_rnn_2d.py -------------------------------------------------------------------------------- /models/tensor_rnn_cmpr_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/models/tensor_rnn_cmpr_2d.py -------------------------------------------------------------------------------- /plot_hi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/plot_hi.py -------------------------------------------------------------------------------- /readers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/readers/__init__.py -------------------------------------------------------------------------------- /readers/convert_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/readers/convert_variables.py -------------------------------------------------------------------------------- /readers/enlarge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/readers/enlarge.py -------------------------------------------------------------------------------- /readers/hierarchical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/readers/hierarchical.py -------------------------------------------------------------------------------- /readers/itensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/readers/itensors.py -------------------------------------------------------------------------------- /reproduce_hi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/reproduce_hi.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/run_tests.sh -------------------------------------------------------------------------------- /sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/sampler.py -------------------------------------------------------------------------------- /test_autoreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/test_autoreg.py -------------------------------------------------------------------------------- /test_autoreg_cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/test_autoreg_cond.py -------------------------------------------------------------------------------- /test_autoreg_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/test_autoreg_sample.py -------------------------------------------------------------------------------- /test_load_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/test_load_init.py -------------------------------------------------------------------------------- /test_load_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/test_load_out.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/utils.py -------------------------------------------------------------------------------- /vmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqsl/mps-rnn/HEAD/vmc.py --------------------------------------------------------------------------------