Estimators Overview

Estimators are the system component responsible for learning from tensor data. They expose train() and predict() as the core contract.

Concept

Design

Data flow

Dataset (Tensor mode)
   ├─ transformers (fit/transform)
   └─ estimator.train()
         └─ native numeric kernels / optimization loop

Core estimator roles

When to use

When not to use