popchain commited on
Commit
6848c1e
·
verified ·
1 Parent(s): 3c2287e

Upload 2 files

Browse files

Initial upload: sample dataset (100 rows) + README with on-chain provenance details

Files changed (2) hide show
  1. README.md +164 -3
  2. sample_100.jsonl +100 -0
README.md CHANGED
@@ -1,3 +1,164 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: proof-of-process-data-license-v1
4
+ license_link: https://popchain.tech
5
+ task_categories:
6
+ - time-series-forecasting
7
+ - text-classification
8
+ tags:
9
+ - industrial
10
+ - manufacturing
11
+ - cnc
12
+ - laser-cutting
13
+ - predictive-maintenance
14
+ - machine-logs
15
+ - real-world-data
16
+ - blockchain-verified
17
+ - proof-of-process
18
+ pretty_name: Fiber Laser CNC Machine Logs (Real Industrial Data)
19
+ size_categories:
20
+ - 1K<n<10K
21
+ language:
22
+ - en
23
+ - zh
24
+ ---
25
+
26
+ # Fiber Laser CNC Machine Logs — Real Industrial Data
27
+
28
+ **The first industrial machine dataset with on-chain cryptographic provenance.**
29
+
30
+ This dataset contains real operational logs from a **Bodor BodorThinker 3.0 fiber laser CNC cutting machine**, collected over 5 months of continuous industrial production (November 2021 – April 2022).
31
+
32
+ Unlike synthetic datasets commonly used in predictive maintenance research, this data comes from a real machine in a real factory, with every record verified on the [PopChain](https://popchain.tech) blockchain using SHA-256 hashing and WOTS+ post-quantum signatures.
33
+
34
+ ## Dataset Summary
35
+
36
+ | Metric | Value |
37
+ |--------|-------|
38
+ | Machine | Bodor BodorThinker 3.0 Fiber Laser |
39
+ | Period | Nov 2021 – Apr 2022 (5 months) |
40
+ | Original size | 52 MB (SQLite) |
41
+ | Total rows | 426,374 |
42
+ | Errors (labeled) | 12,781 |
43
+ | Warnings (labeled) | 10,332 |
44
+ | Machine states | 33 distinct |
45
+ | POP Score | 711/1000 (Grade B) |
46
+ | Blockchain proof | [PopChain Block #47243](https://popchain.tech/explorer) |
47
+ | SHA-256 | `c1fe88b22e5ca19e03172cba318f1fc208c09883095b9805a2bc2f1bec3e450c` |
48
+
49
+ ## Why This Dataset Matters
50
+
51
+ **60% of predictive maintenance ML projects fail due to poor training data.** Most available datasets are either:
52
+ - Synthetic (AI4I 2020, NASA C-MAPSS) — not representative of real failures
53
+ - Proprietary — locked inside manufacturers like Trumpf, ESAB, Bystronic
54
+ - Unlabeled — raw sensor dumps without error annotations
55
+
56
+ This dataset solves all three problems:
57
+ 1. **Real** — from a production fiber laser, not a simulation
58
+ 2. **Labeled** — 12,781 errors and 10,332 warnings with natural language descriptions
59
+ 3. **Verified** — SHA-256 hash and WOTS+ signature on PopChain blockchain prove data hasn't been tampered with
60
+
61
+ ## Data Fields
62
+
63
+ ### Events (errors & warnings)
64
+ - `type`: "error" or "warning"
65
+ - `text`: Natural language description of the event (mix of English and Chinese)
66
+ - `time`: ISO timestamp of the event
67
+
68
+ ### Features
69
+ - `feature`: Feature name (e.g., servo parameters, coolant status, axis positions)
70
+ - `distribution`: Statistical distribution of the feature
71
+
72
+ ### Machine States
73
+ - 33 distinct states including: initialization, cutting, idle, alarm, emergency stop, coolant failure, servo alarm (X/Y/Z/W axes), safety door, etc.
74
+
75
+ ## Error Categories
76
+
77
+ | Category | Count | Description |
78
+ |----------|-------|-------------|
79
+ | Servo alarms | 4,200+ | X, Y, Z, W axis servo faults |
80
+ | Coolant failures | 1,800+ | Cooling system malfunctions |
81
+ | Safety door | 900+ | Safety interlock events |
82
+ | Communication | 600+ | Controller communication errors |
83
+ | Power | 400+ | Power supply anomalies |
84
+ | Other | 4,800+ | Various operational faults |
85
+
86
+ ## Formats Available
87
+
88
+ | Format | File | Use Case |
89
+ |--------|------|----------|
90
+ | JSONL | `c1fe88b22e5ca19e.jsonl` | ML pipelines, streaming |
91
+ | CSV | `c1fe88b22e5ca19e.csv` | Pandas, Excel, SQL |
92
+ | HuggingFace JSONL | `c1fe88b22e5ca19e_hf.jsonl` | LLM fine-tuning (instruction format) |
93
+
94
+ ## Usage
95
+
96
+ ```python
97
+ from datasets import load_dataset
98
+
99
+ dataset = load_dataset("popchain/fiber-laser-cnc-logs")
100
+ ```
101
+
102
+ Or directly:
103
+
104
+ ```python
105
+ import pandas as pd
106
+
107
+ df = pd.read_csv("c1fe88b22e5ca19e.csv")
108
+ print(f"Events: {len(df)}")
109
+ print(df.head())
110
+ ```
111
+
112
+ For LLM fine-tuning:
113
+
114
+ ```python
115
+ from datasets import load_dataset
116
+
117
+ ds = load_dataset("json", data_files="c1fe88b22e5ca19e_hf.jsonl")
118
+ # Each row has: instruction, input, output
119
+ # Ready for Llama, Mistral, GPT fine-tuning
120
+ ```
121
+
122
+ ## On-Chain Provenance
123
+
124
+ This dataset has been verified on the **PopChain** blockchain — a Layer 1 blockchain built from scratch in Rust that uses Proof-of-Process consensus.
125
+
126
+ - **Chain**: PopChain Alpha Testnet
127
+ - **Block**: #47243
128
+ - **SHA-256**: `c1fe88b22e5ca19e03172cba318f1fc208c09883095b9805a2bc2f1bec3e450c`
129
+ - **Signature**: WOTS+ (post-quantum, RFC 8391)
130
+ - **Tamper-proof**: ✅ Any modification to the data would invalidate the on-chain proof
131
+
132
+ Verify on the explorer: [popchain.tech/explorer](https://popchain.tech/explorer)
133
+
134
+ ## Full Dataset & More
135
+
136
+ This is a preview. The full dataset (52MB SQLite with 426K rows) and additional machine datasets (Lincoln, Senfeng lasers) are available on the **PopChain Data Marketplace**:
137
+
138
+ 🔗 **[bomwt.io/market](https://bomwt.io/market)** — Buy with BIN on PopChain
139
+
140
+ More about PopChain:
141
+ - 🌐 [popchain.tech](https://popchain.tech) — Chain portal
142
+ - 💼 [bomwt.io](https://bomwt.io) — DEX & Wallet
143
+ - 📊 [PopChain Explorer](https://popchain.tech/explorer) — Live block explorer
144
+ - 📄 [Whitepaper](https://popchain.tech/whitepaper) — Technical documentation
145
+ - 💬 [Discord](https://discord.gg/popchain) — Community
146
+
147
+ ## Citation
148
+
149
+ ```
150
+ @dataset{popchain_fiber_laser_2026,
151
+ title={Fiber Laser CNC Machine Logs — Real Industrial Data with Blockchain Provenance},
152
+ author={Piekut, Paweł},
153
+ organization={PPlastechniek},
154
+ year={2026},
155
+ url={https://popchain.tech},
156
+ note={Verified on PopChain blockchain, block #47243}
157
+ }
158
+ ```
159
+
160
+ ## License
161
+
162
+ Proof-of-Process Data License v1 — see [popchain.tech](https://popchain.tech) for details.
163
+
164
+ Data produced by PPlastechniek, Almelo, Netherlands.
sample_100.jsonl ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"instruction": "Analyze this industrial machine event", "input": "\u5916\u63a5\u7d27\u505c\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
2
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
3
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
4
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
5
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u6b63\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
6
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
7
+ {"instruction": "Analyze this industrial machine event", "input": "\u6c34\u51b7\u673a\u62a5\u8b66\uff01", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
8
+ {"instruction": "Analyze this industrial machine event", "input": "W\u6b63\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
9
+ {"instruction": "Analyze this industrial machine event", "input": "W\u8d1f\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
10
+ {"instruction": "Analyze this industrial machine event", "input": "\u4ea4\u6362\u53f0\u672a\u5230\u4f4d\uff0c\u7981\u6b62\u52a0\u5de5\u3002", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
11
+ {"instruction": "Analyze this industrial machine event", "input": "\u5e8a\u8eab\u5df2\u91ca\u653e\uff0c\u7981\u6b62\u52a0\u5de5\u3002", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
12
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
13
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:38:54. This indicates a fault condition requiring maintenance attention."}
14
+ {"instruction": "Analyze this industrial machine event", "input": "\u5916\u63a5\u7d27\u505c\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:22. This indicates a fault condition requiring maintenance attention."}
15
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:22. This indicates a fault condition requiring maintenance attention."}
16
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:22. This indicates a fault condition requiring maintenance attention."}
17
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:22. This indicates a fault condition requiring maintenance attention."}
18
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:22. This indicates a fault condition requiring maintenance attention."}
19
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u6b63\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:22. This indicates a fault condition requiring maintenance attention."}
20
+ {"instruction": "Analyze this industrial machine event", "input": "\u6c34\u51b7\u673a\u62a5\u8b66\uff01", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:22. This indicates a fault condition requiring maintenance attention."}
21
+ {"instruction": "Analyze this industrial machine event", "input": "W\u6b63\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:23. This indicates a fault condition requiring maintenance attention."}
22
+ {"instruction": "Analyze this industrial machine event", "input": "W\u8d1f\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:23. This indicates a fault condition requiring maintenance attention."}
23
+ {"instruction": "Analyze this industrial machine event", "input": "\u4ea4\u6362\u53f0\u672a\u5230\u4f4d\uff0c\u7981\u6b62\u52a0\u5de5\u3002", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:23. This indicates a fault condition requiring maintenance attention."}
24
+ {"instruction": "Analyze this industrial machine event", "input": "\u5e8a\u8eab\u5df2\u91ca\u653e\uff0c\u7981\u6b62\u52a0\u5de5\u3002", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:23. This indicates a fault condition requiring maintenance attention."}
25
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:23. This indicates a fault condition requiring maintenance attention."}
26
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:40:23. This indicates a fault condition requiring maintenance attention."}
27
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:41:47. This indicates a fault condition requiring maintenance attention."}
28
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:02. This indicates a fault condition requiring maintenance attention."}
29
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:02. This indicates a fault condition requiring maintenance attention."}
30
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:02. This indicates a fault condition requiring maintenance attention."}
31
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:02. This indicates a fault condition requiring maintenance attention."}
32
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u6b63\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:02. This indicates a fault condition requiring maintenance attention."}
33
+ {"instruction": "Analyze this industrial machine event", "input": "\u6c34\u51b7\u673a\u62a5\u8b66\uff01", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:02. This indicates a fault condition requiring maintenance attention."}
34
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:02. This indicates a fault condition requiring maintenance attention."}
35
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:02. This indicates a fault condition requiring maintenance attention."}
36
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:47. This indicates a fault condition requiring maintenance attention."}
37
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:47. This indicates a fault condition requiring maintenance attention."}
38
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:47. This indicates a fault condition requiring maintenance attention."}
39
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:47. This indicates a fault condition requiring maintenance attention."}
40
+ {"instruction": "Analyze this industrial machine event", "input": "\u6c34\u51b7\u673a\u62a5\u8b66\uff01", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:47. This indicates a fault condition requiring maintenance attention."}
41
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u6b63\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:48. This indicates a fault condition requiring maintenance attention."}
42
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:48. This indicates a fault condition requiring maintenance attention."}
43
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:42:48. This indicates a fault condition requiring maintenance attention."}
44
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:26. This indicates a fault condition requiring maintenance attention."}
45
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:27. This indicates a fault condition requiring maintenance attention."}
46
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:27. This indicates a fault condition requiring maintenance attention."}
47
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:27. This indicates a fault condition requiring maintenance attention."}
48
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:27. This indicates a fault condition requiring maintenance attention."}
49
+ {"instruction": "Analyze this industrial machine event", "input": "\u6c34\u51b7\u673a\u62a5\u8b66\uff01", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:27. This indicates a fault condition requiring maintenance attention."}
50
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u6b63\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:27. This indicates a fault condition requiring maintenance attention."}
51
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:27. This indicates a fault condition requiring maintenance attention."}
52
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:27. This indicates a fault condition requiring maintenance attention."}
53
+ {"instruction": "Analyze this industrial machine event", "input": "\u5916\u63a5\u7d27\u505c\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:43:56. This indicates a fault condition requiring maintenance attention."}
54
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:44:13. This indicates a fault condition requiring maintenance attention."}
55
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:44:13. This indicates a fault condition requiring maintenance attention."}
56
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:44:14. This indicates a fault condition requiring maintenance attention."}
57
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:44:14. This indicates a fault condition requiring maintenance attention."}
58
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:44:16. This indicates a fault condition requiring maintenance attention."}
59
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:45:00. This indicates a fault condition requiring maintenance attention."}
60
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:47:04. This indicates a fault condition requiring maintenance attention."}
61
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:47:05. This indicates a fault condition requiring maintenance attention."}
62
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:47:05. This indicates a fault condition requiring maintenance attention."}
63
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:47:25. This indicates a fault condition requiring maintenance attention."}
64
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:47:26. This indicates a fault condition requiring maintenance attention."}
65
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:47:26. This indicates a fault condition requiring maintenance attention."}
66
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:48:13. This indicates a fault condition requiring maintenance attention."}
67
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:48:14. This indicates a fault condition requiring maintenance attention."}
68
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:48:14. This indicates a fault condition requiring maintenance attention."}
69
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u6b63\u5411\u9650\u4f4d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:49:22. This indicates a fault condition requiring maintenance attention."}
70
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:51:59. This indicates a fault condition requiring maintenance attention."}
71
+ {"instruction": "Analyze this industrial machine event", "input": "\u9f99\u95e8\u8f74\u4f4d\u7f6e\u504f\u5dee\u5927\u4e8e\u52a8\u6001\u5141\u5dee", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:51:59. This indicates a fault condition requiring maintenance attention."}
72
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:52:36. This indicates a fault condition requiring maintenance attention."}
73
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:52:36. This indicates a fault condition requiring maintenance attention."}
74
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:52:36. This indicates a fault condition requiring maintenance attention."}
75
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:53:43. This indicates a fault condition requiring maintenance attention."}
76
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:53:44. This indicates a fault condition requiring maintenance attention."}
77
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:53:44. This indicates a fault condition requiring maintenance attention."}
78
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:55:51. This indicates a fault condition requiring maintenance attention."}
79
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:55:52. This indicates a fault condition requiring maintenance attention."}
80
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-05 18:55:52. This indicates a fault condition requiring maintenance attention."}
81
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:32:07. This indicates a fault condition requiring maintenance attention."}
82
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:32:07. This indicates a fault condition requiring maintenance attention."}
83
+ {"instruction": "Analyze this industrial machine event", "input": "\u5916\u63a5\u7d27\u505c\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:32:07. This indicates a fault condition requiring maintenance attention."}
84
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:32:07. This indicates a fault condition requiring maintenance attention."}
85
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:32:07. This indicates a fault condition requiring maintenance attention."}
86
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:32:07. This indicates a fault condition requiring maintenance attention."}
87
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:32:08. This indicates a fault condition requiring maintenance attention."}
88
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:32:08. This indicates a fault condition requiring maintenance attention."}
89
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:33:38. This indicates a fault condition requiring maintenance attention."}
90
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:33:38. This indicates a fault condition requiring maintenance attention."}
91
+ {"instruction": "Analyze this industrial machine event", "input": "\u5916\u63a5\u7d27\u505c\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:33:38. This indicates a fault condition requiring maintenance attention."}
92
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:33:38. This indicates a fault condition requiring maintenance attention."}
93
+ {"instruction": "Analyze this industrial machine event", "input": "Z\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:33:38. This indicates a fault condition requiring maintenance attention."}
94
+ {"instruction": "Analyze this industrial machine event", "input": "X2\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:33:38. This indicates a fault condition requiring maintenance attention."}
95
+ {"instruction": "Analyze this industrial machine event", "input": "\u78b0\u677f\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:33:39. This indicates a fault condition requiring maintenance attention."}
96
+ {"instruction": "Analyze this industrial machine event", "input": "\u968f\u52a8\u672a\u6807\u5b9a", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:33:39. This indicates a fault condition requiring maintenance attention."}
97
+ {"instruction": "Analyze this industrial machine event", "input": "\u7aef\u53e3\u4fdd\u62a4\u6587\u4ef6\u9519\u8bef\uff0c\u914d\u7f6e\u4e86\u65e0\u6548\u7684\u903b\u8f91\u7aef\u53e3: Phoenix.G.Blow.SwitchOfAir", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:37:19. This indicates a fault condition requiring maintenance attention."}
98
+ {"instruction": "Analyze this industrial machine event", "input": "\u5916\u63a5\u7d27\u505c\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:37:20. This indicates a fault condition requiring maintenance attention."}
99
+ {"instruction": "Analyze this industrial machine event", "input": "X\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:37:20. This indicates a fault condition requiring maintenance attention."}
100
+ {"instruction": "Analyze this industrial machine event", "input": "Y\u8f74\u4f3a\u670d\u62a5\u8b66", "output": "This is an error event from a industrial machine. Severity: error. Timestamp: 2021-11-06 08:37:20. This indicates a fault condition requiring maintenance attention."}