AIAny
AI Deploy2021
Icon for item

Serving Models | TFX | TensorFlow

Deploys trained SavedModels behind gRPC and REST endpoints, with hot-swappable versioning so new weights load without downtime. Built around servables, loaders, sources, and a manager, plus request batching to cut accelerator cost.

Introduction

Most teams can train a model long before they can keep one serving reliably in production — version rollouts, zero-downtime reloads, and request batching are where deployment quietly breaks. TensorFlow Serving treats inference itself as infrastructure: a model is just one kind of "servable" managed by the same lifecycle machinery that handles lookup tables or model ensembles, so the loading, versioning, and traffic logic stays identical whatever you ship.

What Sets It Apart
  • Decouples the what from the how via Sources (discover model versions on disk) and Loaders (standardize load/unload), so swapping in fresh weights is a file-system event, not a redeploy.
  • Runs multiple versions of the same model concurrently, which makes canary rollouts and A/B experiments a serving-layer concern rather than something you bolt on upstream.
  • Ships a request-batching widget that coalesces inference calls into one — a large win on GPUs/TPUs where per-call overhead dominates — without forcing clients to manage batching themselves.
  • Exposes both gRPC and REST, so the same SavedModel serves low-latency internal services and HTTP clients without rewrapping.
Who It's For

Great fit if you live in the TensorFlow ecosystem, ship SavedModels, and need production-grade versioning and throughput as part of a TFX pipeline. Look elsewhere if your models are PyTorch or ONNX, you want a framework-agnostic server, or your use case is a single low-traffic endpoint where the operational surface area isn't worth it.

Information

More Items

GitHub
AI Infra2025

Measures generative AI inference performance with token-level metrics (TTFT, inter-token latency), latency, and throughput under realistic traffic patterns. Provides a multiprocess engine, real-time TUI dashboard, extensible plugins, and integrations for telemetry and result uploads, aimed at inference benchmarking and capacity planning.

GitHub
AI Train2019

Train and experiment with multi-billion to trillion-parameter transformer models on large GPU clusters using GPU-optimized building blocks and reference training scripts; offers advanced parallelism and mixed-precision support for research teams and ML engineers.

GitHub

Indexes full text of visited web pages and local files on a self‑hosted server so you can search your personal knowledge from a web UI, terminal, CLI, or an AI assistant. Runs without mandatory telemetry, offers a browser extension for automatic capture, and supports optional semantic search via a configurable embeddings endpoint.