prithivMLmods commited on
Commit
6e11116
·
verified ·
1 Parent(s): b52f01f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -1
README.md CHANGED
@@ -13,4 +13,62 @@ tags:
13
  - synthetic
14
  size_categories:
15
  - 10K<n<100K
16
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  - synthetic
14
  size_categories:
15
  - 10K<n<100K
16
+ ---
17
+
18
+ # Tooth-Agenesis-6\_Types
19
+
20
+ This dataset contains labeled dental images intended for training machine learning models on the classification of six different oral health conditions. It is designed for image classification tasks, specifically targeting types of tooth agenesis and other related dental conditions.
21
+
22
+ ## Dataset Summary
23
+
24
+ * **Total Images:** 12,320
25
+ * **Format:** Parquet
26
+ * **Modality:** Image
27
+ * **Split:** `train` only
28
+ * **Size:** 183 MB
29
+ * **Language:** English
30
+ * **License:** Apache 2.0
31
+
32
+ ## Labels
33
+
34
+ The dataset includes the following six categories of dental conditions:
35
+
36
+ | Label ID | Class Name |
37
+ | -------- | ------------------- |
38
+ | 0 | Calculus |
39
+ | 1 | Caries |
40
+ | 2 | Gingivitis |
41
+ | 3 | Mouth Ulcer |
42
+ | 4 | Tooth Discoloration |
43
+ | 5 | Hypodontia |
44
+
45
+ ## Usage
46
+
47
+ This dataset can be used for:
48
+
49
+ * Training and evaluating image classification models for dental diagnosis
50
+ * Research in dental pathology classification using AI
51
+ * Development of dental health assessment tools
52
+
53
+ ## How to Use
54
+
55
+ You can load this dataset using the Hugging Face `datasets` library:
56
+
57
+ ```python
58
+ from datasets import load_dataset
59
+
60
+ dataset = load_dataset("strangerguardhf/Tooth-Agenesis-6_Types")
61
+ ```
62
+
63
+ Access individual images and labels:
64
+
65
+ ```python
66
+ image = dataset["train"][0]["image"]
67
+ label = dataset["train"][0]["label"]
68
+ ```
69
+
70
+ ## Applications
71
+
72
+ * Clinical decision support systems
73
+ * Diagnostic tools in tele-dentistry
74
+ * Automated dental checkup assistants