Titung commited on
Commit
ffa5898
·
verified ·
1 Parent(s): a6fe375

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +21 -31
README.md CHANGED
@@ -1,33 +1,23 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: word
5
- dtype: string
6
- - name: grammar
7
- dtype: string
8
- - name: etymology
9
- dtype: string
10
- - name: definition
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 22621794
15
- num_examples: 115487
16
- - name: validation
17
- num_bytes: 1249668
18
- num_examples: 6416
19
- - name: test
20
- num_bytes: 1240585
21
- num_examples: 6416
22
- download_size: 10514819
23
- dataset_size: 25112047
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
- - split: validation
30
- path: data/validation-*
31
- - split: test
32
- path: data/test-*
33
  ---
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ne
4
+ license: mit
5
+ task_categories:
6
+ - text-generation
7
+ tags:
8
+ - nepali
9
+ - dictionary
10
+ - lexicon
11
+ - devanagari
12
+ size_categories:
13
+ - 100K<n<1M
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ---
15
+ # Nepali Brihat Sabdakosh
16
+ 122,000 words from the Nepali Brihat Sabdakosh (Nepal Academy).
17
+ Fields: word, grammar, etymology, definition (HTML-stripped, pipe-separated senses).
18
+ **Source:** https://github.com/bikashpadhikari/nepali-brihat-sabdakosh-json
19
+ ## Usage
20
+ ```python
21
+ from datasets import load_dataset
22
+ ds = load_dataset("Titung/nepali-brihat-sabdakosh")
23
+ ```