OSS Quickstart - Data and ML monitoring
Run your first evaluation using Evidently open-source, for tabular data.
Installation
!pip install evidentlyImports
import pandas as pd
from sklearn import datasets
from evidently.test_suite import TestSuite
from evidently.test_preset import DataStabilityTestPreset
from evidently.report import Report
from evidently.metric_preset import DataDriftPreset
iris_data = datasets.load_iris(as_frame='auto')
iris_frame = iris_data.frameRun a Test Suite
Get a Report
What's next?
Tutorial - Reports and TestsQuickstart - LLM evaluationsQuickstart - LLM evaluationsLast updated