├── .gitignore ├── LICENSE ├── README.md └── code ├── TTN_mnist.py ├── TTN_tsne.py ├── tree_tensor_network_mnist.py ├── tsne_mnist.py └── utilities_mnist.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingliu0305/Tree-Tensor-Networks-in-Machine-Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingliu0305/Tree-Tensor-Networks-in-Machine-Learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingliu0305/Tree-Tensor-Networks-in-Machine-Learning/HEAD/README.md -------------------------------------------------------------------------------- /code/TTN_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingliu0305/Tree-Tensor-Networks-in-Machine-Learning/HEAD/code/TTN_mnist.py -------------------------------------------------------------------------------- /code/TTN_tsne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingliu0305/Tree-Tensor-Networks-in-Machine-Learning/HEAD/code/TTN_tsne.py -------------------------------------------------------------------------------- /code/tree_tensor_network_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingliu0305/Tree-Tensor-Networks-in-Machine-Learning/HEAD/code/tree_tensor_network_mnist.py -------------------------------------------------------------------------------- /code/tsne_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingliu0305/Tree-Tensor-Networks-in-Machine-Learning/HEAD/code/tsne_mnist.py -------------------------------------------------------------------------------- /code/utilities_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingliu0305/Tree-Tensor-Networks-in-Machine-Learning/HEAD/code/utilities_mnist.py --------------------------------------------------------------------------------