Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,21 +1,67 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 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
|