Instructions to use charuka0/acne-multilabel-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- timm
How to use charuka0/acne-multilabel-classifier with timm:
import timm model = timm.create_model("hf_hub:charuka0/acne-multilabel-classifier", pretrained=True) - Notebooks
- Google Colab
- Kaggle
Add thresholds.json
Browse files- thresholds.json +16 -0
thresholds.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"classes": [
|
| 3 |
+
"Whitehead",
|
| 4 |
+
"Blackhead",
|
| 5 |
+
"Papule",
|
| 6 |
+
"Pustule",
|
| 7 |
+
"Nodule"
|
| 8 |
+
],
|
| 9 |
+
"thresholds": [
|
| 10 |
+
0.9300000000000002,
|
| 11 |
+
0.7200000000000002,
|
| 12 |
+
0.7500000000000002,
|
| 13 |
+
0.5000000000000001,
|
| 14 |
+
0.8200000000000002
|
| 15 |
+
]
|
| 16 |
+
}
|