Feature Store
Centralized repository for ML features with versioning and serving.
Define Features
from oneml.features import Feature, FeatureSet
user_features = FeatureSet([
Feature("age", dtype="int"),
Feature("purchase_count", dtype="int"),
])