├── .gitignore ├── README.md ├── data_utils.py ├── extract.py ├── transfer_cifar10_softmax.py └── tsne.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthomp/tensorflow_transfer_cifar10/HEAD/README.md -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthomp/tensorflow_transfer_cifar10/HEAD/data_utils.py -------------------------------------------------------------------------------- /extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthomp/tensorflow_transfer_cifar10/HEAD/extract.py -------------------------------------------------------------------------------- /transfer_cifar10_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthomp/tensorflow_transfer_cifar10/HEAD/transfer_cifar10_softmax.py -------------------------------------------------------------------------------- /tsne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthomp/tensorflow_transfer_cifar10/HEAD/tsne.py --------------------------------------------------------------------------------