Dudeman523 commited on
Commit
b00fcd7
·
verified ·
1 Parent(s): 82b52cb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +183 -3
README.md CHANGED
@@ -1,3 +1,183 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ # RustBusters Laser Cleaning QA Dataset
5
+
6
+ The RustBusters Laser Cleaning QA dataset contains 3,000 synthetic question-answer pairs designed for training a customer service assistant for RustBustersHSV, a laser cleaning and resurfacing company in Huntsville, Alabama.
7
+
8
+ ## Dataset Description
9
+
10
+ - **Repository:** https://huggingface.co/datasets/RustBustersHSV/laser-cleaning-qa
11
+ - **Language:** English
12
+ - **Format:** JSONL (JSON Lines)
13
+ - **Size:** 3,000 QA pairs
14
+ - **Creation Date:** 2025
15
+ - **License:** MIT
16
+
17
+ ### Dataset Summary
18
+
19
+ This dataset consists of synthetically generated question-answer pairs designed to train a customer service assistant for a laser cleaning business. The questions cover various aspects of laser cleaning services, from general inquiries to technical specifications. The answers are crafted to be warm, informative, and to guide potential customers toward requesting a free quote.
20
+
21
+ ## Dataset Creation
22
+
23
+ ### Curation Rationale
24
+
25
+ The dataset was created to fine-tune a language model for specialized customer service interactions in the laser cleaning industry. The goal was to generate a comprehensive set of questions and answers that cover the most common customer inquiries, concerns, and information needs related to laser cleaning services.
26
+
27
+ ### Source Data
28
+
29
+ The dataset was synthetically generated using template-based techniques. No real customer data was used in its creation, ensuring privacy and confidentiality.
30
+
31
+ #### Initial Data Collection and Normalization
32
+
33
+ Base prompts were manually created for seven key categories relevant to laser cleaning services:
34
+
35
+ 1. General inquiries
36
+ 2. Service-specific questions
37
+ 3. Logistics and location information
38
+ 4. Process details
39
+ 5. Concerns and objections
40
+ 6. Customer experience
41
+ 7. Technical aspects
42
+
43
+ These base prompts were then expanded using:
44
+ - Various prefix templates (e.g., "Tell me about", "I want to know more about")
45
+ - Suffix variations (e.g., "?", " in detail?", " for my project?")
46
+ - Category-specific response templates with variable slots
47
+
48
+ #### Who Generated the Data
49
+
50
+ The data was programmatically generated using the template approach described above, with templates designed by RustBustersHSV staff to accurately represent their services and customer interactions.
51
+
52
+ ### Data Structure and Format
53
+
54
+ The dataset is provided in JSONL (JSON Lines) format, with each line containing a single QA pair with metadata:
55
+
56
+ ```json
57
+ {
58
+ "instruction": "What is laser cleaning and how does it work?",
59
+ "response": "Laser cleaning uses focused light energy to remove contaminants from surfaces without chemicals or abrasives. The laser vaporizes unwanted materials while preserving the base material. It's precise, environmentally friendly, and doesn't damage the underlying material. We'd be happy to provide a free quote for your specific project!",
60
+ "metadata": {
61
+ "source_prompt": "What is laser cleaning and how does it work?",
62
+ "category": "general_inquiries"
63
+ }
64
+ }
65
+ ```
66
+
67
+ #### Data Fields
68
+
69
+ - **instruction**: The customer question or query
70
+ - **response**: The assistant's answer to the question
71
+ - **metadata**: Additional information about the QA pair
72
+ - **source_prompt**: The original prompt used to generate this QA pair
73
+ - **category**: The category of the question (e.g., "general_inquiries", "service_specific", etc.)
74
+
75
+ ### Data Statistics
76
+
77
+ The dataset contains 3,000 QA pairs distributed across seven categories:
78
+
79
+ | Category | Approximate Count | Description |
80
+ |----------|------------------|-------------|
81
+ | general_inquiries | ~450 | Basic questions about laser cleaning |
82
+ | service_specific | ~450 | Questions about specific cleaning services |
83
+ | logistics_location | ~450 | Questions about location, hours, and service area |
84
+ | process_details | ~450 | Questions about the laser cleaning process |
85
+ | concerns_objections | ~450 | Questions addressing common concerns |
86
+ | customer_experience | ~450 | Questions about what to expect as a customer |
87
+ | technical_aspects | ~300 | Technical questions about laser technology |
88
+
89
+ #### Example Entries
90
+
91
+ **Example 1: General Inquiry**
92
+ ```json
93
+ {
94
+ "instruction": "What is laser cleaning and how does it work?",
95
+ "response": "Laser cleaning uses focused light energy to remove rust from surfaces without chemicals or abrasives. The laser vaporizes unwanted materials while preserving the base material. It's precise, environmentally friendly, and suitable for delicate items. We'd be happy to provide a free quote for your specific cleaning needs!",
96
+ "metadata": {
97
+ "source_prompt": "What is laser cleaning and how does it work?",
98
+ "category": "general_inquiries"
99
+ }
100
+ }
101
+ ```
102
+
103
+ **Example 2: Service Specific**
104
+ ```json
105
+ {
106
+ "instruction": "How long does laser cleaning typically take for a car wheel?",
107
+ "response": "For automotive parts, our laser cleaning process is particularly effective. It removes the rust while preserving the base material. The process typically takes as little as 30 minutes depending on the size and condition. We'd be happy to assess your specific needs and provide a personalized quote!",
108
+ "metadata": {
109
+ "source_prompt": "How long does laser cleaning typically take for a car wheel?",
110
+ "category": "service_specific"
111
+ }
112
+ }
113
+ ```
114
+
115
+ **Example 3: Technical Aspect**
116
+ ```json
117
+ {
118
+ "instruction": "What type of laser do you use for cleaning?",
119
+ "response": "Our fiber laser system operates at specified wavelengths, which allows for selective material removal. This technology eliminates the need for chemicals or abrasives compared to conventional methods. It's particularly effective for automotive restoration because of its precision. We'd be happy to discuss the technical specifications during a free consultation!",
120
+ "metadata": {
121
+ "source_prompt": "What type of laser do you use for cleaning?",
122
+ "category": "technical_aspects"
123
+ }
124
+ }
125
+ ```
126
+
127
+ ## Intended Uses
128
+
129
+ This dataset is primarily intended for:
130
+
131
+ 1. Fine-tuning language models to serve as customer service assistants for laser cleaning businesses
132
+ 2. Training conversational agents specializing in industrial cleaning services
133
+ 3. Educational purposes for understanding customer service interactions in specialized technical fields
134
+ 4. Research into domain-specific language adaptation
135
+
136
+ ### Considerations for Using the Data
137
+
138
+ - The dataset is specifically designed for the laser cleaning industry and may not transfer well to other domains
139
+ - All responses guide customers toward requesting quotes, which may not be appropriate for all use cases
140
+ - The synthetic nature of the data means it may not capture the full diversity of real customer inquiries
141
+ - The responses present laser cleaning in a positive light and may not adequately address all potential drawbacks
142
+
143
+ ## Dataset Creation Method
144
+
145
+ The dataset was created using a template-based approach with randomized variations:
146
+
147
+ 1. **Base Templates**: Each category had several core question templates and response templates
148
+ 2. **Response Components**: Variable components like "benefit1", "contaminant", or "process_detail1" had multiple possible values
149
+ 3. **Template Filling**: For each QA pair, a template was selected and variables were filled with random but contextually appropriate values
150
+ 4. **Prefix/Suffix Variations**: Questions were further diversified using prefixes and suffixes
151
+
152
+ Example template:
153
+ ```
154
+ "Laser cleaning uses focused light energy to remove {contaminant} from surfaces without chemicals or abrasives. The laser {action} unwanted materials while preserving the base material. It's {benefit1}, {benefit2}, and {benefit3}. We'd be happy to provide a free quote for your specific cleaning needs!"
155
+ ```
156
+
157
+ Where variables like `{contaminant}` would be replaced with values from predefined lists (e.g., "rust", "paint", "oxidation").
158
+
159
+ ## Dataset Citation
160
+
161
+ ```
162
+ @misc{rustbusters_laser_cleaning_dataset,
163
+ title = {RustBusters Laser Cleaning QA Dataset},
164
+ author = {RustBustersHSV},
165
+ year = {2025},
166
+ publisher = {Hugging Face},
167
+ journal = {Hugging Face Dataset Repository},
168
+ howpublished = {\url{https://huggingface.co/datasets/RustBustersHSV/laser-cleaning-qa}},
169
+ license = {MIT}
170
+ }
171
+ ```
172
+
173
+ ## Dataset Curators
174
+
175
+ This dataset was created by RustBustersHSV to support the development of their customer service AI assistant.
176
+
177
+ ## Licensing Information
178
+
179
+ This dataset is licensed under the MIT License, which allows for both commercial and non-commercial use, modification, distribution, and private use, provided that the original copyright and permission notice is included in all copies or substantial portions of the dataset.
180
+
181
+ ## Contributions
182
+
183
+ Thanks to the team at RustBustersHSV for developing the templates and domain expertise that made this dataset possible.