Evidently is an open-source ML and LLM observability framework. Evaluate, test, and monitor any AI-powered system or data pipeline. From tabular data to Gen AI. 100+ metrics.
Hey there! Discovered this stepping away from OSS Tutorial
from sklearn.datasets import fetch_california_housing
from evidently.test_suite import TestSuite
from evidently.test_preset import DataStabilityTestPreset
from evidently.tests import *
data = fetch_california_housing(as_frame=True)
housing_data = data.frame
housing_data.head(1)
reference = housing_data.sample(n=5000, replace=False)
current = housing_data.sample(n=5000, replace=False).drop(["AveOccup"], axis=1)
suite = TestSuite(tests=[
DataStabilityTestPreset(),
])
suite.run(reference_data=reference, current_data=current)
suite
Hey there! Discovered this stepping away from OSS Tutorial
tb: