-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
368441b
commit 55c02e8
Showing
1 changed file
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,30 @@ | ||
# Tools | ||
|
||
|
||
## Entanglement Entropy | ||
What it is? What it tells us... | ||
|
||
### Overview | ||
|
||
### Bipartite Entanglement Entropy (BEE) | ||
Given a [`trainedMPS`](@ref), we can compute the bipartite entanglement entropy (BEE) using: | ||
```Julia | ||
bees = bipartite_spectrum(mps); | ||
``` | ||
The return value is a vector corresponding to the BEE of each class mps. | ||
|
||
|
||
### Single-Site Entanglement Entropy (SEE) | ||
Given a [`trainedMPS`](@ref), we can compute the single-site entanglement entropy (SEE) using: | ||
```Julia | ||
sees = MPSTime.single_site_spectrum(mps); | ||
``` | ||
|
||
## Docstrings | ||
```@docs | ||
MPSTime.von_neumann_entropy | ||
MPSTime.bipartite_spectrum | ||
``` | ||
|
||
## Internal Methods | ||
```@docs | ||
MPSTime.single_site_spectrum | ||
``` |