Titung commited on
Commit
56683e8
·
verified ·
1 Parent(s): 8750e6a

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +18 -27
README.md CHANGED
@@ -1,29 +1,20 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: word
5
- dtype: string
6
- - name: lemma
7
- dtype: string
8
- splits:
9
- - name: train
10
- num_bytes: 208035
11
- num_examples: 8084
12
- - name: validation
13
- num_bytes: 26013
14
- num_examples: 1011
15
- - name: test
16
- num_bytes: 26005
17
- num_examples: 1011
18
- download_size: 118843
19
- dataset_size: 260053
20
- configs:
21
- - config_name: default
22
- data_files:
23
- - split: train
24
- path: data/train-*
25
- - split: validation
26
- path: data/validation-*
27
- - split: test
28
- path: data/test-*
29
  ---
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ne
4
+ task_categories:
5
+ - token-classification
6
+ tags:
7
+ - nepali
8
+ - lemmatization
9
+ - morphology
10
+ size_categories:
11
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+ # Nepali Word-Lemma Gold Data
14
+ 5,000+ manually annotated word-lemma pairs for Nepali.
15
+ **Source:** https://github.com/dpakpdl/NepaliLemmatizer
16
+ ## Usage
17
+ ```python
18
+ from datasets import load_dataset
19
+ ds = load_dataset("Titung/nepali-lemma-gold")
20
+ ```