Estimator

Applies to: python

An estimator is an object that learns from data, usually through a fit method, then predicts or transforms.

model.fit(X_train, y_train)
yhat = model.predict(X_test)

See also: pipeline, inference