amkyawdev commited on
Commit
9cf84fa
·
verified ·
1 Parent(s): abd8759

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +81 -31
README.md CHANGED
@@ -1,33 +1,83 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: instruction
5
- dtype: string
6
- - name: messages
7
- list:
8
- - name: role
9
- dtype: string
10
- - name: content
11
- dtype: string
12
- - name: category
13
- dtype: string
14
- - name: language
15
- dtype: string
16
- - name: difficulty
17
- dtype: string
18
- - name: response
19
- dtype: string
20
- - name: task_type
21
- dtype: string
22
- splits:
23
- - name: train
24
- num_bytes: 861857748
25
- num_examples: 2000000
26
- download_size: 325420700
27
- dataset_size: 861857748
28
- configs:
29
- - config_name: default
30
- data_files:
31
- - split: train
32
- path: data/train-*
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ multilinguality: monolingual
6
+ size_categories: n_1M_to_n_10M
7
+ datasets:
8
+ - amkyawdev/mm-llm-coder-dataset
9
+ tags:
10
+ - code-generation
11
+ - debugging
12
+ - python
13
+ - javascript
14
+ - coding
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ---
16
+
17
+ # Coder Dataset - code-skill.md
18
+
19
+ ![License](https://img.shields.io/badge/License-Apache--2.0-yellow)
20
+ ![Rows](https://img.shields.io/badge/Rows-2M-blue)
21
+ ![Format](https://img.shields.io/badge/Format-JSON-blue)
22
+
23
+ Code generation and debugging dataset for training coding LLMs. Contains programming Q&A and error fixing examples.
24
+
25
+ ## Skill Type: Code/Skill
26
+
27
+ This dataset is part of the combined Myanmar LLM dataset collection:
28
+ - **chat-skill.md** - [amkyawdev/myanmar-llm-data](https://huggingface.co/datasets/amkyawdev/myanmar-llm-data)
29
+ - **agent-skill.md** - [amkyawdev/mm-llm-coder-agent-dataset](https://huggingface.co/datasets/amkyawdev/mm-llm-coder-agent-dataset)
30
+ - **code-skill.md** - Myanmar conversational data, translations, Q&A
31
+
32
+ ## Overview
33
+
34
+ This dataset contains code generation and debugging tasks:
35
+ - 💻 **Code Generation**: Python, JavaScript, TypeScript, React
36
+ - 🐛 **Debugging**: Error fixing patterns
37
+ - 📝 **Q&A Format**: Programming questions and answers
38
+ - 🔍 **Code Review**: Best practices and optimization
39
+
40
+ ## Dataset Statistics
41
+
42
+ | Metric | Value |
43
+ |--------|-------|
44
+ | Total Samples | ~2,000,000 |
45
+
46
+ ## Data Format
47
+
48
+ ```json
49
+ {
50
+ "messages": [
51
+ {"role": "user", "content": "Debug CORS error in production"},
52
+ {"role": "assistant", "content": "Common causes: 1. Different domain..."}
53
+ ],
54
+ "category": "code_debugging",
55
+ "language": "en",
56
+ "difficulty": "intermediate"
57
+ }
58
+ ```
59
+
60
+ ## Usage
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ dataset = load_dataset("amkyawdev/mm-llm-coder-dataset")
66
+ print(dataset)
67
+
68
+ # Access sample
69
+ sample = dataset["train"][0]
70
+ print("Messages:", sample["messages"])
71
+ print("Category:", sample["category"])
72
+ ```
73
+
74
+ ## Use Cases
75
+
76
+ 1. **Code Generation**: Train models for programming tasks
77
+ 2. **Debugging**: Learn error fixing patterns
78
+ 3. **Code Review**: Best practices training
79
+ 4. **Q&A Systems**: Programming help chatbots
80
+
81
+ ## License
82
+
83
+ Apache 2.0 License