nick007x commited on
Commit
f7f7015
·
verified ·
1 Parent(s): 498a095

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +161 -3
README.md CHANGED
@@ -1,3 +1,161 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - question-answering
5
+ - text-generation
6
+ language:
7
+ - en
8
+ pretty_name: d
9
+ ---
10
+
11
+ # EEVblog Forum Dataset
12
+
13
+ A comprehensive collection of technical discussions from the EEVblog electronics engineering community, providing rich conversational data for AI training and research.
14
+
15
+ ## Dataset Details
16
+
17
+ - **Total Posts**: 206,756
18
+ - **Total Threads**: ~20,000
19
+ - **Time Span**: 2009 - 2025
20
+ - **Average Posts per Thread**: 10.3
21
+ - **Format**: JSON Lines (.jsonl)
22
+
23
+ ## Content Overview
24
+
25
+ This dataset contains complete forum threads from EEVblog, featuring:
26
+
27
+ - **Technical discussions** across 15+ electronics domains
28
+ - **Multi-turn conversations** with expert responses
29
+ - **Rich metadata** including author expertise levels
30
+ - **Practical problem-solving** workflows
31
+ - **Real-world engineering** challenges and solutions
32
+
33
+ ## Data Schema
34
+
35
+ Each line contains a complete forum thread:
36
+
37
+ ```json
38
+ {
39
+ "url": "https://www.eevblog.com/forum/repair/help-needed/",
40
+ "thread_title": "Help with Amplifier Repair",
41
+ "posts": [
42
+ {
43
+ "author": "username",
44
+ "author_rank": "Super Contributor",
45
+ "is_op": true,
46
+ "timestamp": "November 23, 2020, 01:26:32 pm",
47
+ "content": "Detailed technical question..."
48
+ }
49
+ ],
50
+ "scraped_at": "2025-10-18T02:35:38.244598",
51
+ "post_count": 10,
52
+ "domain": "electronics",
53
+ "subdomain": "repair",
54
+ "has_op_post": true
55
+ }
56
+ ```
57
+
58
+ ## Forum Categories
59
+
60
+ ### Technical Domains
61
+ - **beginners** - Fundamental electronics concepts
62
+ - **repair** - Device troubleshooting and diagnostics
63
+ - **projects** - DIY electronics builds
64
+ - **rf-microwave** - High-frequency circuit design
65
+ - **testgear** - Instrumentation and measurement
66
+ - **altium** - PCB design workflows
67
+ - **metrology** - Precision measurement
68
+ - **pcb/eda** - Layout and manufacturing
69
+
70
+ ### Community Areas
71
+ - **blog** - EEVblog announcements
72
+ - **chat** - General technical discussions
73
+ - **security** - Electronic security systems
74
+
75
+ ## Intended Uses
76
+
77
+ ### 🤖 AI Training
78
+ - Technical conversational agents
79
+ - Electronics troubleshooting assistants
80
+ - Educational tutoring systems
81
+ - Multi-turn dialogue training
82
+
83
+ ### 🔬 Research
84
+ - Domain-specific NLP
85
+ - Expert knowledge modeling
86
+ - Community interaction analysis
87
+ - Technical entity recognition
88
+
89
+ ### 🛠️ Applications
90
+ - Electronics design assistants
91
+ - Repair diagnostic tools
92
+ - Engineering education platforms
93
+ - Technical support automation
94
+
95
+ ## Usage Examples
96
+
97
+ ```python
98
+ from datasets import load_dataset
99
+
100
+ # Load the dataset
101
+ dataset = load_dataset("nick007x/eevblog-forum-data")
102
+
103
+ # Access repair discussions
104
+ repair_threads = [x for x in dataset if x["subdomain"] == "repair"]
105
+
106
+ # Extract problem-solution pairs
107
+ for thread in repair_threads[:5]:
108
+ problem = thread["posts"][0]["content"]
109
+ solutions = [post["content"] for post in thread["posts"][1:]]
110
+ print(f"Problem: {problem[:100]}...")
111
+ print(f"Solutions: {len(solutions)}")
112
+ ```
113
+
114
+ ## Dataset Statistics
115
+
116
+ | Metric | Value |
117
+ |--------|-------|
118
+ | Total posts | 206,756 |
119
+ | Total threads | ~20,000 |
120
+ | Average posts per thread | 10.3 |
121
+ | Date range | 2009-2025 |
122
+ | Subdomains | 15+ |
123
+ | Author ranks | 5 levels |
124
+
125
+ ## Data Quality
126
+
127
+ - **Complete threads** with full conversation context
128
+ - **Expertise indicators** through author ranking system
129
+ - **Temporal sequencing** preserved
130
+ - **Domain categorization** for focused training
131
+ - **Real-world relevance** with practical engineering content
132
+
133
+ ## License
134
+
135
+ This dataset is distributed under the **MIT License**.
136
+
137
+ ## Source
138
+
139
+ Original data collected from EEVblog Forum (https://www.eevblog.com/forum/) with respect to their robots.txt guidelines.
140
+
141
+ ## Citation
142
+
143
+ If you use this dataset in your research, please cite:
144
+
145
+ ```bibtex
146
+ @dataset{eevblog_forum_2025,
147
+ title = {EEVblog Forum Electronics Discussions},
148
+ author = {EEVblog Community},
149
+ year = {2025},
150
+ publisher = {Hugging Face},
151
+ url = {https://huggingface.co/datasets/nick007x/eevblog-forum-data}
152
+ }
153
+ ```
154
+
155
+ ## Updates
156
+
157
+ This dataset represents a snapshot as of October 2025. Future versions may include additional data and schema improvements.
158
+
159
+ ---
160
+
161
+ This dataset provides valuable training data for building AI systems that understand electronics engineering concepts and can engage in technical conversations.