| --- |
| dataset: true |
| tags: |
| - code |
| - java |
| - decompilation |
| - github |
| - jsonl |
| - academic-use |
| license: other |
| pretty_name: Java Decompiler Dataset |
| --- |
| |
| # java-decompiler |
|
|
| This dataset contains Java source files and corresponding decompiled bytecode, |
| suitable for training or evaluating decompilation and code understanding models. |
|
|
| The Java files were extracted from public GitHub repositories indexed in [Google BigQuery’s GitHub dataset](https://cloud.google.com/bigquery/public-data/github). |
| Files were selected with the following filters: |
|
|
| - Only single-class files were retained. |
| - Only files importing `java.*` libraries (i.e., no third-party dependencies). |
| - Each file was compilable with minimal external configuration. |
|
|
| ## Files |
|
|
| - `train_class.json`: Training set |
| - `test_class.json`: Test set |
|
|
| All files are in JSON Lines format (`.jsonl`). Each line represents one Java class with the following structure: |
|
|
| - `class_name`: Class name (string) |
| - `java_source`: Full original Java source code (string) |
| - `jasm_code`: Decompiled Java assembly (string) |
| - `java_test`: Unit test code (string) |
| - `java_scaffold`: Partial class scaffold (string) |
| - `class_idx`: Integer class label (int64) |
|
|
| ## License |
|
|
| This dataset was derived from public GitHub repositories indexed by Google BigQuery. |
| Each sample may be governed by its original repository's license. |
|
|
| This dataset is intended **for academic research only**. |
| Redistribution of any individual source file must comply with the terms of its original license. |
|
|