# Frozen_Graph_TensorFlow **Repository Path**: jieyusong/Frozen_Graph_TensorFlow ## Basic Information - **Project Name**: Frozen_Graph_TensorFlow - **Description**: Save, Load Frozen Graph and Run Inference From Frozen Graph in TensorFlow 1.x and 2.x. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-05-13 - **Last Updated**: 2021-01-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Frozen Graph TensorFlow Lei Mao ## Introduction This repository has the examples of saving, loading, and running inference for frozen graph in TensorFlow 1.x and 2.x. ## Files ``` . ├── LICENSE.md ├── README.md ├── TensorFlow_v1 │   ├── cifar.py │   ├── cnn.py │   ├── inspect_signature.py │   ├── main.py │   ├── README.md │   ├── test_pb.py │   └── utils.py └── TensorFlow_v2 ├── README.md ├── test.py ├── train.py └── utils.py ``` ## Blogs * [Save, Load and Inference From TensorFlow Frozen Graph](https://leimao.github.io/blog/Save-Load-Inference-From-TF-Frozen-Graph/) * [Save, Load and Inference From TensorFlow 2.x Frozen Graph](https://leimao.github.io/blog/Save-Load-Inference-From-TF2-Frozen-Graph/) ## Examples * [TensorFlow 1.x](https://github.com/leimao/Frozen_Graph_TensorFlow/tree/master/TensorFlow_v1) * [TensorFlow 2.x](https://github.com/leimao/Frozen_Graph_TensorFlow/tree/master/TensorFlow_v2)