nltk-data-hub commited on
Commit
2ec92e3
·
verified ·
1 Parent(s): 1f29aae

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +111 -0
README.md ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: dolch
4
+ data_files:
5
+ - split: dolch
6
+ path: data/dolch/dolch.parquet
7
+ - config_name: dolch-adjectives
8
+ data_files:
9
+ - split: dolch
10
+ path: data/dolch-adjectives/dolch.parquet
11
+ - config_name: dolch-nouns
12
+ data_files:
13
+ - split: dolch
14
+ path: data/dolch-nouns/dolch.parquet
15
+ - config_name: dolch-verbs
16
+ data_files:
17
+ - split: dolch
18
+ path: data/dolch-verbs/dolch.parquet
19
+ - config_name: dolch-adverbs
20
+ data_files:
21
+ - split: dolch
22
+ path: data/dolch-adverbs/dolch.parquet
23
+ - config_name: dolch-prepositions
24
+ data_files:
25
+ - split: dolch
26
+ path: data/dolch-prepositions/dolch.parquet
27
+ - config_name: dolch-pronouns
28
+ data_files:
29
+ - split: dolch
30
+ path: data/dolch-pronouns/dolch.parquet
31
+ - config_name: dolch-conjunctions
32
+ data_files:
33
+ - split: dolch
34
+ path: data/dolch-conjunctions/dolch.parquet
35
+ license: other
36
+ task_categories:
37
+ - token-classification
38
+ pretty_name: NLTK Dolch Sight Word List
39
+ ---
40
+
41
+ # NLTK Dolch Sight Word List
42
+
43
+ The 315 Dolch sight words (Dolch 1936), grouped by part of speech, distributed
44
+ via [NLTK](https://www.nltk.org/).
45
+
46
+ ## Configs
47
+
48
+ | Config | Words | Schema |
49
+ |---|---|---|
50
+ | `dolch` | 315 | `word, pos` |
51
+ | `dolch-adjectives` | 46 | `word` |
52
+ | `dolch-nouns` | 95 | `word` |
53
+ | `dolch-verbs` | 92 | `word` |
54
+ | `dolch-adverbs` | 34 | `word` |
55
+ | `dolch-prepositions` | 16 | `word` |
56
+ | `dolch-pronouns` | 26 | `word` |
57
+ | `dolch-conjunctions` | 6 | `word` |
58
+
59
+ ## Schema
60
+
61
+ **`dolch`** — combined list with part-of-speech
62
+
63
+ | Column | Type | Description |
64
+ |---|---|---|
65
+ | `word` | string | The sight word |
66
+ | `pos` | string | Part of speech (adjectives, nouns, verbs, …) |
67
+
68
+ **`dolch-*`** — word only
69
+
70
+ | Column | Type | Description |
71
+ |---|---|---|
72
+ | `word` | string | The sight word |
73
+
74
+ ## Usage
75
+
76
+ ```python
77
+ from datasets import load_dataset
78
+
79
+ ds = load_dataset("nltk-data-hub/dolch", "dolch") # all 315, with pos
80
+ ds = load_dataset("nltk-data-hub/dolch", "dolch-verbs") # verbs only
81
+ ```
82
+
83
+ ## Via NLTK
84
+
85
+ ```python
86
+ import nltk
87
+ nltk.download("words", hf=True)
88
+
89
+ nltk.corpus.words.words("dolch") # 315 Dolch sight words
90
+ nltk.corpus.words.words("dolch-verbs") # 92 verbs
91
+ nltk.corpus.words.words("dolch-nouns") # 95 nouns
92
+ ```
93
+
94
+ ## License
95
+
96
+ Public domain — Dolch (1936), published work now in the public domain.
97
+
98
+ ## Citation
99
+
100
+ ```bibtex
101
+ @article{dolch,
102
+ author = {Dolch, Edward William},
103
+ title = {A Basic Sight Vocabulary},
104
+ journal = {The Elementary School Journal},
105
+ volume = {36},
106
+ number = {6},
107
+ pages = {456--460},
108
+ year = {1936},
109
+ doi = {10.1086/457353}
110
+ }
111
+ ```