karthika95 commited on
Commit
04ab1aa
·
verified ·
1 Parent(s): 33e2250

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -43
README.md CHANGED
@@ -3,6 +3,7 @@ license: cc-by-4.0
3
  language:
4
  - hi
5
  - mr
 
6
  task_categories:
7
  - other
8
  tags:
@@ -25,14 +26,16 @@ Each entry consists of a surface word form and its morpheme-level decomposition,
25
  Currently supported languages:
26
  - Hindi (`hindi.csv`)
27
  - Marathi (`marathi.csv`)
 
28
 
29
- Additional languages such as Tamil and Telugu may be added in future releases.
30
 
31
  print(ds)
32
  ## Data Format
33
  Each CSV file contains the following columns:
34
  - `word`: surface form
35
  - `segmentation`: morpheme-level segmentation
 
36
 
37
  ## Usage
38
  from datasets import load_dataset
@@ -42,52 +45,11 @@ ds = load_dataset(
42
  data_files={
43
  "hindi": ["hindi.csv"],
44
  "marathi": ["marathi.csv"],
 
45
  }
46
  )
47
-
48
- ## ---
49
- license: cc-by-4.0
50
- language:
51
- - hi
52
- - mr
53
- task_categories:
54
- -- word segmentation
55
- ---
56
-
57
- # morphTok
58
-
59
- This repository contains the morphological segmentation data released as part of the paper:
60
-
61
- **Morphtok: Morphologically Grounded Tokenization for Indian Languages**
62
-
63
- ## Description
64
- The dataset provides word-level morphological segmentations for Indian languages.
65
- Each entry consists of a surface word form and its morpheme-level decomposition, represented using the `+` delimiter.
66
-
67
- Currently supported languages:
68
- - Hindi (`hindi.csv`)
69
- - Marathi (`marathi.csv`)
70
-
71
- Additional languages such as Tamil and Telugu may be added in future releases.
72
-
73
  print(ds)
74
 
75
- ## Data Format
76
- Each CSV file contains the following columns:
77
- - `word`: surface form
78
- - `segmentation`: morpheme-level segmentation
79
-
80
- ## Usage
81
- from datasets import load_dataset
82
-
83
- ds = load_dataset(
84
- "karthika95/morphTok",
85
- data_files={
86
- "hindi": ["hindi.csv"],
87
- "marathi": ["marathi.csv"],
88
- }
89
- )
90
-
91
  ## Acknowledgements
92
  We thank BharatGen for providing resources and access to domain experts who supported the curation of this dataset.
93
 
 
3
  language:
4
  - hi
5
  - mr
6
+ - ta
7
  task_categories:
8
  - other
9
  tags:
 
26
  Currently supported languages:
27
  - Hindi (`hindi.csv`)
28
  - Marathi (`marathi.csv`)
29
+ - Tamil (`tamil.csv`)
30
 
31
+ Additional languages may be added in future releases.
32
 
33
  print(ds)
34
  ## Data Format
35
  Each CSV file contains the following columns:
36
  - `word`: surface form
37
  - `segmentation`: morpheme-level segmentation
38
+ - `language`: language code
39
 
40
  ## Usage
41
  from datasets import load_dataset
 
45
  data_files={
46
  "hindi": ["hindi.csv"],
47
  "marathi": ["marathi.csv"],
48
+ "tamil": ["tamil.csv"],
49
  }
50
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  print(ds)
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  ## Acknowledgements
54
  We thank BharatGen for providing resources and access to domain experts who supported the curation of this dataset.
55