skyzhou06 commited on
Commit
38e7204
·
verified ·
1 Parent(s): 917a32e

Add real MultiWOZ 2.2 and Taskmaster data with improved quality pipeline

Browse files
Files changed (5) hide show
  1. .gitattributes +2 -0
  2. README.md +62 -0
  3. dataset_info.json +47 -0
  4. eval.jsonl +3 -0
  5. train.jsonl +3 -0
.gitattributes CHANGED
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ eval.jsonl filter=lfs diff=lfs merge=lfs -text
62
+ train.jsonl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: LifeMultiTurnStreamingCoT
3
+ language:
4
+ - en
5
+ license: apache-2.0
6
+ version: "v0.1"
7
+ task_categories:
8
+ - text-generation
9
+ tags:
10
+ - streaming-reasoning
11
+ - rule-based-reasoning
12
+ - multi-turn-dialogue
13
+ - life-assistant
14
+ - supervised-fine-tuning
15
+ configs:
16
+ - config_name: default
17
+ data_files:
18
+ - split: train
19
+ path: train.jsonl
20
+ - split: test
21
+ path: eval.jsonl
22
+ ---
23
+ # LifeMultiTurnStreamingCoT
24
+
25
+ LifeMultiTurnStreamingCoT is a text-to-text multi-turn life-domain dataset. Each row uses previous user-assistant dialogue turns as input, deterministic turn-level streaming state tracking as intermediate supervision, a compact final-state-based deep reasoning summary, and the next assistant turn as the answer.
26
+
27
+ This version adds real task-oriented multi-turn dialogue data from MultiWOZ 2.2 and Taskmaster, alongside the existing DailyDialog source. The quality pipeline was upgraded with source-aware metadata, real-data checks, multi-turn validation, placeholder filtering, length checks, role-alternation checks, and task-oriented reasoning templates for slot/constraint tracking.
28
+
29
+ ## Current Demo/Build Statistics
30
+
31
+ - Version: v0.1
32
+ - Total rows: 30000
33
+ - Train rows: 24215
34
+ - Eval rows: 5785
35
+ - High-quality train rows: 15283
36
+ - High-quality eval rows: 3669
37
+ - Average input turns: 9.706
38
+ - Average streaming chunks: 9.706
39
+ - Source distribution: {"DailyDialog": 10000, "MultiWOZ": 10000, "Taskmaster": 10000}
40
+ - Category distribution: {"daily_dialogue": 10000, "task_oriented_dialogue": 20000}
41
+
42
+ ## Sources
43
+
44
+ - DailyDialog: daily multi-turn dialogue.
45
+ - MultiWOZ 2.2: multi-domain task-oriented dialogue.
46
+ - Taskmaster: real task-oriented dialogue from Taskmaster conversations.
47
+
48
+ ## Schema
49
+
50
+ Rows contain `id`, `source_dataset`, `source_id`, `dialogue_id`, `domain`, `task_type`, `dialogue_history`, `streaming_chunks`, `deep_reasoning`, `answer`, `metadata`, `quality_flags`, `quality_score`, `is_high_quality`, and `split`. The final schema remains unified across sources; source-specific details such as source, category, domain/services, scenario, original split, and raw file are kept in `metadata`.
51
+
52
+ ## Reasoning
53
+
54
+ Streaming reasoning is generated by deterministic rule-based state tracking over turn-level chunks. DailyDialog rows focus on daily intent, tone, and continuity. MultiWOZ and Taskmaster rows use task-oriented templates for goal, known constraints, missing information, scenario/domain, and next-step policy. Deep reasoning is a compact global summary from the final tracked state, dialogue history, and target answer. The answer is not rewritten by default; it comes from the original next assistant turn.
55
+
56
+ ## Quality
57
+
58
+ `quality_flags` and `metadata.quality_checks` support filtering by real-source status, multi-turn context, non-empty reasoning, placeholder detection, length checks, and role alternation. Raw external data is not committed to git; processed train/eval files are intended for upload to `skyzhou06/LifeMultiTurnStreamingCoT`.
59
+
60
+ ## Leakage Control
61
+
62
+ Train/eval splitting is performed by `dialogue_id`, so prefix samples from the same dialogue do not appear in both splits.
dataset_info.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "avg_num_chunks": 9.706,
3
+ "avg_num_turns": 9.706,
4
+ "category_distribution": {
5
+ "daily_dialogue": 10000,
6
+ "task_oriented_dialogue": 20000
7
+ },
8
+ "dataset_name": "LifeMultiTurnStreamingCoT",
9
+ "domain_distribution": {
10
+ "cooking": 1027,
11
+ "customer_service": 192,
12
+ "daily_advice": 726,
13
+ "emotional_support": 131,
14
+ "fitness": 226,
15
+ "health_routine": 221,
16
+ "home": 535,
17
+ "other_life": 2584,
18
+ "personal_finance": 135,
19
+ "schedule": 2908,
20
+ "shopping": 1321,
21
+ "social_planning": 409,
22
+ "study": 1053,
23
+ "travel": 18532
24
+ },
25
+ "eval_rows": 5785,
26
+ "high_quality_eval_rows": 3669,
27
+ "high_quality_train_rows": 15283,
28
+ "quality_flag_distribution": {
29
+ "answer_not_grounded": 1292,
30
+ "generic_answer": 333,
31
+ "premature_respond": 4690,
32
+ "repeated_turns": 4260,
33
+ "target_leakage": 176,
34
+ "too_many_turns": 23590,
35
+ "too_short_average_turn": 10026,
36
+ "weak_final_state": 8627,
37
+ "weak_target_answer": 2756
38
+ },
39
+ "source_distribution": {
40
+ "DailyDialog": 10000,
41
+ "MultiWOZ": 10000,
42
+ "Taskmaster": 10000
43
+ },
44
+ "total_rows": 30000,
45
+ "train_rows": 24215,
46
+ "version": "v0.1"
47
+ }
eval.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:447abae3d3c5171a12d3d0e6019480b2d016f6977ad150078a8536a0153b00f0
3
+ size 74942131
train.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ec18e01605bf2580269e854d8491572ae04db0fcf624841233672660b95e9ad
3
+ size 316073168