Yashodhr commited on
Commit
41f9625
·
verified ·
1 Parent(s): 0986d62

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -6
README.md CHANGED
@@ -1,7 +1,28 @@
1
- This dataset is used to store the raw data, that is crawled from github resources of projects that are in the CNCF landscape. It contains information that was stored im yaml, md and pdf files. The data format for the stored data is json.
2
 
3
- ---
4
- license: apache-2.0
5
- language:
6
- - en
7
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
+ # CNCF Raw Data for LLM Training
3
+
4
+ ## Description
5
+ This dataset, named `cncf-raw-data-for-llm-training`, consists of markdown (MD) and PDF content extracted from various project repositories within the CNCF (Cloud Native Computing Foundation) landscape. The data was collected by fetching MD and PDF files from different CNCF project repositories and converting them into JSON format. This dataset is intended as raw data for training large language models (LLMs).
6
+
7
+ The dataset includes the following two columns:
8
+ 1. **Tag**: A JSON object that categorizes the file. For example:
9
+ ```json
10
+ {
11
+ "category": "Runtime",
12
+ "file_name": "log-attach-design.md",
13
+ "project_name": "rkt",
14
+ "subcategory": "Container Runtime"
15
+ }
16
+ ```
17
+ - **Category**: A broad classification representing the main functional area of the project.
18
+ - **File Name**: The name of the file as it appears in the original repository.
19
+ - **Project Name**: The name of the specific project to which the file belongs.
20
+ - **Subcategory**: A more specific classification within the main category.
21
+
22
+ 2. **Content**: The actual content of the file (MD or PDF) in Jason format.
23
+
24
+ ## License
25
+ This dataset is available under the MIT license.
26
+
27
+ ## Links
28
+ - [GitHub Repository](https://github.com/amosproj/amos2024ss08-cloud-native-llm)