Mardiyyah commited on
Commit
2d085df
·
verified ·
1 Parent(s): 6e6af79

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md CHANGED
@@ -24,4 +24,66 @@ configs:
24
  data_files:
25
  - split: train
26
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  data_files:
25
  - split: train
26
  path: data/train-*
27
+ license: mit
28
+ language:
29
+ - en
30
+ - nup
31
+ pretty_name: NupePilot
32
+ task_categories:
33
+ - translation
34
+ - text2text-generation
35
+ task_ids:
36
+ - machine-translation
37
+ multilinguality: bilingual
38
+ size_categories:
39
+ - n<1K
40
+ source_datasets:
41
+ - original
42
+
43
  ---
44
+
45
+
46
+
47
+ # NupePilot: A Multi-Domain English–Nupe Parallel Dataset
48
+
49
+ ## Dataset Description
50
+
51
+ ### Overview
52
+ NupePilot is a pilot parallel dataset for **Nupe**, a low-resource Niger-Congo language (Volta-Niger subfamily) spoken primarily in North-Central Nigeria.
53
+
54
+ Despite millions of speakers, Nupe remains significantly underrepresented in natural language processing (NLP), with only a small number of scattered datasets and limited structured resources available.
55
+
56
+ NupePilot provides a **manually curated, multi-domain English–Nupe parallel corpus** designed to support low-resource NLP research and applications.
57
+
58
+ ---
59
+
60
+ ### Supported Tasks
61
+ - Machine Translation (English → Nupe)
62
+ - Text-to-Text Generation
63
+ - Conversational AI
64
+ - Cross-lingual transfer learning
65
+
66
+ ---
67
+
68
+ ### Languages
69
+ - English (`en`)
70
+ - Nupe (`nup`)
71
+
72
+ ---
73
+
74
+ ## Dataset Structure
75
+
76
+ ### Data Instances
77
+
78
+ Each example consists of:
79
+
80
+ ```json
81
+ {
82
+ "id": 1,
83
+ "domain": "conversation",
84
+ "source_lang": "en",
85
+ "target_lang": "nupe",
86
+ "source_text": "What are you doing?",
87
+ "target_text": "Ki wo-jon?"
88
+ }
89
+ ---