dejanseo commited on
Commit
96e3772
·
verified ·
1 Parent(s): c2b9741

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -8
README.md CHANGED
@@ -20,14 +20,18 @@ This model is a hierarchical text classifier designed to categorize text into a
20
  - **Model Developers:** [DEJAN.AI](https://dejan.ai/)
21
  - **Model Type:** Hierarchical Text Classification
22
  - **Base Model:** [`albert/albert-base-v2`](https://huggingface.co/albert/albert-base-v2)
23
- - **Taxonomy Structure:** The model classifies text into a taxonomy with the following structure:
24
- - **Level 1:** 21 unique classes
25
- - **Level 2:** 193 unique classes
26
- - **Level 3:** 1350 unique classes
27
- - **Level 4:** 2205 unique classes
28
- - **Level 5:** 1387 unique classes
29
- - **Level 6:** 399 unique classes
30
- - **Level 7:** 50 unique classes
 
 
 
 
31
  - **Model Architecture:**
32
  - **Level 1:** Standard sequence classification using `AlbertForSequenceClassification`.
33
  - **Levels 2-7:** Custom architecture (`TaxonomyClassifier`) where the ALBERT pooled output is concatenated with a one-hot encoded representation of the predicted ID from the previous level before being fed into a linear classification layer.
 
20
  - **Model Developers:** [DEJAN.AI](https://dejan.ai/)
21
  - **Model Type:** Hierarchical Text Classification
22
  - **Base Model:** [`albert/albert-base-v2`](https://huggingface.co/albert/albert-base-v2)
23
+ - **Taxonomy Structure:**
24
+
25
+ | Level | Unique Classes |
26
+ |---|---|
27
+ | 1 | 21 |
28
+ | 2 | 193 |
29
+ | 3 | 1350 |
30
+ | 4 | 2205 |
31
+ | 5 | 1387 |
32
+ | 6 | 399 |
33
+ | 7 | 50 |
34
+
35
  - **Model Architecture:**
36
  - **Level 1:** Standard sequence classification using `AlbertForSequenceClassification`.
37
  - **Levels 2-7:** Custom architecture (`TaxonomyClassifier`) where the ALBERT pooled output is concatenated with a one-hot encoded representation of the predicted ID from the previous level before being fed into a linear classification layer.