Binary Classification
Example: Boolean Decision without Probability
id
feature1 (numeric)
feature2 (boolean)
decision (boolean)
label (boolean)
timestamp (datetime)
apr_model = aporia.create_model_version(
model_id="<MODEL_ID>",
model_version="v1",
model_type="binary"
features={
...
},
predictions={
"decision": "boolean",
},
)Example: Boolean Decision with Probability
id
feature1 (numeric)
feature2 (boolean)
proba (numeric)
decision (boolean)
label (boolean)
timestamp (datetime)
Example: Probability Only
Last updated