classificationprediction काइंड
क्लासिफ़ायर से प्राप्त प्रेडिक्शन।
डेटा निरूपण
बाह्य
आंतरिक
विवरण
# बहु-वर्ग वर्गीकरण के मामले में
{
"image": {"height": 128, "width": 256},
"predictions": [{"class_name": "A", "class_id": 0, "confidence": 0.3}],
"top": "A",
"confidence": 0.3,
"parent_id": "some",
"prediction_type": "classification",
"inference_id": "some",
"root_parent_id": "some",
}
# बहु-लेबल वर्गीकरण के मामले में
{
"image": {"height": 128, "width": 256},
"predictions": {
"a": {"confidence": 0.3, "class_id": 0},
"b": {"confidence": 0.3, "class_id": 1},
}
"predicted_classes": ["a", "b"],
"parent_id": "some",
"prediction_type": "classification",
"inference_id": "some",
"root_parent_id": "some",
}अंतिम अपडेट
क्या यह उपयोगी था?