karthika95 commited on
Commit
a93ed6a
·
verified ·
1 Parent(s): dc716ff

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -0
README.md CHANGED
@@ -5,6 +5,11 @@ language:
5
  - mr
6
  task_categories:
7
  - other
 
 
 
 
 
8
  ---
9
 
10
  # morphTok
@@ -23,12 +28,73 @@ Currently supported languages:
23
 
24
  Additional languages such as Tamil and Telugu may be added in future releases.
25
 
 
26
  ## Data Format
27
  Each CSV file contains the following columns:
28
  - `word`: surface form
29
  - `segmentation`: morpheme-level segmentation
30
 
 
 
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  @article{brahma2025morphtok,
33
  title={Morphtok: Morphologically grounded tokenization for indian languages},
34
  author={Brahma, Maharaj and Karthika, NJ and Singh, Atul and Adiga, Devaraj and Bhate, Smruti and Ramakrishnan, Ganesh and Saluja, Rohit and Desarkar, Maunendra Sankar},
 
5
  - mr
6
  task_categories:
7
  - other
8
+ tags:
9
+ - tokenization
10
+ - morphology
11
+ - word-segmentation
12
+ - indian-languages
13
  ---
14
 
15
  # morphTok
 
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
39
 
40
+ ds = load_dataset(
41
+ "karthika95/morphTok",
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
+ ## BibTeX
92
+ @article{brahma2025morphtok,
93
+ title={Morphtok: Morphologically grounded tokenization for indian languages},
94
+ author={Brahma, Maharaj and Karthika, NJ and Singh, Atul and Adiga, Devaraj and Bhate, Smruti and Ramakrishnan, Ganesh and Saluja, Rohit and Desarkar, Maunendra Sankar},
95
+ journal={arXiv preprint arXiv:2504.10335},
96
+ year={2025}
97
+ }
98
  @article{brahma2025morphtok,
99
  title={Morphtok: Morphologically grounded tokenization for indian languages},
100
  author={Brahma, Maharaj and Karthika, NJ and Singh, Atul and Adiga, Devaraj and Bhate, Smruti and Ramakrishnan, Ganesh and Saluja, Rohit and Desarkar, Maunendra Sankar},