Datasets:
word stringlengths 1 11 | pos stringclasses 7
values |
|---|---|
a | adjectives |
all | adjectives |
an | adjectives |
any | adjectives |
best | adjectives |
better | adjectives |
big | adjectives |
black | adjectives |
blue | adjectives |
both | adjectives |
brown | adjectives |
clean | adjectives |
cold | adjectives |
eight | adjectives |
every | adjectives |
five | adjectives |
four | adjectives |
full | adjectives |
funny | adjectives |
good | adjectives |
green | adjectives |
hot | adjectives |
kind | adjectives |
light | adjectives |
little | adjectives |
long | adjectives |
many | adjectives |
new | adjectives |
old | adjectives |
one | adjectives |
own | adjectives |
pretty | adjectives |
red | adjectives |
right | adjectives |
round | adjectives |
seven | adjectives |
six | adjectives |
small | adjectives |
some | adjectives |
ten | adjectives |
the | adjectives |
three | adjectives |
two | adjectives |
warm | adjectives |
white | adjectives |
yellow | adjectives |
apple | nouns |
baby | nouns |
back | nouns |
ball | nouns |
bear | nouns |
bed | nouns |
bell | nouns |
bird | nouns |
birthday | nouns |
boat | nouns |
box | nouns |
boy | nouns |
bread | nouns |
brother | nouns |
cake | nouns |
car | nouns |
cat | nouns |
chair | nouns |
chicken | nouns |
children | nouns |
Christmas | nouns |
coat | nouns |
corn | nouns |
cow | nouns |
day | nouns |
dog | nouns |
doll | nouns |
door | nouns |
duck | nouns |
egg | nouns |
eye | nouns |
farm | nouns |
farmer | nouns |
father | nouns |
feet | nouns |
fire | nouns |
fish | nouns |
floor | nouns |
flower | nouns |
game | nouns |
garden | nouns |
girl | nouns |
goodbye | nouns |
grass | nouns |
ground | nouns |
hand | nouns |
head | nouns |
hill | nouns |
home | nouns |
horse | nouns |
house | nouns |
kitty | nouns |
leg | nouns |
letter | nouns |
End of preview. Expand in Data Studio
NLTK Dolch Sight Word List
The 315 Dolch sight words (Dolch 1936), grouped by part of speech, distributed via NLTK.
Configs
| Config | Words | Schema |
|---|---|---|
dolch |
315 | word, pos |
dolch-adjectives |
46 | word |
dolch-nouns |
95 | word |
dolch-verbs |
92 | word |
dolch-adverbs |
34 | word |
dolch-prepositions |
16 | word |
dolch-pronouns |
26 | word |
dolch-conjunctions |
6 | word |
Schema
dolch — combined list with part-of-speech
| Column | Type | Description |
|---|---|---|
word |
string | The sight word |
pos |
string | Part of speech (adjectives, nouns, verbs, …) |
dolch-* — word only
| Column | Type | Description |
|---|---|---|
word |
string | The sight word |
Usage
from datasets import load_dataset
ds = load_dataset("nltk-data-hub/dolch", "dolch") # all 315, with pos
ds = load_dataset("nltk-data-hub/dolch", "dolch-verbs") # verbs only
Via NLTK
import nltk
nltk.download("words", hf=True)
nltk.corpus.words.words("dolch") # 315 Dolch sight words
nltk.corpus.words.words("dolch-verbs") # 92 verbs
nltk.corpus.words.words("dolch-nouns") # 95 nouns
License
Public domain — Dolch (1936), published work now in the public domain.
Citation
@article{dolch,
author = {Dolch, Edward William},
title = {A Basic Sight Vocabulary},
journal = {The Elementary School Journal},
volume = {36},
number = {6},
pages = {456--460},
year = {1936},
doi = {10.1086/457353}
}
- Downloads last month
- 43