gedeonmate commited on
Commit
647127e
·
verified ·
1 Parent(s): 7632701

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md CHANGED
@@ -1,3 +1,45 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # LLM-Generated Hungarian Conversations
6
+
7
+ This dataset contains structured Hungarian conversations generated with multiple large language model families for the study **“Efficient ASR Training with Conversations that Never Happened.”** Paper: [arXiv link](https://arxiv.org/abs/2606.03957v1)
8
+
9
+ Each model is provided as a separate Parquet file. The dataset contains the generated textual conversations and associated scenario and participant metadata; it does not contain synthesized audio.
10
+
11
+ ## Dataset structure
12
+
13
+ Each row corresponds to one sentence within a conversational turn.
14
+
15
+ | Field | Description |
16
+ |---|---|
17
+ | `conv_id` | Unique conversation identifier |
18
+ | `turn_id` | Turn index within the conversation |
19
+ | `speaker` | Speaker identifier (`speaker_1` or `speaker_2`) |
20
+ | `source_file` | Original generated text-file name |
21
+ | `topic_id` | Topic identifier |
22
+ | `scenario_id` | Scenario index |
23
+ | `topic` | Conversation topic |
24
+ | `participant` | Participant metadata, including age, gender, and occupation |
25
+ | `interviewer` | Interviewer metadata, including age, gender, and role |
26
+ | `sentence_id` | Sentence index within the turn |
27
+ | `text` | Hungarian sentence text |
28
+
29
+ Rows sharing the same `conv_id` belong to the same conversation. Sentences should be ordered by `turn_id` and then by `sentence_id`.
30
+
31
+ ## Citation
32
+
33
+ When using this dataset, please cite the associated paper:
34
+
35
+ ```bibtex
36
+ @misc{gedeon2026efficientasrtrainingconversations,
37
+ title={Efficient ASR Training with Conversations that Never Happened},
38
+ author={Máté Gedeon and Péter Mihajlik},
39
+ year={2026},
40
+ eprint={2606.03957},
41
+ archivePrefix={arXiv},
42
+ primaryClass={cs.CL},
43
+ url={https://arxiv.org/abs/2606.03957},
44
+ }
45
+ ```