File size: 872 Bytes
7d2a8c6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
license: mit
tags:
- code
- agent
- java
size_categories:
- n<1K
---

# Java Coding Dataset

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.

## Dataset Details

- **Number of samples:** 520 (and growing)  
- **Purpose:** Fine-tuning LLMs to generate accurate and idiomatic Java code  
- **Content:** Functions, classes, interfaces, exception handling  
- **License:** MIT License

## Usage

You can use this dataset with Hugging Face libraries or any fine-tuning pipeline compatible with JSONL data.

Example to load with `datasets` library:

```python
from datasets import load_dataset
dataset = load_dataset("Hoglet-33/java-coding-dataset")
print(dataset["train"][0])