Datasets:
File size: 1,944 Bytes
7fd9bc0 9b57b8d 7fd9bc0 9c9862d 7fd9bc0 242642b 7fd9bc0 dda86bb 7fd9bc0 9c9862d e5b7ed2 9c9862d e5b7ed2 9c9862d 242642b 9c9862d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
---
license: cc-by-nc-4.0
language:
- en
task_categories:
- text2text-generation
tags:
- vehicle-diagnostics
- automotive
- telemetry
- predictive-maintenance
- industrial-ai
pretty_name: Vehicle Diagnostic Sample Dataset
size_categories:
- n<100
---
# Vehicle Diagnostic Sample Dataset
## 🧩 Dataset Summary
This dataset contains a sample subset of structured vehicle diagnostic logs generated for various vehicle types and subsystems, such as **transmissions**, **battery systems**, **brakes**, and **engines**. Each entry includes detailed parameters such as fault codes, performance metrics, measurements, temporal trends, and maintenance recommendations.
This subset (500 examples) is meant to demonstrate the structure and potential use cases of the **full dataset** available commercially on [Gumroad](https://datadeveloper1.gumroad.com/l/oizcli) for industrial, machine learning, and predictive maintenance applications.
## 💡 Use Cases
- Train models for **fault prediction** and **diagnosis generation**
- Fine-tune text-to-text models on structured industrial reports
- Build synthetic data generators for simulation platforms
- Analyze parameter trends for **telemetry-driven maintenance planning**
## 📁 Dataset Structure
Each entry follows the structure:
```json
{
"input": "Generate comprehensive vehicle diagnostic for <vehicle> <system> system, config=<config>",
"output": "<structured diagnostic report with parameters, metrics, fault code, and recommendations>"
}
🧪 Example
{
"input": "Generate comprehensive vehicle diagnostic for commercial transmission system, config=automatic",
"output": "Diagnostic ID=17f869b8... torque=261.78 Nm... Maintenance Recommendations: filter replacement, fluid change, seal inspection"
}
📥 Loading the Dataset in Python
from datasets import load_dataset
dataset = load_dataset("cjjones/vehicle-diagnostic-sample")
print(dataset["train"][0])
|