Modern AI development often requires converting models between frameworks. A research team might train in PyTorch but need to deploy with TensorFlow Serving. A mobile app might require converting a TensorFlow model to CoreML for iOS or TFLite for Android. Understanding conversion paths and potential pitfalls is essential for successful model exchange.
| Source | Target | Method | Difficulty |
|---|---|---|---|
| PyTorch | ONNX | torch.onnx.export() | Easy |
| TensorFlow | ONNX | tf2onnx | Easy |
| ONNX | TensorFlow | onnx-tf | Medium |
| PyTorch | TFLite | PyTorch→ONNX→TF→TFLite | Hard |
| TensorFlow | CoreML | coremltools | Medium |
Converting from PyTorch to TensorFlow typically uses ONNX as an intermediate format:
# Step 1: PyTorch to ONNX
import torch
import torchvision.models as models
model = models.resnet18(pretrained=True)
model.eval()
dummy_input = torch.randn(1, 3, 224, 224)
torch.onnx.export(
model,
dummy_input,
"resnet18.onnx",
opset_version=13,
input_names=['input'],
output_names=['output'],
dynamic_axes={'input': {0: 'batch'}, 'output': {0: 'batch'}}
)
# Step 2: ONNX to TensorFlow
from onnx_tf.backend import prepare
import onnx
onnx_model = onnx.load("resnet18.onnx")
tf_model = prepare(onnx_model)
# Export as TensorFlow SavedModel
tf_model.export_graph("resnet18_tf")
# Step 3: Load and use in TensorFlow
import tensorflow as tf
loaded_model = tf.saved_model.load("resnet18_tf")
infer = loaded_model.signatures["serving_default"]
# Test inference
import numpy as np
test_input = np.random.randn(1, 3, 224, 224).astype(np.float32)
output = infer(input=tf.constant(test_input))
print(f"Output shape: {output['output'].shape}")
import torch
import tensorflow as tf
import numpy as np
# Prepare test input
test_input_np = np.random.randn(5, 3, 224, 224).astype(np.float32)
# PyTorch inference
model_pt = models.resnet18(pretrained=True)
model_pt.eval()
with torch.no_grad():
output_pt = model_pt(torch.from_numpy(test_input_np)).numpy()
# TensorFlow inference
model_tf = tf.saved_model.load("resnet18_tf")
infer_tf = model_tf.signatures["serving_default"]
output_tf = infer_tf(input=tf.constant(test_input_np))['output'].numpy()
# Compare outputs
max_diff = np.max(np.abs(output_pt - output_tf))
mean_diff = np.mean(np.abs(output_pt - output_tf))
print(f"Max difference: {max_diff:.6f}")
print(f"Mean difference: {mean_diff:.6f}")
assert max_diff < 1e-4, "Conversion validation failed!"
print("✓ Conversion validated successfully")
The reverse conversion also uses ONNX:
# Step 1: TensorFlow to ONNX
import tensorflow as tf
import tf2onnx
# Load TensorFlow model
model = tf.keras.applications.MobileNetV2(weights='imagenet')
# Convert to ONNX
spec = (tf.TensorSpec((None, 224, 224, 3), tf.float32, name="input"),)
model_proto, _ = tf2onnx.convert.from_keras(model, input_signature=spec, opset=13)
with open("mobilenet_v2.onnx", "wb") as f:
f.write(model_proto.SerializeToString())
# Step 2: ONNX to PyTorch
import onnx
from onnx2pytorch import ConvertModel
onnx_model = onnx.load("mobilenet_v2.onnx")
pytorch_model = ConvertModel(onnx_model)
# Step 3: Use in PyTorch
import torch
pytorch_model.eval()
test_input = torch.randn(1, 3, 224, 224)
with torch.no_grad():
output = pytorch_model(test_input)
print(f"Output shape: {output.shape}")
For Android and embedded systems:
# Complete pipeline: PyTorch → ONNX → TF → TFLite
import torch
import onnx
from onnx_tf.backend import prepare
import tensorflow as tf
# 1. PyTorch to ONNX
model_pt = torch.nn.Sequential(
torch.nn.Conv2d(3, 32, 3, padding=1),
torch.nn.ReLU(),
torch.nn.MaxPool2d(2),
torch.nn.Flatten(),
torch.nn.Linear(32 * 112 * 112, 10)
)
dummy_input = torch.randn(1, 3, 224, 224)
torch.onnx.export(model_pt, dummy_input, "model.onnx", opset_version=13)
# 2. ONNX to TensorFlow
onnx_model = onnx.load("model.onnx")
tf_model = prepare(onnx_model)
tf_model.export_graph("model_tf")
# 3. TensorFlow to TFLite
converter = tf.lite.TFLiteConverter.from_saved_model("model_tf")
# Apply optimizations
converter.optimizations = [tf.lite.Optimize.DEFAULT]
converter.target_spec.supported_types = [tf.float16]
tflite_model = converter.convert()
with open("model.tflite", "wb") as f:
f.write(tflite_model)
print(f"TFLite model size: {len(tflite_model) / 1024:.2f} KB")
For iOS deployment:
import coremltools as ct
import tensorflow as tf
# Load TensorFlow model
model = tf.keras.applications.MobileNetV2(weights='imagenet')
# Convert to CoreML
coreml_model = ct.convert(
model,
inputs=[ct.ImageType(name="input", shape=(1, 224, 224, 3))],
classifier_config=ct.ClassifierConfig(
class_labels=['class1', 'class2', ...] # Your class labels
)
)
# Add metadata
coreml_model.author = 'WIA Team'
coreml_model.license = 'Apache 2.0'
coreml_model.short_description = 'MobileNetV2 image classifier'
coreml_model.version = '1.0.0'
# Save
coreml_model.save("MobileNetV2.mlmodel")
print("✓ CoreML model created successfully")
PyTorch and TensorFlow implement BatchNorm differently:
# PyTorch: momentum = 0.1 (default)
# TensorFlow: momentum = 0.99 (default)
# PyTorch BatchNorm
bn_pt = torch.nn.BatchNorm2d(64, momentum=0.1)
# Equivalent TensorFlow BatchNorm
bn_tf = tf.keras.layers.BatchNormalization(momentum=0.9) # Note: 1 - 0.1 = 0.9
# When converting, ensure momentum values are adjusted
# PyTorch: 'same' padding not available in Conv2d (use padding parameter)
conv_pt = torch.nn.Conv2d(3, 64, kernel_size=3, padding=1) # Manual padding
# TensorFlow: 'same' padding available
conv_tf = tf.keras.layers.Conv2D(64, 3, padding='same')
# ONNX handles this conversion automatically, but be aware for manual conversions
# Some activations have different default parameters
# PyTorch LeakyReLU
leaky_pt = torch.nn.LeakyReLU(negative_slope=0.01)
# TensorFlow LeakyReLU
leaky_tf = tf.keras.layers.LeakyReLU(alpha=0.01) # Different parameter name
# GELU implementations may differ slightly
gelu_pt = torch.nn.GELU() # Uses tanh approximation by default
gelu_tf = tf.keras.activations.gelu # Uses erf (exact) by default
from onnx_tf.handlers.backend import BackendHandler
from onnx_tf.handlers.handler import onnx_op
import tensorflow as tf
# Define custom ONNX operator handler
@onnx_op("CustomOp")
class CustomOpHandler(BackendHandler):
@classmethod
def version_1(cls, node, **kwargs):
# Implement custom conversion logic
x = kwargs["tensor_dict"][node.inputs[0]]
alpha = node.attrs.get("alpha", 1.0)
# Map to TensorFlow operations
output = tf.multiply(x, alpha)
return [output]
# Now ONNX models with CustomOp can be converted to TensorFlow
import torch
import tensorflow as tf
# PyTorch quantization-aware training
model_pt = models.resnet18(pretrained=True)
model_pt.qconfig = torch.quantization.get_default_qat_qconfig('fbgemm')
model_prepared = torch.quantization.prepare_qat(model_pt)
# After QAT training...
model_quantized = torch.quantization.convert(model_prepared)
# Export quantized model to ONNX
torch.onnx.export(
model_quantized,
dummy_input,
"resnet18_quantized.onnx",
opset_version=13
)
# Convert to TFLite with quantization
converter = tf.lite.TFLiteConverter.from_saved_model("model_tf")
converter.optimizations = [tf.lite.Optimize.DEFAULT]
converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS_INT8]
converter.inference_input_type = tf.int8
converter.inference_output_type = tf.int8
# Representative dataset for calibration
def representative_dataset():
for _ in range(100):
yield [np.random.randn(1, 3, 224, 224).astype(np.float32)]
converter.representative_dataset = representative_dataset
tflite_model = converter.convert()
# Problem: Operator not supported in target framework
# Solution: Replace with supported equivalent or implement custom handler
# Example: Replace unsupported operation
class ModelWithUnsupportedOp(torch.nn.Module):
def forward(self, x):
# torch.einsum may not be supported
# Replace with equivalent matmul operations
return torch.matmul(x, x.transpose(-2, -1))
# Or use ONNX fallback operators
torch.onnx.export(
model,
dummy_input,
"model.onnx",
operator_export_type=torch.onnx.OperatorExportTypes.ONNX_FALLTHROUGH
)
# Problem: Target framework requires fixed input shapes
# Solution: Export with specific shapes or use dynamic shape support
# Fixed shape export
torch.onnx.export(
model,
torch.randn(1, 3, 224, 224),
"model_fixed.onnx",
input_names=['input'],
output_names=['output']
# No dynamic_axes specified
)
# Dynamic shape export (where supported)
torch.onnx.export(
model,
torch.randn(1, 3, 224, 224),
"model_dynamic.onnx",
input_names=['input'],
output_names=['output'],
dynamic_axes={
'input': {0: 'batch', 2: 'height', 3: 'width'},
'output': {0: 'batch'}
}
)
# Problem: Different frameworks have different precision defaults
# Solution: Explicitly set dtypes and validate outputs
import numpy as np
def validate_conversion(model_original, model_converted, test_inputs, tolerance=1e-5):
"""
Validate conversion maintains numerical accuracy
"""
for i, test_input in enumerate(test_inputs):
# Original output
output_original = model_original(test_input).detach().numpy()
# Converted output
output_converted = model_converted(test_input).numpy()
# Compute differences
abs_diff = np.abs(output_original - output_converted)
rel_diff = abs_diff / (np.abs(output_original) + 1e-8)
max_abs_diff = np.max(abs_diff)
max_rel_diff = np.max(rel_diff)
print(f"Test {i+1}:")
print(f" Max absolute difference: {max_abs_diff:.2e}")
print(f" Max relative difference: {max_rel_diff:.2e}")
if max_abs_diff > tolerance:
print(f" ⚠️ Warning: Exceeds tolerance {tolerance}")
else:
print(f" ✓ Within tolerance")
return True
# Usage
test_inputs = [torch.randn(1, 3, 224, 224) for _ in range(10)]
validate_conversion(model_pytorch, model_tensorflow, test_inputs)
# Use recent ONNX opsets for better operator coverage
torch.onnx.export(model, dummy_input, "model.onnx", opset_version=15) # Good
torch.onnx.export(model, dummy_input, "model.onnx", opset_version=9) # Outdated
from onnxsim import simplify
import onnx
# Simplify ONNX model before converting to other frameworks
model = onnx.load("model.onnx")
model_simplified, check = simplify(model)
if check:
onnx.save(model_simplified, "model_simplified.onnx")
# Now convert simplified model to target framework
# Create a conversion manifest
conversion_info = {
'source_framework': 'pytorch',
'source_version': '2.0.1',
'target_framework': 'tensorflow',
'target_version': '2.12.0',
'intermediate_format': 'onnx',
'onnx_opset': 15,
'conversion_date': '2025-01-15',
'validation_passed': True,
'max_numerical_diff': 1.2e-6,
'notes': 'Converted ResNet-18 for TF Serving deployment'
}
import json
with open('conversion_manifest.json', 'w') as f:
json.dump(conversion_info, f, indent=2)
#!/usr/bin/env python3
"""
Automated model conversion pipeline with validation
"""
import torch
import onnx
import tensorflow as tf
from pathlib import Path
import logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
class ModelConverter:
def __init__(self, source_path, target_format):
self.source_path = Path(source_path)
self.target_format = target_format
def convert(self):
logger.info(f"Converting {self.source_path} to {self.target_format}")
# Load source model
model = torch.load(self.source_path)
model.eval()
# Export to ONNX
onnx_path = self.source_path.with_suffix('.onnx')
dummy_input = torch.randn(1, 3, 224, 224)
torch.onnx.export(
model, dummy_input, str(onnx_path),
opset_version=15, export_params=True
)
logger.info(f"✓ Exported to ONNX: {onnx_path}")
# Validate ONNX
onnx_model = onnx.load(str(onnx_path))
onnx.checker.check_model(onnx_model)
logger.info("✓ ONNX model validated")
# Convert to target format
if self.target_format == 'tensorflow':
self._convert_to_tensorflow(onnx_path)
elif self.target_format == 'tflite':
self._convert_to_tflite(onnx_path)
logger.info("✓ Conversion completed")
def _convert_to_tensorflow(self, onnx_path):
# Implementation here
pass
def _convert_to_tflite(self, onnx_path):
# Implementation here
pass
# Usage in CI/CD
if __name__ == "__main__":
converter = ModelConverter("model.pth", "tensorflow")
converter.convert()
import tensorrt as trt
import pycuda.driver as cuda
# Convert ONNX to TensorRT for maximum GPU performance
TRT_LOGGER = trt.Logger(trt.Logger.WARNING)
def build_engine(onnx_path, engine_path, fp16_mode=True):
with trt.Builder(TRT_LOGGER) as builder, \
builder.create_network(1 << int(trt.NetworkDefinitionCreationFlag.EXPLICIT_BATCH)) as network, \
trt.OnnxParser(network, TRT_LOGGER) as parser:
# Configure builder
config = builder.create_builder_config()
config.max_workspace_size = 1 << 30 # 1GB
if fp16_mode:
config.set_flag(trt.BuilderFlag.FP16)
# Parse ONNX
with open(onnx_path, 'rb') as model:
parser.parse(model.read())
# Build engine
engine = builder.build_engine(network, config)
# Save engine
with open(engine_path, 'wb') as f:
f.write(engine.serialize())
return engine
# Build TensorRT engine
engine = build_engine("model.onnx", "model.trt", fp16_mode=True)
print("✓ TensorRT engine built")
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.
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.