Commit ·
0c3d20b
1
Parent(s): 8a4856a
added requirements
Browse files- README.md +46 -0
- requirements.txt +7 -0
README.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-3.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-3.0
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
```
|
| 6 |
+
python -m spacy download en_core_web_sm
|
| 7 |
+
```
|
| 8 |
+
|
| 9 |
+
Titles:
|
| 10 |
+
|
| 11 |
+
```
|
| 12 |
+
jq -s '.[].title' raw/dict.jsonl
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
returns
|
| 16 |
+
|
| 17 |
+
- [x] "English"
|
| 18 |
+
- [ ] "English One Million"
|
| 19 |
+
- [x] "American English"
|
| 20 |
+
- [x] "British English"
|
| 21 |
+
- [x] "English Fiction"
|
| 22 |
+
- [ ] "Chinese (simplified)"
|
| 23 |
+
- [x] "French"
|
| 24 |
+
- [x] "German"
|
| 25 |
+
- [ ] "Hebrew"
|
| 26 |
+
- [ ] "Italian"
|
| 27 |
+
- [x] "Russian"
|
| 28 |
+
- [x] "Spanish"
|
| 29 |
+
|
| 30 |
+
Spellcheck:
|
| 31 |
+
https://pypi.org/project/pyspellchecker/
|
| 32 |
+
|
| 33 |
+
```
|
| 34 |
+
English - ‘en’
|
| 35 |
+
Spanish - ‘es’
|
| 36 |
+
French - ‘fr’
|
| 37 |
+
Portuguese - ‘pt’
|
| 38 |
+
German - ‘de’
|
| 39 |
+
Russian - ‘ru’
|
| 40 |
+
Arabic - ‘ar’
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
Sets now:
|
| 44 |
+
|
| 45 |
+
- [x] "English" - en
|
| 46 |
+
- [x] "Spanish" - es
|
| 47 |
+
- [x] "French" - fr
|
| 48 |
+
- [x] "German" - de
|
| 49 |
+
- [x] "Russian" - ru
|
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
bs4
|
| 2 |
+
tqdm
|
| 3 |
+
requests
|
| 4 |
+
matplotlib
|
| 5 |
+
nltk
|
| 6 |
+
spacy
|
| 7 |
+
pyspellchecker
|