분류예측 종류
분류기의 예측.
데이터 표현
외부
내부
세부 정보
# 다중 클래스 분류의 경우
{
"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",
}마지막 업데이트
도움이 되었나요?