New Label#

import pandas as pd

from deepchecks.tabular import Dataset
from deepchecks.tabular.checks import NewLabelTrainTest
test_data = {"col1": [0, 1, 2, 3] * 10}
val_data = {"col1": [4, 5, 6, 7, 8, 9] * 10}
test = Dataset(pd.DataFrame(data=test_data), label="col1", label_type="classification_label")
val = Dataset(pd.DataFrame(data=val_data), label="col1", label_type="classification_label")
classification_label value for label type is deprecated, allowed task types are multiclass, binary and regression.
classification_label value for label type is deprecated, allowed task types are multiclass, binary and regression.
test_data = {"col1": ["a", "b", "a", "c"] * 10, "col2": [1,2,2,3]*10}
val_data = {"col1": ["a","b","d"] * 10, "col2": [1, 4, 5]*10}
test = Dataset(pd.DataFrame(data=test_data), label="col2", label_type="classification_label")
val = Dataset(pd.DataFrame(data=val_data), label="col2", label_type="classification_label")
classification_label value for label type is deprecated, allowed task types are multiclass, binary and regression.
classification_label value for label type is deprecated, allowed task types are multiclass, binary and regression.
New Label Train Test


Total running time of the script: ( 0 minutes 0.042 seconds)

Gallery generated by Sphinx-Gallery