Python में मशीन लर्निंग मॉनिटरिंग
Hakim Elakhrass
Co-founder and CEO of NannyML

# Initialize the DLE algorithm
estimator = nannyml.DLE(
y_true='target',
y_pred='y_pred',
metrics=['rmse'],
timestamp_column_name='timestamp',
chunk_period='d'
feature_column_names=features,
tune_hyperparameters=False
)
# Fit the algorithm
estimator.fit(reference)
results = estimator.estimate(analysis)
बाइनरी और मल्टीक्लास क्लासिफिकेशन समस्याओं के लिए उपयोग होता है
कन्फिडेंस स्कोर से confusion matrix का अनुमान लगाता है
किसी भी क्लासिफिकेशन परफॉर्मेंस मेट्रिक का आकलन करता है

# Initialize the CBPE algorithm
estimator = nannyml.CBPE(
y_pred_proba='y_pred_proba',
y_pred='y_pred',
y_true='targets',
timestamp_column_name='timestamp',
metrics=['roc_auc'],
chunk_period='d',
problem_type='classification_binary',
)
# Fit the algorithm
estimator.fit(reference)
results = estimator.estimate(analysis)
results.plot().show()

Python में मशीन लर्निंग मॉनिटरिंग