├── LICENSE.md ├── README.md ├── TensorFlow_v1 ├── .gitignore ├── README.md ├── cifar.py ├── cnn.py ├── inspect_signature.py ├── main.py ├── test_pb.py └── utils.py └── TensorFlow_v2 ├── .gitignore ├── README.md ├── example_1.py ├── example_2.py └── utils.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/README.md -------------------------------------------------------------------------------- /TensorFlow_v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v1/.gitignore -------------------------------------------------------------------------------- /TensorFlow_v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v1/README.md -------------------------------------------------------------------------------- /TensorFlow_v1/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v1/cifar.py -------------------------------------------------------------------------------- /TensorFlow_v1/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v1/cnn.py -------------------------------------------------------------------------------- /TensorFlow_v1/inspect_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v1/inspect_signature.py -------------------------------------------------------------------------------- /TensorFlow_v1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v1/main.py -------------------------------------------------------------------------------- /TensorFlow_v1/test_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v1/test_pb.py -------------------------------------------------------------------------------- /TensorFlow_v1/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v1/utils.py -------------------------------------------------------------------------------- /TensorFlow_v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v2/.gitignore -------------------------------------------------------------------------------- /TensorFlow_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v2/README.md -------------------------------------------------------------------------------- /TensorFlow_v2/example_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v2/example_1.py -------------------------------------------------------------------------------- /TensorFlow_v2/example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v2/example_2.py -------------------------------------------------------------------------------- /TensorFlow_v2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Frozen-Graph-TensorFlow/HEAD/TensorFlow_v2/utils.py --------------------------------------------------------------------------------