haileyyy33 commited on
Commit
f622655
·
verified ·
1 Parent(s): fa85dcf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -64
README.md CHANGED
@@ -1,58 +1,10 @@
1
- ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: train
6
- path: data/train-*
7
- - split: validation
8
- path: data/validation-*
9
- dataset_info:
10
- features:
11
- - name: id
12
- dtype: int32
13
- - name: domain
14
- dtype: string
15
- - name: subdomain
16
- dtype: string
17
- - name: prompt
18
- dtype: string
19
- - name: response
20
- dtype: string
21
- - name: context
22
- dtype: string
23
- - name: final_answer
24
- dtype: string
25
- - name: text
26
- dtype: string
27
- - name: source
28
- dtype: string
29
- - name: license
30
- dtype: string
31
- - name: verified
32
- dtype: bool
33
- - name: src_lang
34
- dtype: string
35
- - name: tgt_lang
36
- dtype: string
37
- - name: task_type
38
- dtype: string
39
- splits:
40
- - name: train
41
- num_bytes: 7389464
42
- num_examples: 9283
43
- - name: validation
44
- num_bytes: 807640
45
- num_examples: 1032
46
- download_size: 4104557
47
- dataset_size: 8197104
48
- ---
49
  # AskVox Language Learning Dataset
50
 
51
- This dataset combines multiple public Kaggle datasets focused on multilingual text and language learning tasks.
52
 
53
- **Included Sources:**
54
- 1. English Language Learning (ELL) – writing & proficiency
55
- 2. Language Detection (17 languages)
56
  3. Global Language Learning Popularity (2020–2023)
57
  4. Adult Language Learning Profile
58
 
@@ -62,22 +14,27 @@ This dataset combines multiple public Kaggle datasets focused on multilingual te
62
  |---------------|------------------------------------------------------------------|
63
  | id | Integer identifier |
64
  | domain | High-level domain, here `"language-learning"` |
65
- | subdomain | More specific scope, here `"multilingual/text"` |
66
- | prompt | Input sentence or question |
67
  | response | Translation, label, or target text (if available) |
68
- | context | RAG context: prompt (+ response if present) |
69
- | final_answer | Ground-truth answer/target text for QA/RAG evaluation |
70
- | text | Combined view for retrieval: `[PROMPT] ...` + `[RESPONSE] ...` |
71
- | source | Original Kaggle source description |
72
- | license | License note (derived from Kaggle open datasets) |
73
- | verified | Boolean quality flag |
74
- | src_lang | Source language (if available) |
75
- | tgt_lang | Target language or label language (if applicable) |
76
- | task_type | Task type (e.g. `language_detection`, `translation`, `generic`) |
 
 
 
 
 
77
 
78
  **RAG Usage:**
79
  - Use `text` or `context` for embedding & retrieval.
80
  - Use `prompt` → `final_answer` / `response` pairs for QA or instruction tuning.
81
- - Filter by `domain`, `subdomain`, `task_type`, or languages when building indices.
82
 
83
  **License:** Derived from Kaggle open datasets (CC0 / public domain or similar).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # AskVox Language Learning Dataset
2
 
3
+ This dataset combines multiple **public Kaggle datasets** focused on multilingual text and language learning tasks.
4
 
5
+ **Included Sources (all from Kaggle v1):**
6
+ 1. English Language Learning (ELL) – writing & proficiency (ELLIPSE corpus)
7
+ 2. Language Detection (17 languages, including Hindi, Swedish, Tamil, etc.)
8
  3. Global Language Learning Popularity (2020–2023)
9
  4. Adult Language Learning Profile
10
 
 
14
  |---------------|------------------------------------------------------------------|
15
  | id | Integer identifier |
16
  | domain | High-level domain, here `"language-learning"` |
17
+ | subdomain | More specific scope, here `"multilingual/text"` |
18
+ | prompt | Input sentence or question |
19
  | response | Translation, label, or target text (if available) |
20
+ | context | RAG context: prompt (+ response or language label if present) |
21
+ | final_answer | Ground-truth answer/label for QA/RAG evaluation |
22
+ | text | Combined view for retrieval: `[PROMPT] ...` + `[RESPONSE] ...` |
23
+ | source | Original Kaggle source description |
24
+ | license | License note (derived from Kaggle open datasets) |
25
+ | verified | Boolean quality flag |
26
+ | src_lang | Source language (if available) |
27
+ | tgt_lang | Target language or label language (normalized, e.g. 'swedish') |
28
+ | task_type | Task type (`language_detection`, `translation`, `generic`, ...) |
29
+
30
+ **Notes:**
31
+ - All v1 data comes from Kaggle public datasets.
32
+ - Language labels are lightly normalized (e.g. `Sweedish` → `Swedish`).
33
+ - Hindi and other languages appear both in text and as labels where available.
34
 
35
  **RAG Usage:**
36
  - Use `text` or `context` for embedding & retrieval.
37
  - Use `prompt` → `final_answer` / `response` pairs for QA or instruction tuning.
38
+ - Filter by `domain`, `subdomain`, `task_type`, or languages (`tgt_lang`) when building indices.
39
 
40
  **License:** Derived from Kaggle open datasets (CC0 / public domain or similar).