Upload cvat-config.json
Browse files- cvat-config.json +13 -0
cvat-config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"task_type": "segmentation", // oder "detection", "classification"
|
| 3 |
+
"input_type": "image", // oder "video"
|
| 4 |
+
"output_type": "mask", // oder "rectangle", "polygon", etc.
|
| 5 |
+
"model_config": {
|
| 6 |
+
"type": "segmentation",
|
| 7 |
+
"labels": ["object"],
|
| 8 |
+
"framework": "pytorch",
|
| 9 |
+
"model_params": {
|
| 10 |
+
"threshold": 0.5
|
| 11 |
+
}
|
| 12 |
+
}
|
| 13 |
+
}
|