text
stringclasses 24
values |
---|
<unk> M Harrel <unk> , January 31 , 1861
|
M1822 .69 cal ( flintlock ) 5 @,@ 625
|
M1822 .69 cal ( percussion @-@ converted ) 53
|
<unk> .69 cal smoothbore ( percussion ) 357
|
<unk> <unk> cal rifle @-@ <unk> 900
|
<unk> rifle ( " Mississippi Rifle " ) 54
|
Hall 's rifles ( flintlock ) 2 @,@ 864
|
75 @,@ 000 buck & ball cartridges - percussion
|
14 @,@ 000 buck & ball cartridges - flint
|
117 rounds , 6 @-@ pounder <unk> shot
|
130 rounds , 6 @-@ pounder ball shot
|
2 @,@ 236 shotguns and rifles ( repaired mostly for troops in service )
|
23 pistols ( repaired mostly for troops in service )
|
Guard , office , and police duties .
|
<unk> Children of the Allies ; J. Salmon , 1916
|
National Mission ; Society for the Preservation of Christian Knowledge , 1916
|
Shakespeare 's Boy Characters ; C. W. Faulkner , 1917
|
Shakespeare 's Girl Characters ; C. W. Faulkner , 1920
|
Seaside Holiday ; J. Salmon , 1918 , 1921
|
<unk> and Fairies ; S. Harvey , 1918
|
Guardian Angel ; Society for the Preservation of Christian Knowledge , 1923
|
Christmas cards ; Girls ' Friendly Society , 1920s , 1930s
|
Christmas cards ( US ) ; Barton @-@ Colton , 1920s , 1930s
|
Beautiful Bible Pictures ; Blackie , 1932
|
YAML Metadata
Warning:
empty or missing yaml metadata in repo card
(https://huggingface.co./docs/hub/datasets-cards)
This dataset is sampled from wikitext/wikitext-2-v1/train
.
Codes to generate this dataset:
import datasets
dataset = datasets.load_dataset('wikitext', 'wikitext-2-v1')
selected = []
i = -1
while len(selected) < 24:
i += 1
text = dataset['train'][i]['text']
if 8 < len(text.split(' ')) <= 16 and '=' not in text:
selected.append(i)
tiny_dataset = dataset['train'].select(selected)
- Downloads last month
- 25