Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# DevOps Q&A Dataset Summary
|
| 2 |
+
|
| 3 |
+
**Generated on:** 2026-01-17
|
| 4 |
+
**Version:** 2.1 Final
|
| 5 |
+
|
| 6 |
+
## 📊 Overview
|
| 7 |
+
Based on user requirements, we have collected, validated, and deduplicated a high-quality dataset of DevOps Questions & Answers.
|
| 8 |
+
|
| 9 |
+
| Metric | Value |
|
| 10 |
+
|:--- |:--- |
|
| 11 |
+
| **Total Unique Items** | **7,219** |
|
| 12 |
+
| **Primary Source** | GitHub Repositories (Advanced Search) |
|
| 13 |
+
| **Secondary Source** | Official Documentation (Docker, K8s, etc.) |
|
| 14 |
+
| **Average Quality Score** | ~0.81 |
|
| 15 |
+
| **Deduplication** | Exact (MD5) + Semantic (BGE-Small) |
|
| 16 |
+
|
| 17 |
+
## 📁 File Manifest
|
| 18 |
+
All files are located in `/opt/Data set/output/`:
|
| 19 |
+
|
| 20 |
+
* `devops_dataset.jsonl` - Main dataset (JSON Lines).
|
| 21 |
+
* `devops_dataset.parquet` - Optimized Parquet format for pandas/polars.
|
| 22 |
+
* `dataset_metadata.json` - Technical metadata (last run stats).
|
| 23 |
+
|
| 24 |
+
## 🧩 Data Composition
|
| 25 |
+
The dataset covers a wide range of DevOps topics, including but not limited to:
|
| 26 |
+
* **Kubernetes:** Troubleshooting, Configs, Best Practices.
|
| 27 |
+
* **Docker:** Composition, Optimization, Security.
|
| 28 |
+
* **IaC:** Terraform, Ansible, Pulumi.
|
| 29 |
+
* **CI/CD:** GitHub Actions, GitLab CI, Jenkins.
|
| 30 |
+
* **Monitoring:** Prometheus, Grafana, ELK.
|
| 31 |
+
|
| 32 |
+
## 🚀 Usage Example (Python)
|
| 33 |
+
```python
|
| 34 |
+
import pandas as pd
|
| 35 |
+
|
| 36 |
+
# Load the dataset
|
| 37 |
+
df = pd.read_parquet('/opt/Data set/output/devops_dataset.parquet')
|
| 38 |
+
|
| 39 |
+
# Inspect
|
| 40 |
+
print(df.head())
|
| 41 |
+
print(df['source'].value_counts())
|
| 42 |
+
|
| 43 |
+
# Filter high quality
|
| 44 |
+
high_quality = df[df['quality_score'] > 0.85]
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## 🛠 Collection Details
|
| 48 |
+
* **Tools:** `devops_collector.py` (Custom Python Collector)
|
| 49 |
+
* **Validation:** Strict quality rules (length, spam, content safety).
|
| 50 |
+
* **Dedup:** Semantic embedding filtering enabled for new data.
|