LeeChanRX commited on
Commit
b212b65
·
verified ·
1 Parent(s): 365877c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +107 -21
README.md CHANGED
@@ -1,23 +1,109 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: instruction
5
- dtype: string
6
- - name: input
7
- dtype: string
8
- - name: output
9
- dtype: string
10
- - name: prompt
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 400633722
15
- num_examples: 1100000
16
- download_size: 28582726
17
- dataset_size: 400633722
18
- configs:
19
- - config_name: default
20
- data_files:
21
- - split: train
22
- path: data/train-*
 
 
 
 
 
 
 
 
 
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+
5
+ license: apache-2.0
6
+
7
+ task_categories:
8
+ - text-generation
9
+
10
+ tags:
11
+ - instruction-tuning
12
+ - sft
13
+ - code-generation
14
+ - coding-assistant
15
+ - llm
16
+ - synthetic-data
17
+ - python
18
+ - javascript
19
+ - java
20
+ - cpp
21
+ - rust
22
+ - software-engineering
23
+ - llama
24
+ - qwen
25
+ - mistral
26
+ - gemma
27
+
28
+ pretty_name: Vibe-Coding-Instruct
29
+
30
+ size_categories:
31
+ - 1M<n<10M
32
  ---
33
+
34
+ # Vibe-Coding-Instruct
35
+
36
+ ## Dataset Summary
37
+
38
+ Vibe-Coding-Instruct is a large-scale instruction-following dataset designed for supervised fine-tuning (SFT) of coding-focused large language models. The dataset contains over **1.1 million** instruction-response pairs covering programming, debugging, code explanation, software engineering, algorithms, scripting, web development, and general developer assistance.
39
+
40
+ Each example consists of an instruction, optional input context, the expected output, and a preformatted prompt suitable for instruction-tuned models.
41
+
42
+ ## Dataset Structure
43
+
44
+ Each record contains four fields:
45
+
46
+ | Column | Description |
47
+ |---------|-------------|
48
+ | `instruction` | The user's coding task or request |
49
+ | `input` | Optional additional context |
50
+ | `output` | Expected assistant response |
51
+ | `prompt` | Preformatted prompt combining instruction and input |
52
+
53
+ ## ✨ Highlights
54
+
55
+ - 🚀 1.1M instruction-response pairs
56
+ - 💻 Covers multiple programming languages
57
+ - 🧠 Optimized for Supervised Fine-Tuning (SFT)
58
+ - 🤖 Compatible with Llama, Qwen, Gemma, Mistral, DeepSeek
59
+ - 📦 Ready-to-use Parquet format
60
+ - ⚡ Includes pre-formatted prompts
61
+
62
+ Example:
63
+
64
+ ```json
65
+ {
66
+ "instruction": "Write a Python function to reverse a string.",
67
+ "input": "",
68
+ "output": "def reverse_string(s):\n return s[::-1]",
69
+ "prompt": "### Instruction:\nWrite a Python function to reverse a string.\n\n### Response:"
70
+ }
71
+ ```
72
+
73
+ ## Intended Uses
74
+
75
+ This dataset is suitable for:
76
+
77
+ - Supervised Fine-Tuning (SFT)
78
+ - Coding assistants
79
+ - Code generation models
80
+ - Debugging assistants
81
+ - Instruction-following LLMs
82
+ - Research on code-focused language models
83
+
84
+ ## Data Sources
85
+
86
+ The dataset was curated and generated by **LeeChanRX**. It contains instruction-response pairs intended for training language models and may include both synthetic and curated examples.
87
+
88
+ ## Limitations
89
+
90
+ - The dataset may contain imperfect or outdated coding practices.
91
+ - Generated code should be reviewed before production use.
92
+ - Responses have not been manually verified for every sample.
93
+
94
+ ## Citation
95
+
96
+ If you use this dataset, please cite the repository:
97
+
98
+ ```
99
+ @dataset{VibeCodingInstruct,
100
+ author = {LeeChanRX},
101
+ title = {Vibe-Coding-Instruct},
102
+ year = {2026},
103
+ publisher = {Hugging Face}
104
+ }
105
+ ```
106
+
107
+ ## License
108
+
109
+ Apache-2.0