AI Terminology
/Intermediate
Model Serving
Definition
The infrastructure phase where a trained AI model is wrapped in an API and hosted on a cloud server so that external applications can send it data and receive predictions (inference) in real-time.
Explain Like I'm New
Taking the AI 'brain' off the scientist's laptop and plugging it into the internet so the whole world can use it.
Real World Example
Using vLLM or Hugging Face Text Generation Inference (TGI) to host an open-source model like Mistral on an AWS GPU. The software creates a REST API so frontend React apps can send it JSON payloads.
Common Use Cases
- •Cloud architecture
- •Scaling AI applications
Interview Questions
basic
- What type of computer hardware is almost always required to Serve a modern LLM efficiently?
intermediate
- What is 'Continuous Batching' in modern LLM model serving?