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

Improve category taxonomy and quality flags

Browse files
Files changed (4) hide show
  1. README.md +20 -4
  2. dataset_info.json +66 -5
  3. eval.jsonl +2 -2
  4. train.jsonl +2 -2
README.md CHANGED
@@ -32,11 +32,15 @@ This version adds real task-oriented multi-turn dialogue data from MultiWOZ 2.2
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
@@ -49,13 +53,25 @@ This version adds real task-oriented multi-turn dialogue data from MultiWOZ 2.2
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
 
 
32
  - Total rows: 30000
33
  - Train rows: 24215
34
  - Eval rows: 5785
35
+ - High-quality train rows: 20653
36
+ - High-quality eval rows: 4899
37
  - Average input turns: 9.706
38
  - Average streaming chunks: 9.706
39
  - Source distribution: {"DailyDialog": 10000, "MultiWOZ": 10000, "Taskmaster": 10000}
40
+ - Domain category distribution: {"customer_service": 204, "education_career": 2287, "finance_business": 180, "food_dining": 1263, "general_daily_life": 2879, "health_wellness": 220, "home_services": 227, "hospitality_lodging": 404, "personal_schedule": 683, "shopping_retail": 530, "social_relationship": 1986, "technology_support": 195, "travel_transportation": 18942}
41
+ - Intent category distribution: {"booking_or_reservation": 15759, "confirmation_clarification": 2710, "customer_support": 1241, "emotional_support": 232, "information_request": 6236, "instruction_following": 26, "negotiation_decision": 139, "planning_coordination": 1461, "problem_solving": 445, "recommendation": 739, "small_talk": 1012}
42
+ - Scenario category distribution: {"attraction_search": 455, "banking_support": 212, "customer_complaint": 218, "family_conversation": 603, "flight_booking": 9926, "food_ordering": 18, "friend_conversation": 459, "general_conversation": 3288, "home_repair": 97, "hotel_booking": 1557, "hotel_search": 184, "insurance_support": 95, "job_interview": 104, "medical_assistance": 290, "movie_ticketing": 218, "music_search": 141, "restaurant_booking": 1890, "restaurant_search": 819, "schedule_planning": 642, "school_life": 854, "shopping_assistance": 395, "taxi_booking": 1106, "technical_support": 460, "train_booking": 4317, "travel_planning": 252, "workplace_conversation": 1400}
43
+ - Unknown/other taxonomy ratio: 0.0
44
  - Category distribution: {"daily_dialogue": 10000, "task_oriented_dialogue": 20000}
45
 
46
  ## Sources
 
53
 
54
  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`.
55
 
56
+ ## Category Taxonomy
57
+
58
+ Each sample includes a coarse `metadata.category` and three additional taxonomy fields:
59
+
60
+ - `metadata.domain_category`: broad topic/domain such as travel, dining, lodging, entertainment, health, education, work, shopping, or general daily life.
61
+ - `metadata.intent_category`: interaction intent such as information request, recommendation, booking, planning, customer support, small talk, or emotional support.
62
+ - `metadata.scenario_category`: more specific scenario such as restaurant booking, hotel search, taxi booking, train booking, food ordering, movie ticketing, schedule planning, or workplace conversation.
63
+
64
+ The taxonomy is deterministic and source-aware. MultiWOZ uses domain/service annotations, Taskmaster uses scenario/file metadata when available, and DailyDialog uses lightweight keyword and dialogue-pattern rules.
65
+
66
  ## Reasoning
67
 
68
  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.
69
 
70
+ ## Quality Filtering
71
+
72
+ The quality checks are category-aware. Long task-oriented conversations are no longer penalized in the same way as short daily dialogues. Some heuristic checks, including weak final state and premature response detection, are kept as diagnostic warnings rather than hard filters.
73
 
74
+ `quality_flags` and `metadata.quality_checks` support filtering by real-source status, multi-turn context, non-empty reasoning, placeholder detection, category-aware length checks, malformed-row checks, repetition checks, and role alternation. Raw external data is not committed to git; processed train/eval files are intended for upload to `skyzhou06/LifeMultiTurnStreamingCoT`.
75
 
76
  ## Leakage Control
77
 
dataset_info.json CHANGED
@@ -6,6 +6,21 @@
6
  "task_oriented_dialogue": 20000
7
  },
8
  "dataset_name": "LifeMultiTurnStreamingCoT",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  "domain_distribution": {
10
  "cooking": 1027,
11
  "customer_service": 192,
@@ -23,19 +38,64 @@
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,
@@ -43,5 +103,6 @@
43
  },
44
  "total_rows": 30000,
45
  "train_rows": 24215,
 
46
  "version": "v0.1"
47
  }
 
6
  "task_oriented_dialogue": 20000
7
  },
8
  "dataset_name": "LifeMultiTurnStreamingCoT",
9
+ "domain_category_distribution": {
10
+ "customer_service": 204,
11
+ "education_career": 2287,
12
+ "finance_business": 180,
13
+ "food_dining": 1263,
14
+ "general_daily_life": 2879,
15
+ "health_wellness": 220,
16
+ "home_services": 227,
17
+ "hospitality_lodging": 404,
18
+ "personal_schedule": 683,
19
+ "shopping_retail": 530,
20
+ "social_relationship": 1986,
21
+ "technology_support": 195,
22
+ "travel_transportation": 18942
23
+ },
24
  "domain_distribution": {
25
  "cooking": 1027,
26
  "customer_service": 192,
 
38
  "travel": 18532
39
  },
40
  "eval_rows": 5785,
41
+ "high_quality_eval_rows": 4899,
42
+ "high_quality_percentage": 0.8517,
43
+ "high_quality_rows": 25552,
44
+ "high_quality_train_rows": 20653,
45
+ "intent_category_distribution": {
46
+ "booking_or_reservation": 15759,
47
+ "confirmation_clarification": 2710,
48
+ "customer_support": 1241,
49
+ "emotional_support": 232,
50
+ "information_request": 6236,
51
+ "instruction_following": 26,
52
+ "negotiation_decision": 139,
53
+ "planning_coordination": 1461,
54
+ "problem_solving": 445,
55
+ "recommendation": 739,
56
+ "small_talk": 1012
57
+ },
58
  "quality_flag_distribution": {
59
  "answer_not_grounded": 1292,
60
+ "deep_reasoning_too_long": 1,
61
+ "excessive_repetition": 442,
62
  "generic_answer": 333,
63
  "premature_respond": 4690,
64
+ "repeated_turns": 442,
65
  "target_leakage": 176,
66
+ "too_many_turns": 262,
67
+ "too_short_average_turn": 8,
68
  "weak_final_state": 8627,
69
  "weak_target_answer": 2756
70
  },
71
+ "scenario_category_distribution": {
72
+ "attraction_search": 455,
73
+ "banking_support": 212,
74
+ "customer_complaint": 218,
75
+ "family_conversation": 603,
76
+ "flight_booking": 9926,
77
+ "food_ordering": 18,
78
+ "friend_conversation": 459,
79
+ "general_conversation": 3288,
80
+ "home_repair": 97,
81
+ "hotel_booking": 1557,
82
+ "hotel_search": 184,
83
+ "insurance_support": 95,
84
+ "job_interview": 104,
85
+ "medical_assistance": 290,
86
+ "movie_ticketing": 218,
87
+ "music_search": 141,
88
+ "restaurant_booking": 1890,
89
+ "restaurant_search": 819,
90
+ "schedule_planning": 642,
91
+ "school_life": 854,
92
+ "shopping_assistance": 395,
93
+ "taxi_booking": 1106,
94
+ "technical_support": 460,
95
+ "train_booking": 4317,
96
+ "travel_planning": 252,
97
+ "workplace_conversation": 1400
98
+ },
99
  "source_distribution": {
100
  "DailyDialog": 10000,
101
  "MultiWOZ": 10000,
 
103
  },
104
  "total_rows": 30000,
105
  "train_rows": 24215,
106
+ "unknown_other_ratio": 0.0,
107
  "version": "v0.1"
108
  }
eval.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:447abae3d3c5171a12d3d0e6019480b2d016f6977ad150078a8536a0153b00f0
3
- size 74942131
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcdd49b0e1a177ea2f5d321c3eb358a6ca7cedb178c18a53119a7f8f0e1328b3
3
+ size 82708681
train.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7ec18e01605bf2580269e854d8491572ae04db0fcf624841233672660b95e9ad
3
- size 316073168
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec644e4690c4aa89f309dc77f80920c895b907237bb049691a6b76d5f3c4b0ab
3
+ size 348843497