- Very deep and complex models can take days or even weeks to train. we can save our models after we finish training them.
- Tensorflow provides a direct way to take my saved models and deplay them on different platform.

- TensorFlow makes this all possible through its saved model format.
- A SavedModel contains all the information about the model including the weight values, the model's architecture and even the optimizers configuration.
- Since the SavedModel contains all the information about the model, it does not require the original code to run it.
- This means you can execute it directly in your application or servers using one of the deployment libraries such as TensorFlow serving for models to be served over HTTP.
<Colab Notebook>
- To access the Colab Notebook, login to your Google account and click on the link below:
Google Colaboratory
colab.research.google.com
<소스 코드>
github.com/HoYoungChun/TensorFlow_study/blob/master/10_Saving%20and%20Loading%20Models.py
HoYoungChun/TensorFlow_study
Udacity의 Intro to TensorFlow for Deep Learning 강좌 for TF_Certificate 취득 - HoYoungChun/TensorFlow_study
github.com
'인공지능(AI) > Udacity tensorflow 강의' 카테고리의 다른 글
| [Lesson 7] Time Series Forecasting (0) | 2020.09.30 |
|---|---|
| [Lesson 5] Transfer Learning (0) | 2020.09.28 |
| [Lesson 4] Going Further with CNNs (3) (0) | 2020.09.27 |
| [Lesson 4] Going Further with CNNs (2) (0) | 2020.09.27 |
| [Lesson 4] Going Further with CNNs (1) (0) | 2020.09.27 |