Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
# For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/modelcard.md?plain=1
|
| 3 |
+
# Doc / guide: https://huggingface.co/docs/hub/model-cards
|
| 4 |
+
{}
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# Model Card for Model ID
|
| 8 |
+
|
| 9 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 10 |
+
|
| 11 |
+
Some teeth visual experts models, including detection and instance segmentation ability.
|
| 12 |
+
|
| 13 |
+
1. Teeth_Visual_Experts_Maskdino_Swinl_x-ray_bone_loss_1disease.pth
|
| 14 |
+
|
| 15 |
+
```python
|
| 16 |
+
COCO_CATEGORIES = [
|
| 17 |
+
{"color": [220, 20, 60], "isthing": 1, "id": 0, "name": "bone_loss"},
|
| 18 |
+
]
|
| 19 |
+
|
| 20 |
+
"bone_loss_1classes_train": ("bone_loss/images", "bone_loss/instances_train2017.json"),
|
| 21 |
+
"bone_loss_1classes_val": ("bone_loss/images", "bone_loss/instances_val2017.json"),
|
| 22 |
+
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
2. Teeth_Visual_Experts_Maskdino_Swinl_x-ray_11diseases.pth
|
| 27 |
+
|
| 28 |
+
```python
|
| 29 |
+
COCO_CATEGORIES = [
|
| 30 |
+
{"color": [220, 20, 60], "isthing": 1, "id": 1, "name": "Caries"},
|
| 31 |
+
{"color": [119, 11, 32], "isthing": 1, "id": 2, "name": "Crown"},
|
| 32 |
+
{"color": [0, 0, 142], "isthing": 1, "id": 3, "name": "Filling"},
|
| 33 |
+
{"color": [0, 0, 230], "isthing": 1, "id": 4, "name": "Implant"},
|
| 34 |
+
{"color": [106, 0, 228], "isthing": 1, "id": 5, "name": "Mandibular Canal"},
|
| 35 |
+
{"color": [0, 60, 100], "isthing": 1, "id": 6, "name": "Missing teeth"},
|
| 36 |
+
{"color": [0, 80, 100], "isthing": 1, "id": 7, "name": "Periapical lesion"},
|
| 37 |
+
{"color": [0, 0, 70], "isthing": 1, "id": 8, "name": "Root Canal Treatment"},
|
| 38 |
+
{"color": [0, 0, 192], "isthing": 1, "id": 9, "name": "Root Piece"},
|
| 39 |
+
{"color": [250, 170, 30], "isthing": 1, "id": 10, "name": "impacted tooth"},
|
| 40 |
+
{"color": [100, 170, 30], "isthing": 1, "id": 11, "name": "maxillary sinus"},
|
| 41 |
+
]
|
| 42 |
+
|
| 43 |
+
"x-ray-11classes": ("x-ray-11classes/images", "x-ray-11classes/annotations_coco.json"),
|
| 44 |
+
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
3.
|