Create config.json
Browse files- config.json +20 -0
config.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "ForbiddenVision Face Detection & Segmentation",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"models": {
|
| 5 |
+
"face_detection": {
|
| 6 |
+
"file": "ForbiddenVision_face_detect_v1.pt",
|
| 7 |
+
"architecture": "YOLO11s",
|
| 8 |
+
"precision": 0.996,
|
| 9 |
+
"recall": 1.0,
|
| 10 |
+
"training_data": "14k+ mixed-domain images"
|
| 11 |
+
},
|
| 12 |
+
"face_segmentation": {
|
| 13 |
+
"file": "ForbiddenVision_face_segment_v1.pth",
|
| 14 |
+
"architecture": "TimmUniversalEncoder (tf_efficientnetv2_s.in21k_ft_in1k)",
|
| 15 |
+
"training_data": "4k+ mixed-domain images"
|
| 16 |
+
}
|
| 17 |
+
},
|
| 18 |
+
"usage": "Designed for ComfyUI via ForbiddenVision node pack",
|
| 19 |
+
"license": "Apache-2.0"
|
| 20 |
+
}
|