Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- code
|
| 5 |
+
- agent
|
| 6 |
+
- java
|
| 7 |
+
size_categories:
|
| 8 |
+
- n<1K
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Java Coding Dataset
|
| 12 |
+
|
| 13 |
+
This dataset contains high-quality Java code samples designed for fine-tuning coding-focused language models. It includes a diverse set of examples such as utility functions, class definitions, interface implementations, and exception handling.
|
| 14 |
+
|
| 15 |
+
## Dataset Details
|
| 16 |
+
|
| 17 |
+
- **Number of samples:** 520 (and growing)
|
| 18 |
+
- **Purpose:** Fine-tuning LLMs to generate accurate and idiomatic Java code
|
| 19 |
+
- **Content:** Functions, classes, interfaces, exception handling
|
| 20 |
+
- **License:** MIT License
|
| 21 |
+
|
| 22 |
+
## Usage
|
| 23 |
+
|
| 24 |
+
You can use this dataset with Hugging Face libraries or any fine-tuning pipeline compatible with JSONL data.
|
| 25 |
+
|
| 26 |
+
Example to load with `datasets` library:
|
| 27 |
+
|
| 28 |
+
```python
|
| 29 |
+
from datasets import load_dataset
|
| 30 |
+
dataset = load_dataset("Hoglet-33/java-coding-dataset")
|
| 31 |
+
print(dataset["train"][0])
|