-
-
Save hrishikeshvganu/179bfd04e07b88a8ce5cabc4773d1542 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pathlib import Path | |
import tensorflow as tf | |
from build_big_model import build_big_model | |
MODEL_NAME = 'big_model' | |
MODEL_VERSION = '1' | |
model = build_big_model() | |
tf.saved_model.save(model, str(Path('models') / MODEL_NAME / MODEL_VERSION)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment