Docs/history storage

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
)