History Storage
Monitoring results can be automatically stored in SQLite.
Example
python
monitor = mlwatch.Monitor(
name="purchase_model",
storage="mlwatch.db"
)
history = monitor.history.get(
"purchase_model",
limit=50
)
Monitoring results can be automatically stored in SQLite.
monitor = mlwatch.Monitor(
name="purchase_model",
storage="mlwatch.db"
)
history = monitor.history.get(
"purchase_model",
limit=50
)