Navneeth017 commited on
Commit
69e075f
·
verified ·
1 Parent(s): 16db4f7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +122 -25
README.md CHANGED
@@ -1,27 +1,124 @@
 
 
 
 
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: text
7
- dtype: string
8
- - name: char_spans
9
- list:
10
- - name: start
11
- dtype: int64
12
- - name: end
13
- dtype: int64
14
- - name: label
15
- dtype: string
16
- splits:
17
- - name: train
18
- num_bytes: 10988079
19
- num_examples: 27552
20
- download_size: 3782717
21
- dataset_size: 10988079
22
- configs:
23
- - config_name: default
24
- data_files:
25
- - split: train
26
- path: data/train-*
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Below is a **clean, Hugging Face–ready `README.md`** tailored **exactly** to your uploaded dataset (`iNERweb – Malayalam subset`) and the structure you shared.
2
+
3
+ You can **copy-paste this directly** into your dataset repo.
4
+
5
  ---
6
+
7
+ # iNERweb – Malayalam (mal)
8
+
9
+ ## Dataset Summary
10
+
11
+ **iNERweb (Malayalam)** is a Malayalam subset of the **fiNERweb** multilingual Named Entity Recognition (NER) dataset.
12
+ The dataset provides **character-level entity annotations**, enabling precise span-based NER modeling suitable for transformer and span-classification architectures.
13
+
14
+ * **Language:** Malayalam (`mal`)
15
+ * **Task:** Named Entity Recognition (NER)
16
+ * **Annotation type:** Character spans
17
+ * **Split:** Train
18
+
 
 
 
 
 
 
 
 
 
 
 
 
19
  ---
20
+
21
+ ## Dataset Structure
22
+
23
+ ```text
24
+ DatasetDict({
25
+ train: Dataset({
26
+ features: ['id', 'text', 'char_spans'],
27
+ num_rows: 27,552
28
+ })
29
+ })
30
+ ```
31
+
32
+ ---
33
+
34
+ ## Data Fields
35
+
36
+ Each example in the dataset contains the following fields:
37
+
38
+ ```json
39
+ {
40
+ "id": str,
41
+ "text": str,
42
+ "char_spans": [
43
+ {
44
+ "start": int,
45
+ "end": int,
46
+ "label": str
47
+ }
48
+ ]
49
+ }
50
+ ```
51
+
52
+ ### Field Description
53
+
54
+ | Field | Type | Description |
55
+ | ------------ | ------------ | ---------------------------------------- |
56
+ | `id` | `string` | Unique identifier for the example |
57
+ | `text` | `string` | Original Malayalam text |
58
+ | `char_spans` | `list[dict]` | Character-level entity spans with labels |
59
+
60
+ ---
61
+
62
+ ## Intended Use
63
+
64
+ This dataset is suitable for:
65
+
66
+ * Character-span–based NER models
67
+ * Transformer-based Malayalam NER (mBERT, XLM-R, IndicBERT, etc.)
68
+ * Span classification / token-to-span alignment research
69
+ -д- Multilingual and low-resource NER experiments
70
+
71
+ ---
72
+
73
+ ## Usage
74
+
75
+ ### Load with 🤗 Datasets
76
+
77
+ ```python
78
+ from datasets import load_dataset
79
+
80
+ dataset = load_dataset("Navneeth017/fiNERweb_mal") # replace with your repo name
81
+ print(dataset["train"][0])
82
+ ```
83
+
84
+ ---
85
+
86
+ ## Source Dataset
87
+
88
+ This dataset is derived from **fiNERweb**, a multilingual NER dataset containing annotated web text across multiple languages.
89
+
90
+ Original repository:
91
+
92
+ ```python
93
+ load_dataset("whoisjones/fiNERweb", "mal")
94
+ ```
95
+
96
+ ---
97
+
98
+ ## Citation
99
+
100
+ If you use this dataset, **please cite the original fiNERweb paper**:
101
+
102
+ ```bibtex
103
+ @misc{golde2025finerwebdatasetsartifactsscalable,
104
+ title={FiNERweb: Datasets and Artifacts for Scalable Multilingual Named Entity Recognition},
105
+ author={Jonas Golde and Patrick Haller and Alan Akbik},
106
+ year={2025},
107
+ eprint={2512.13884},
108
+ archivePrefix={arXiv},
109
+ primaryClass={cs.CL},
110
+ url={https://arxiv.org/abs/2512.13884}
111
+ }
112
+ ```
113
+
114
+ ---
115
+
116
+ ## Languages
117
+
118
+ * `mal` — Malayalam
119
+
120
+ ---
121
+
122
+ ## License
123
+
124
+ Please refer to the **original fiNERweb dataset license** for usage and redistribution terms.