Contraction-compression stability issues #200
-
Hi @jcmgray, While working with the While looking for some solutions, I saw the functions |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @benjaminlanthier, sorry this should probably have been noted in the docs but the The equalize_norms functionality helps with problems of numerical range (e.g. values >1e300) but fundamentally you will need some type of gauging (i.e. taking into account more than just local tensors) to get good accuracy beyond very simple TNs. |
Beta Was this translation helpful? Give feedback.
Hi @benjaminlanthier, sorry this should probably have been noted in the docs but the
compress_all
function is really the most naive and basic way to compress a tensor network and not really meant to be used for any real applications (see also #153). If you need a relatively cheap way to compress an arbitrary network, I'd usecompress_all_simple
. Or beyond that think about some manual methods suiting your geometry and tensor entries.The equalize_norms functionality helps with problems of numerical range (e.g. values >1e300) but fundamentally you will need some type of gauging (i.e. taking into account more than just local tensors) to get good accuracy beyond very simple TNs.