Update README.md
Browse files
README.md
CHANGED
@@ -12,6 +12,22 @@ widget:
|
|
12 |
# Typo Detector
|
13 |
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
## How to use
|
16 |
|
17 |
You use this model with Transformers pipeline for NER (token-classification).
|
@@ -76,3 +92,6 @@ Output:
|
|
76 |
[Detected]: It is left to the directors to figure out <i>hpw</i> to bring the <i>stry</i> across to <i>tye</i> audience .
|
77 |
----------------------------------------------------------------------------------------------------------------------------------
|
78 |
```
|
|
|
|
|
|
|
|
12 |
# Typo Detector
|
13 |
|
14 |
|
15 |
+
## Dataset Information
|
16 |
+
|
17 |
+
For this specific task, I used [NeuSpell](https://github.com/neuspell/neuspell) corpus as my raw data.
|
18 |
+
|
19 |
+
## Evaluation
|
20 |
+
|
21 |
+
The following tables summarize the scores obtained by model overall and per each class.
|
22 |
+
|
23 |
+
| # | precision | recall | f1-score | support |
|
24 |
+
|:------------:|:---------:|:--------:|:--------:|:--------:|
|
25 |
+
| TYPO | 0.992332 | 0.985997 | 0.989154 | 416054.0 |
|
26 |
+
| micro avg | 0.992332 | 0.985997 | 0.989154 | 416054.0 |
|
27 |
+
| macro avg | 0.992332 | 0.985997 | 0.989154 | 416054.0 |
|
28 |
+
| weighted avg | 0.992332 | 0.985997 | 0.989154 | 416054.0 |
|
29 |
+
|
30 |
+
|
31 |
## How to use
|
32 |
|
33 |
You use this model with Transformers pipeline for NER (token-classification).
|
|
|
92 |
[Detected]: It is left to the directors to figure out <i>hpw</i> to bring the <i>stry</i> across to <i>tye</i> audience .
|
93 |
----------------------------------------------------------------------------------------------------------------------------------
|
94 |
```
|
95 |
+
|
96 |
+
## Questions?
|
97 |
+
Post a Github issue on the [TypoDetector Issues](https://github.com/m3hrdadfi/typo-detector/issues) repo.
|