Update README.md
Browse files
README.md
CHANGED
|
@@ -1,23 +1,109 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|