This repository was archived by the owner on Nov 7, 2024. It is now read-only.
TensorNetwork 0.0.4 release
·
427 commits
to master
since this release
- Added the
greedycontraction algorithm. This will greedily contract the lowest cost node pair first. - Added the
bucketcontraction algorithm. This algorithm is optimized for tensor networks with a lot of copy tensors. - Upgraded the
naivecontraction algorithm. Now it should work even after some edge have been contracted. - Added the
@operator. Doingnode1 @ node2is equal to runningnet.contract_between(node1, node2) - Added
graphvizvisualization integration. Simply dotensornetwork.to_graphviz(net)to get a graphviz object that is isomorphic to your network. - Added
net.remove_node(node)method. - Added
node.shapeandedge.dimensionproperties. - Improved TF 2.0 beta compatibility.