You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
variPEPS is the Python variant of the tensor network library developed for
8
+
variational ground state simulations in two spatial dimensions applying gradient
9
+
optimization using automatic differentation.
10
+
11
+
For a detailed report on the method, please see our publication currently available as preprint on arXiv: [https://arxiv.org/abs/2308.12358](https://arxiv.org/abs/2308.12358).
12
+
13
+
## Installation
14
+
### Installation using pip
15
+
The current version of the variPEPS Python package is available on [PyPI](https://pypi.org/project/variPEPS/). It can be easily installed by using the Python package manager pip:
16
+
```bash
17
+
$ python3 -m pip install variPEPS
18
+
```
19
+
20
+
### Installation using poetry
9
21
10
-
The dependencies in this project are managed by poetry. Please see the [upstream
11
-
documentation](http://python-poetry.org/docs/) how to use it.
22
+
The dependencies in this project are managed by poetry and the tool can also be used to install the package including a fixed set of dependencies with a specific version. For more details how poetry is operating, please see the [upstream documentation](http://python-poetry.org/docs/).
12
23
13
-
To install dependencies you can just run:
24
+
To install dependencies you can just run in the main folder of the variPEPS project:
14
25
```bash
15
26
$ poetry install
16
27
```
@@ -19,9 +30,40 @@ or if you do not need the development packages:
19
30
$ poetry install --no-dev
20
31
```
21
32
22
-
Usage
23
-
-----
33
+
## Usage
24
34
25
-
To play around with the files provides you can use `ipython` which is executed
26
-
by `$ poetry run ipython`. Then you can just use the normal `import`/`from
27
-
... import` syntax to load the provided classes and functions.
35
+
For detailed information how to use the package we want to point out to the [documentation of the project](https://varipeps.readthedocs.io/en/stable).
36
+
37
+
## Citation
38
+
39
+
We are happy if you want to use the framework for your research. For the citation of our work we ask to use the following references (the publication with the method description, the Zenodo reference for this Git repository and the repository itself):
40
+
* J. Naumann, E. L. Weerda, M. Rizzi, J. Eisert, and P. Schmoll, variPEPS -- a versatile tensor network library for variational ground state simulations in two spatial dimensions (2023), [arXiv:2308.12358](https://arxiv.org/abs/2308.12358).
41
+
* J. Naumann, P. Schmoll, F. Wilde, and F. Krein, [variPEPS (Python version)](https://zenodo.org/doi/10.5281/zenodo.10852390), Zenodo.
42
+
* J. Naumann, P. Schmoll, F. Wilde, and F. Krein, [variPEPS -- a versatile tensor network library for variational ground state simulations in two spatial dimensions](https://github.com/variPEPS/variPEPS_Python), GitHub.
43
+
44
+
The BibTeX code for these references are:
45
+
```bibtex
46
+
@misc{naumann23_varipeps,
47
+
title = {variPEPS -- a versatile tensor network library for variational ground state simulations in two spatial dimensions},
48
+
author = {Jan Naumann and Erik Lennart Weerda and Matteo Rizzi and Jens Eisert and Philipp Schmoll},
49
+
year = {2023},
50
+
eprint = {2308.12358},
51
+
archivePrefix = {arXiv},
52
+
primaryClass = {cond-mat.str-el}
53
+
}
54
+
55
+
@software{naumann24_varipeps_python,
56
+
author = {Jan Naumann and Philipp Schmoll and Frederik Wilde and Finn Krein},
57
+
title = {{variPEPS (Python version)}},
58
+
howpublished = {Zenodo},
59
+
url = {https://doi.org/10.5281/ZENODO.10852390},
60
+
doi = {10.5281/ZENODO.10852390},
61
+
}
62
+
63
+
@software{varipeps_python_github,
64
+
author = {Jan Naumann and Philipp Schmoll and Frederik Wilde and Finn Krein},
65
+
title = {{\emph{variPEPS} -- a versatile tensor network library for variational ground state simulations in two spatial dimensions}},
0 commit comments