Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

TensorNetwork 0.0.4 release

Compare
Choose a tag to compare
@chaserileyroberts chaserileyroberts released this 21 Jun 23:28
· 427 commits to master since this release
73088ee
  • Added the greedy contraction algorithm. This will greedily contract the lowest cost node pair first.
  • Added the bucket contraction algorithm. This algorithm is optimized for tensor networks with a lot of copy tensors.
  • Upgraded the naive contraction algorithm. Now it should work even after some edge have been contracted.
  • Added the @ operator. Doing node1 @ node2 is equal to running net.contract_between(node1, node2)
  • Added graphviz visualization integration. Simply do tensornetwork.to_graphviz(net) to get a graphviz object that is isomorphic to your network.
  • Added net.remove_node(node) method.
  • Added node.shape and edge.dimension properties.
  • Improved TF 2.0 beta compatibility.