tjw commited on
Commit
abb6072
·
verified ·
1 Parent(s): 245a56d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md CHANGED
@@ -3,6 +3,7 @@ license: other
3
  license_name: research-use
4
  license_link: https://huggingface.co/terms
5
  language:
 
6
  - zh
7
  language_bcp47:
8
  - zh-TW
@@ -15,6 +16,68 @@ task_categories:
15
  - text-generation
16
  ---
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  # MetaFLOS HMI Transcripts(製造現場人機互動對話資料集)
19
 
20
  製造現場操作員 ↔ 機台智慧助理的多輪對話資料集,Vicuna 式生成(seed 情境 → LLM 產生 transcript)。
 
3
  license_name: research-use
4
  license_link: https://huggingface.co/terms
5
  language:
6
+ - en
7
  - zh
8
  language_bcp47:
9
  - zh-TW
 
16
  - text-generation
17
  ---
18
 
19
+ # MetaFLOS HMI Transcripts (Manufacturing Human-Machine Interaction Dialogue Dataset)
20
+
21
+ Multi-turn dialogue dataset between manufacturing floor operators and machine intelligent assistants, generated in Vicuna style (seed scenario → LLM produces transcript).
22
+
23
+ ## Content
24
+
25
+ - **30 scenarios / 325 dialogue turns** (6–12 turns per scenario)
26
+ - Covers 16 domains: textile warping/weaving, LCD panels, semiconductor processes, fans/blowers, water chillers, general equipment reliability (FMEA), robot collaboration, maintenance & repair, technical document support, steel/metal, PCB, metal/fasteners, electronic components, building materials, cables, wood processing
27
+ - Dialogue arc: detect defect → diagnose cause (citing defect database) → adjust parameters (concrete values) → verify result (measurement/re-inspection)
28
+
29
+ ## Sources
30
+
31
+ | Source | # Scenarios |
32
+ |---|---|
33
+ | Self-built scenarios (Vicuna-style generation) | 10 |
34
+ | IRWOZ 2.0 / IRWoZ 1.0 (Aalborg Univ.) | 4 |
35
+ | KIDE4I (Tekniker Foundation, Industry 5.0) | 2 |
36
+ | ICNLSP 2023 industrial technical document corpus | 1 |
37
+ | NEU-DET (hot-rolled steel strip surface defects) | 3 |
38
+ | DeepPCB (PCB surface defects) | 3 |
39
+ | MVTec AD (general industrial anomalies) | 6 |
40
+ | KolektorSDD (metal surface micro-cracks) | 1 |
41
+
42
+ ## Schema (JSONL, one record per line)
43
+
44
+ ```json
45
+ {
46
+ "id": "hmi-18",
47
+ "domain": "Steel/Metal",
48
+ "machine": "Hot-rolled steel strip line",
49
+ "scenario": "Scenario description",
50
+ "source": "NEU-DET (hot-rolled steel strip surface defects)",
51
+ "transcript": [
52
+ {"role": "operator", "content": "..."},
53
+ {"role": "assistant", "content": "..."}
54
+ ],
55
+ "model": "gemma3:27b",
56
+ "ts": "2026-08-09 19:00:00"
57
+ }
58
+ ```
59
+
60
+ ## Generation Method
61
+
62
+ `scripts/gen_hmi_dataset.py`: seed scenario → ollama (gemma3:27b) generates a 6–12 turn transcript, validates roles are legal and content non-empty.
63
+
64
+ ## Privacy Protection
65
+
66
+ - **Synthetic content**: all scenarios and dialogues are LLM-generated, not real factory events or real personnel conversations.
67
+ - **No personal data**: transcripts contain no real names, phone numbers, emails, addresses, or other personally identifiable information; operators are always presented as the "operator" role.
68
+ - **No sensitive machine data**: parameter values in dialogues are synthetic scenario settings, not actual parameters of any real production line.
69
+
70
+ ## License & Copyright
71
+
72
+ - **This dataset**: **research-use**. For academic research and non-commercial use only.
73
+ - **Scenario sources**: some scenarios are adapted from public academic datasets (IRWOZ, KIDE4I, NEU-DET, DeepPCB, MVTec AD, KolektorSDD, etc.); copyright of each source belongs to its original authors, use per each source's license.
74
+ - **Generation model**: transcripts generated by gemma3:27b; comply with the Google Gemma license when using.
75
+ - **Prohibited uses**: impersonating real personnel, forging factory records, or any use violating local law.
76
+
77
+ ---
78
+
79
+ # 中文說明
80
+
81
  # MetaFLOS HMI Transcripts(製造現場人機互動對話資料集)
82
 
83
  製造現場操作員 ↔ 機台智慧助理的多輪對話資料集,Vicuna 式生成(seed 情境 → LLM 產生 transcript)。