Add Evaluation Records
Adding Evaluation Record to Recorder
from markov.api.schemas.model_recording import SingleTagInferenceRecord,RecordMetaType
from markov import EvaluationRecorder
evaluation_recorder = EvaluationRecorder(
name=f"Evaluating model YOUR_MODEL_NAME",
notes=f"Testing evaluation with MarkovML",
model_id="YOUR_MODEL_ID" # or my_model.model_id
)
# This method registers a recorder with Markov for the backend to process the records
# sent by this recorder.
evaluation_recorder.register()Single Record Prediction
Handing Batch Predictions
Last updated