What problem does it solve? Moving a trained TensorFlow model from a notebook into production involves many error-prone steps: exporting to the right format, converting for mobile or edge devices, compressing with quantization, and standing up serving infrastructure. This Skill provides tested code patterns for each stage so models deploy correctly the first time. ## Core Features & Use Cases - SavedModel Export: Save Keras models with serving signatures, versioned export paths, and embedded preprocessing for consistent inference. - TFLite Conversion & Quantization: Convert models to TensorFlow Lite with float16, dynamic range, or full integer quantization using representative datasets for calibration. - Serving & Mobile Deployment: Run models with TensorFlow Serving in Docker, benchmark TFLite models on Android devices, and validate converted models against originals. - Use Case: You trained an image classifier and need it running on Android. Use this Skill to export a SavedModel, convert it to a quantized TFLite file, validate prediction parity, and benchmark it on a physical device. ## Quick Start Use the tensorflow-model-deployment skill to convert my trained Keras model to a quantized TFLite model and validate its predictions against the original.