Real-time Models (Postgres)
Example: FastAPI + SQLAlchemy
class IrisModelPrediction(BaseModel):
id: str
timestamp: datetime
# Features
sepal_length: float
sepal_width: float
petal_length: float
petal_width: float
# Predictions
prediction: int
confidence: floatLast updated