fbononibelloepoch commited on
Commit
1ccb10a
1 Parent(s): 5b02d33

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +12 -7
config.json CHANGED
@@ -1,10 +1,15 @@
1
  {
2
- "framework": "pt",
3
- "task": "object-detection",
 
4
  "model_type": "yolov8",
5
- "_name_or_path": "fbononibelloepoch/malaria-detection",
6
- "architectures": ["YOLOv8"],
7
- "model_format": "ultralytics",
8
- "inference_framework": "ultralytics",
9
- "classes": ["infected", "uninfected"]
 
 
 
 
10
  }
 
1
  {
2
+ "architectures": [
3
+ "YOLOv8"
4
+ ],
5
  "model_type": "yolov8",
6
+ "task": "object-detection",
7
+ "framework": "pt",
8
+ "num_classes": 2,
9
+ "classes": ["infected", "uninfected"],
10
+ "image_size": [640, 640],
11
+ "backbone": "yolov8n",
12
+ "confidence_threshold": 0.25,
13
+ "iou_threshold": 0.45,
14
+ "_name_or_path": "fbononibelloepoch/malaria-detection"
15
  }