ToddLLM commited on
Commit
3ecd59a
·
verified ·
1 Parent(s): 5e7c0c3

Add dataset card for Copyleft Luanti Package Dataset

Browse files
Files changed (1) hide show
  1. README.md +46 -35
README.md CHANGED
@@ -1,37 +1,48 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- - name: source
7
- dtype: string
8
- - name: metadata
9
- struct:
10
- - name: commercial_friendly
11
- dtype: bool
12
- - name: downloads
13
- dtype: int64
14
- - name: license
15
- dtype: string
16
- - name: package_id
17
- dtype: string
18
- - name: repo
19
- dtype: string
20
- - name: tags
21
- sequence: string
22
- - name: type
23
- dtype: string
24
- - name: website
25
- dtype: string
26
- splits:
27
- - name: train
28
- num_bytes: 1629089
29
- num_examples: 1073
30
- download_size: 840742
31
- dataset_size: 1629089
32
- configs:
33
- - config_name: default
34
- data_files:
35
- - split: train
36
- path: data/train-*
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - luanti
9
+ - minetest
10
+ - copyleft
11
+ - gpl
12
+ - lgpl
13
+ - opensource
14
+ size_categories:
15
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
+
18
+ # Copyleft Luanti Package Dataset
19
+
20
+ ## Description
21
+ Copyleft Luanti Package Dataset for Luanti (Minetest) expertise fine-tuning.
22
+
23
+ ## Dataset Information
24
+ - **Size**: 1,073 entries
25
+ - **Format**: Harmony format for LLM fine-tuning
26
+ - **Source**: Luanti ContentDB package collection
27
+ - **Quality**: Filtered and validated Luanti package metadata
28
+
29
+ ## Usage
30
+
31
+ ```python
32
+ from datasets import load_dataset
33
+
34
+ dataset = load_dataset("ToddLLM/luanti-copyleft-dataset")
35
+ print(dataset)
36
+ ```
37
+
38
+ ## Schema
39
+
40
+ Each entry contains:
41
+ - `text`: Package information in structured format
42
+ - `source`: "Luanti ContentDB"
43
+ - `metadata`: Additional structured information
44
+
45
+ ## License
46
+ Apache 2.0 - Safe for commercial and research use.
47
+
48
+ Generated as part of the [Luanti Fine-tuning Project](https://github.com/toddllm/luanti-fine-tune).