Instructions to use SpotLab/microfilariae_detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SpotLab/microfilariae_detection with Transformers:
# Load model directly from transformers import SSDForObjectDetection model = SSDForObjectDetection.from_pretrained("SpotLab/microfilariae_detection", device_map="auto") - Notebooks
- Google Colab
- Kaggle
update threshold to 0.3
Browse files- config.json +2 -1
config.json
CHANGED
|
@@ -6,13 +6,14 @@
|
|
| 6 |
"0": "microfilaria"
|
| 7 |
},
|
| 8 |
"layer_norm_eps": 0.001,
|
|
|
|
| 9 |
"min_depth": 8,
|
| 10 |
"num_channels": 3,
|
| 11 |
"num_detection_tokens": 20,
|
| 12 |
"output_stride": 32,
|
| 13 |
"semantic_loss_ignore_index": 255,
|
| 14 |
"tf_padding": true,
|
| 15 |
-
"model_type": "
|
| 16 |
"torch_dtype": "float32",
|
| 17 |
"transformers_version": "4.33.3"
|
| 18 |
}
|
|
|
|
| 6 |
"0": "microfilaria"
|
| 7 |
},
|
| 8 |
"layer_norm_eps": 0.001,
|
| 9 |
+
"threshold": 0.3,
|
| 10 |
"min_depth": 8,
|
| 11 |
"num_channels": 3,
|
| 12 |
"num_detection_tokens": 20,
|
| 13 |
"output_stride": 32,
|
| 14 |
"semantic_loss_ignore_index": 255,
|
| 15 |
"tf_padding": true,
|
| 16 |
+
"model_type": "mobilenetV2",
|
| 17 |
"torch_dtype": "float32",
|
| 18 |
"transformers_version": "4.33.3"
|
| 19 |
}
|