Production-Ready Model Format for TensorFlow Ecosystem
弘益人間 · Benefit All Humanity
TensorFlow SavedModel is the universal serialization format for TensorFlow models. Introduced in TensorFlow 1.0 and significantly improved in TensorFlow 2.0, SavedModel is designed for production deployment and provides a complete, self-contained package including the computation graph, variables, assets, and signatures.
Unlike earlier formats like checkpoint files or frozen graphs, SavedModel includes everything needed to serve, fine-tune, or convert the model to other formats. It's the recommended format for TensorFlow Serving, TensorFlow Lite, TensorFlow.js, and cloud ML platforms.
A SavedModel is stored as a directory with the following structure:
saved_model/
├── assets/ # Additional files (vocabularies, etc.)
│ └── vocab.txt
├── variables/ # Model weights and variables
│ ├── variables.data-00000-of-00001
│ └── variables.index
└── saved_model.pb # Serialized computation graph and metadata
# With multiple versions:
model_repository/
├── my_model/
│ ├── 1/ # Version 1
│ │ ├── assets/
│ │ ├── variables/
│ │ └── saved_model.pb
│ └── 2/ # Version 2
│ ├── assets/
│ ├── variables/
│ └── saved_model.pb
TensorFlow 2.x makes it simple to save models in SavedModel format:
import tensorflow as tf
from tensorflow import keras
# Create and train a model
model = keras.Sequential([
keras.layers.Dense(128, activation='relu', input_shape=(784,)),
keras.layers.Dropout(0.2),
keras.layers.Dense(10, activation='softmax')
])
model.compile(
optimizer='adam',
loss='sparse_categorical_crossentropy',
metrics=['accuracy']
)
# Train the model
model.fit(train_data, train_labels, epochs=5)
# Save as SavedModel
model.save('my_model') # Creates SavedModel directory
# Or explicitly use SavedModel format
model.save('my_model', save_format='tf')
class CustomModel(tf.Module):
def __init__(self):
super().__init__()
self.v = tf.Variable(1.0)
self.w = tf.Variable(2.0)
@tf.function(input_signature=[
tf.TensorSpec(shape=[None], dtype=tf.float32)
])
def __call__(self, x):
return self.v * x + self.w
# Create and save
model = CustomModel()
tf.saved_model.save(model, 'custom_model')
# With explicit signatures
@tf.function(input_signature=[
tf.TensorSpec(shape=[None, 224, 224, 3], dtype=tf.float32)
])
def serving_fn(images):
return model(images)
tf.saved_model.save(
model,
'custom_model',
signatures={'serving_default': serving_fn}
)
Signatures define the input/output interface for serving and inference:
class MultiSignatureModel(tf.Module):
def __init__(self):
super().__init__()
self.model = create_model()
@tf.function
def predict(self, images):
return self.model(images)
@tf.function
def preprocess_and_predict(self, raw_images):
processed = tf.image.resize(raw_images, [224, 224])
processed = processed / 255.0
return self.model(processed)
# Save with multiple signatures
model = MultiSignatureModel()
signatures = {
'serving_default': model.predict.get_concrete_function(
tf.TensorSpec([None, 224, 224, 3], tf.float32)
),
'preprocess': model.preprocess_and_predict.get_concrete_function(
tf.TensorSpec([None, None, None, 3], tf.float32)
)
}
tf.saved_model.save(
model,
'multi_signature_model',
signatures=signatures
)
# Load and inspect
loaded = tf.saved_model.load('multi_signature_model')
# List available signatures
print(list(loaded.signatures.keys()))
# ['serving_default', 'preprocess']
# Get signature info
infer = loaded.signatures['serving_default']
print(infer.structured_input_signature)
print(infer.structured_outputs)
# Use signature
import numpy as np
test_input = np.random.randn(1, 224, 224, 3).astype(np.float32)
output = infer(images=tf.constant(test_input))
print(output)
SavedModel can be loaded in multiple ways depending on use case:
# Method 1: tf.saved_model.load (more control)
loaded = tf.saved_model.load('my_model')
predictions = loaded(test_data)
# Method 2: keras.models.load_model (for Keras models)
model = keras.models.load_model('my_model')
predictions = model.predict(test_data)
# Method 3: Using signatures
loaded = tf.saved_model.load('my_model')
infer = loaded.signatures['serving_default']
output = infer(input_tensor=test_data)['output_0']
// C++ API for TensorFlow Serving
#include "tensorflow/cc/saved_model/loader.h"
tensorflow::SavedModelBundle bundle;
tensorflow::SessionOptions session_options;
tensorflow::RunOptions run_options;
// Load the model
tensorflow::Status status = tensorflow::LoadSavedModel(
session_options,
run_options,
"/path/to/saved_model",
{"serve"}, // tags
&bundle
);
// Run inference
std::vector outputs;
status = bundle.session->Run(
{{"input", input_tensor}},
{"output"},
{},
&outputs
);
TensorFlow Serving is a production-grade system for serving SavedModel:
# Model configuration file (models.config)
model_config_list {
config {
name: 'my_model'
base_path: '/models/my_model'
model_platform: 'tensorflow'
model_version_policy {
specific {
versions: 1
versions: 2
}
}
}
}
# Start TensorFlow Serving with Docker
docker run -p 8501:8501 \
--mount type=bind,source=/path/to/models,target=/models \
-e MODEL_NAME=my_model \
-t tensorflow/serving
# Or with model config
docker run -p 8501:8501 \
--mount type=bind,source=/path/to/models,target=/models \
--mount type=bind,source=/path/to/models.config,target=/models/models.config \
-t tensorflow/serving \
--model_config_file=/models/models.config
import requests
import json
import numpy as np
# Prepare input data
data = {
"signature_name": "serving_default",
"instances": test_images.tolist()
}
# Send request
response = requests.post(
'http://localhost:8501/v1/models/my_model:predict',
data=json.dumps(data)
)
# Parse response
predictions = response.json()['predictions']
print(f"Predictions: {predictions}")
import grpc
import tensorflow as tf
from tensorflow_serving.apis import predict_pb2
from tensorflow_serving.apis import prediction_service_pb2_grpc
# Create gRPC channel
channel = grpc.insecure_channel('localhost:8500')
stub = prediction_service_pb2_grpc.PredictionServiceStub(channel)
# Create request
request = predict_pb2.PredictRequest()
request.model_spec.name = 'my_model'
request.model_spec.signature_name = 'serving_default'
request.inputs['images'].CopyFrom(
tf.make_tensor_proto(test_images, shape=test_images.shape)
)
# Send request
result = stub.Predict(request, 10.0) # 10s timeout
output = tf.make_ndarray(result.outputs['output'])
print(f"Output: {output}")
SavedModel serves as a hub for converting to deployment-specific formats:
import tensorflow as tf
# Load SavedModel
converter = tf.lite.TFLiteConverter.from_saved_model('my_model')
# Configure optimization
converter.optimizations = [tf.lite.Optimize.DEFAULT]
converter.target_spec.supported_types = [tf.float16]
# Convert
tflite_model = converter.convert()
# Save
with open('model.tflite', 'wb') as f:
f.write(tflite_model)
print(f"TFLite model size: {len(tflite_model) / 1024:.2f} KB")
# Install tensorflowjs converter
pip install tensorflowjs
# Convert SavedModel to TF.js format
tensorflowjs_converter \
--input_format=tf_saved_model \
--output_format=tfjs_graph_model \
--signature_name=serving_default \
--saved_model_tags=serve \
my_model \
tfjs_model/
# The output can be loaded in JavaScript:
# const model = await tf.loadGraphModel('model.json');
import tf2onnx
# Convert using command line
python -m tf2onnx.convert \
--saved-model my_model \
--output model.onnx \
--opset 17
# Or programmatically
import tensorflow as tf
import tf2onnx
model = tf.saved_model.load('my_model')
spec = (tf.TensorSpec((None, 224, 224, 3), tf.float32, name="input"),)
output_path = "model.onnx"
model_proto, _ = tf2onnx.convert.from_saved_model(
'my_model',
input_signature=spec,
opset=17,
output_path=output_path
)
SavedModel supports advanced features for production deployments:
import tensorflow as tf
import shutil
class ModelWithAssets(tf.Module):
def __init__(self):
super().__init__()
# Load vocabulary from assets
self.vocab_file = tf.saved_model.Asset('vocab.txt')
@tf.function
def tokenize(self, text):
# Use the vocabulary file
vocab_table = tf.lookup.StaticVocabularyTable(
tf.lookup.TextFileInitializer(
self.vocab_file.asset_path,
key_dtype=tf.string,
key_index=tf.lookup.TextFileIndex.WHOLE_LINE,
value_dtype=tf.int64,
value_index=tf.lookup.TextFileIndex.LINE_NUMBER
),
num_oov_buckets=1
)
return vocab_table.lookup(text)
# Save model (vocab.txt will be copied to assets/)
model = ModelWithAssets()
tf.saved_model.save(model, 'model_with_assets')
# Create warmup data for TensorFlow Serving
import tensorflow as tf
from tensorflow_serving.apis import predict_pb2
from tensorflow_serving.apis import prediction_service_pb2_grpc
# Generate warmup requests
warmup_dir = 'my_model/1/assets.extra'
os.makedirs(warmup_dir, exist_ok=True)
# Create sample requests
warmup_file = os.path.join(warmup_dir, 'tf_serving_warmup_requests')
with tf.io.TFRecordWriter(warmup_file) as writer:
for _ in range(10): # 10 warmup requests
request = predict_pb2.PredictRequest()
request.model_spec.name = 'my_model'
request.model_spec.signature_name = 'serving_default'
# Add sample input
sample_input = np.random.randn(1, 224, 224, 3).astype(np.float32)
request.inputs['images'].CopyFrom(
tf.make_tensor_proto(sample_input)
)
log = prediction_log_pb2.PredictionLog(
predict_log=prediction_log_pb2.PredictLog(request=request)
)
writer.write(log.SerializeToString())
Optimize SavedModel for better performance and smaller size:
from tensorflow.python.saved_model import tag_constants
from tensorflow.python.tools import optimize_for_inference_lib
# Load and optimize graph
with tf.Session() as sess:
meta_graph = tf.saved_model.loader.load(
sess,
[tag_constants.SERVING],
'my_model'
)
# Optimize
optimized_graph = optimize_for_inference_lib.optimize_for_inference(
sess.graph_def,
['input'],
['output'],
tf.float32.as_datatype_enum
)
# Save optimized model
builder = tf.saved_model.builder.SavedModelBuilder('optimized_model')
# ... configure and save
# Post-training quantization
converter = tf.lite.TFLiteConverter.from_saved_model('my_model')
converter.optimizations = [tf.lite.Optimize.DEFAULT]
# Full integer quantization
def representative_dataset():
for _ in range(100):
yield [np.random.randn(1, 224, 224, 3).astype(np.float32)]
converter.representative_dataset = representative_dataset
converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS_INT8]
converter.inference_input_type = tf.uint8
converter.inference_output_type = tf.uint8
quantized_model = converter.convert()
Follow these best practices when working with SavedModel:
# Define input specifications explicitly
@tf.function(input_signature=[
tf.TensorSpec(shape=[None, 224, 224, 3], dtype=tf.float32, name='images')
])
def inference_fn(images):
# Preprocessing
images = tf.image.resize(images, [224, 224])
images = (images - 127.5) / 127.5
# Model inference
return model(images, training=False)
# Save with concrete function
tf.saved_model.save(
model,
'my_model',
signatures={'serving_default': inference_fn}
)
# Organize by version
models/
├── my_model/
│ ├── 1/ # v1.0.0
│ ├── 2/ # v1.1.0
│ └── 3/ # v2.0.0
# In your deployment config
model_version_policy {
specific {
versions: 2 # Stable version
versions: 3 # Canary version (5% traffic)
}
}
# Validation script
def validate_savedmodel(model_path, test_data):
# Load model
model = tf.saved_model.load(model_path)
infer = model.signatures['serving_default']
# Test inputs
for i, (input_data, expected_output) in enumerate(test_data):
output = infer(**input_data)
# Verify output shape
assert output.shape == expected_output.shape
# Verify accuracy
diff = tf.abs(output - expected_output)
max_diff = tf.reduce_max(diff)
assert max_diff < 0.001, f"Test {i} failed: max_diff={max_diff}"
print("✓ All validation tests passed")
# Run validation
validate_savedmodel('my_model', test_dataset)
This chapter covered TensorFlow SavedModel format in detail. Key points include:
Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.
Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.
Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.