Upload config.json with huggingface_hub
Browse files- config.json +40 -0
config.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "onnx",
|
| 3 |
+
"task": "image-segmentation",
|
| 4 |
+
"framework": "onnx",
|
| 5 |
+
"architectures": [
|
| 6 |
+
"UltimateBreakthroughV2"
|
| 7 |
+
],
|
| 8 |
+
"input_size": [
|
| 9 |
+
256,
|
| 10 |
+
256
|
| 11 |
+
],
|
| 12 |
+
"num_classes": 1,
|
| 13 |
+
"model_format": "onnx",
|
| 14 |
+
"opset_version": 11,
|
| 15 |
+
"optimization": "high_precision",
|
| 16 |
+
"performance": {
|
| 17 |
+
"inference_time_ms": 14.99,
|
| 18 |
+
"speedup_factor": 4.57,
|
| 19 |
+
"dice_score": 1.0,
|
| 20 |
+
"max_difference": 3e-06,
|
| 21 |
+
"model_size_mb": 2.09
|
| 22 |
+
},
|
| 23 |
+
"preprocessing": {
|
| 24 |
+
"input_format": "RGB",
|
| 25 |
+
"normalization": "0-1",
|
| 26 |
+
"resize_method": "bilinear"
|
| 27 |
+
},
|
| 28 |
+
"postprocessing": {
|
| 29 |
+
"activation": "sigmoid",
|
| 30 |
+
"threshold": 0.5
|
| 31 |
+
},
|
| 32 |
+
"tags": [
|
| 33 |
+
"chess",
|
| 34 |
+
"segmentation",
|
| 35 |
+
"onnx",
|
| 36 |
+
"real-time",
|
| 37 |
+
"mobile"
|
| 38 |
+
],
|
| 39 |
+
"license": "apache-2.0"
|
| 40 |
+
}
|