amkyawdev commited on
Commit
cd30429
·
verified ·
1 Parent(s): df787cf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +65 -19
README.md CHANGED
@@ -1,21 +1,67 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: system
5
- dtype: string
6
- - name: instruction
7
- dtype: string
8
- - name: response
9
- dtype: string
10
- splits:
11
- - name: train
12
- num_bytes: 23720
13
- num_examples: 6
14
- download_size: 28720
15
- dataset_size: 23720
16
- configs:
17
- - config_name: default
18
- data_files:
19
- - split: train
20
- path: data/train-*
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language:
5
+ - en
6
+ license: mit
7
+ multilinguality:
8
+ - monolingual
9
+ size_categories:
10
+ - n<1K
11
+ task_categories:
12
+ - sequence-modeling
13
+ task_ids:
14
+ - language-modeling
 
 
 
 
 
 
15
  ---
16
+
17
+ # burme-coder-max
18
+
19
+ A coder-focused dataset designed for training AI coding assistants with strong programming capabilities.
20
+
21
+ ## Dataset Description
22
+
23
+ This dataset contains coding examples with a comprehensive system prompt that enables AI models to:
24
+ - Write clean, well-documented code
25
+ - Follow best practices and design patterns
26
+ - Provide working solutions with explanations
27
+ - Handle edge cases appropriately
28
+ - Offer alternative approaches
29
+
30
+ ## Dataset Structure
31
+
32
+ | Field | Type | Description |
33
+ |-------|------|-------------|
34
+ | system | string | System prompt defining coder behavior |
35
+ | instruction | string | User's coding task or question |
36
+ | response | string | Complete code solution with explanations |
37
+
38
+ ## Usage
39
+
40
+ ```python
41
+ from datasets import load_dataset
42
+
43
+ dataset = load_dataset("amkyawdev/burme-coder-max")
44
+ train_data = dataset['train']
45
+
46
+ # Access an example
47
+ example = train_data[0]
48
+ print(example['instruction'])
49
+ print(example['response'])
50
+ ```
51
+
52
+ ## Categories Covered
53
+
54
+ - Algorithm & Data Structures
55
+ - Web Development (Node.js, Express)
56
+ - Database & SQL
57
+ - TypeScript & Type Safety
58
+ - Go & Concurrent Programming
59
+ - Python Best Practices
60
+
61
+ ## Version
62
+
63
+ 1.0.0
64
+
65
+ ## License
66
+
67
+ MIT License