mtpti5iD commited on
Commit
f9af6ef
·
verified ·
1 Parent(s): 9872c36

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +43 -26
README.md CHANGED
@@ -1,28 +1,45 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: title
5
- dtype: string
6
- - name: content
7
- dtype: string
8
- - name: commands
9
- sequence: string
10
- - name: url
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 601667885.8147503
15
- num_examples: 44592
16
- - name: validation
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
+ }