Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,28 +1,45 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
num_bytes: 150430464.18524963
|
18 |
-
num_examples: 11149
|
19 |
-
download_size: 283869684
|
20 |
-
dataset_size: 752098350.0
|
21 |
-
configs:
|
22 |
-
- config_name: default
|
23 |
-
data_files:
|
24 |
-
- split: train
|
25 |
-
path: data/train-*
|
26 |
-
- split: validation
|
27 |
-
path: data/validation-*
|
28 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language: en
|
3 |
+
license: cc-by-sa-4.0
|
4 |
+
task_categories:
|
5 |
+
- text-generation
|
6 |
+
- question-answering
|
7 |
+
- knowledge-retrieval
|
8 |
+
tags:
|
9 |
+
- enterprise-linux
|
10 |
+
- system-administration
|
11 |
+
- redhat
|
12 |
+
- LLM-training
|
13 |
+
- IT-automation
|
14 |
+
- AI-assistant
|
15 |
+
size_categories:
|
16 |
+
- 50K<n<100K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
---
|
18 |
+
|
19 |
+
# 🖥️ Red Hat Technical Documentation Dataset
|
20 |
+
|
21 |
+
## 📌 Overview
|
22 |
+
This dataset contains **55,741** structured technical documentation entries sourced from **Red Hat**, covering:
|
23 |
+
✅ **System Administration Guides** – User management, permissions, kernel tuning
|
24 |
+
✅ **Networking & Security** – Firewall rules, SELinux, VPN setup
|
25 |
+
✅ **Virtualization & Containers** – KVM, Podman, OpenShift, Kubernetes
|
26 |
+
✅ **Enterprise Software Documentation** – RHEL, Ansible, Satellite, OpenStack
|
27 |
+
|
28 |
+
## 📊 Dataset Details
|
29 |
+
This dataset is designed for training **Large Language Models (LLMs)** for **enterprise IT automation and troubleshooting**.
|
30 |
+
It can be used to build **Linux-focused AI assistants**, **automated system administration tools**, and **knowledge-retrieval bots**.
|
31 |
+
|
32 |
+
### **🛠️ Potential Use Cases**
|
33 |
+
- 🏢 **Enterprise Linux AI Assistant**: Train an LLM for **automated troubleshooting & IT helpdesk**.
|
34 |
+
- 🏗️ **DevOps & Automation**: Enhance **Ansible playbook generation & infrastructure automation**.
|
35 |
+
- 🔍 **Question Answering & Chatbots**: Fine-tune a model for **IT Q&A systems** using **RAG**.
|
36 |
+
- 📚 **Enterprise Documentation Search**: Build a **retrieval-augmented system** for sysadmins.
|
37 |
+
|
38 |
+
## 🏷️ **Dataset Schema**
|
39 |
+
```python
|
40 |
+
{
|
41 |
+
"title": "str", # Title of the documentation section
|
42 |
+
"content": "str", # Full-text content of the technical guide
|
43 |
+
"commands": "List[str]", # Extracted shell commands & configurations
|
44 |
+
"url": "str" # Original Red Hat documentation source
|
45 |
+
}
|