Upload FlutterFT 5,000-record training corpus
Browse files- .gitattributes +1 -0
- README.md +93 -0
- train.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
train.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
task_categories:
|
| 5 |
+
- text-generation
|
| 6 |
+
- code-generation
|
| 7 |
+
size_categories:
|
| 8 |
+
- 1K<n<10K
|
| 9 |
+
license: mit
|
| 10 |
+
pretty_name: FlutterFT
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# FlutterFT
|
| 14 |
+
|
| 15 |
+
FlutterFT is a 5,000-record English-language instruction-tuning corpus for
|
| 16 |
+
Flutter/Dart code generation, spanning seven task types: question-to-code,
|
| 17 |
+
test generation, bug fixing, refactoring, completion, code explanation, and
|
| 18 |
+
API usage. Each record is a chat-format (system/user/assistant) example.
|
| 19 |
+
|
| 20 |
+
## Important notice on source provenance and licensing
|
| 21 |
+
|
| 22 |
+
**Source repository, commit, and license information for the underlying code
|
| 23 |
+
snippets was not recorded during data collection and has not been
|
| 24 |
+
verified per record.** The code snippets in this corpus were collected from
|
| 25 |
+
public GitHub repositories, but public visibility of a repository does not by
|
| 26 |
+
itself grant permission to redistribute its code under a new license. This
|
| 27 |
+
dataset's own packaging (this card, the JSONL structure, associated tooling)
|
| 28 |
+
is released under the MIT license, but that does not and cannot override the
|
| 29 |
+
license terms of the original source code, which are unknown here.
|
| 30 |
+
|
| 31 |
+
**Use this dataset at your own risk and responsibility.** If you are the
|
| 32 |
+
author of any code that appears in this corpus and object to its inclusion,
|
| 33 |
+
please open a discussion on this repository and it will be addressed.
|
| 34 |
+
|
| 35 |
+
## Dataset structure
|
| 36 |
+
|
| 37 |
+
| Task type | Records |
|
| 38 |
+
| --- | ---: |
|
| 39 |
+
| question_to_code | 2,845 |
|
| 40 |
+
| code_to_explanation | 513 |
|
| 41 |
+
| test_generation | 513 |
|
| 42 |
+
| bug_fix | 394 |
|
| 43 |
+
| refactor | 393 |
|
| 44 |
+
| completion | 312 |
|
| 45 |
+
| api_usage | 30 |
|
| 46 |
+
|
| 47 |
+
Each line in `train.jsonl` is a JSON object:
|
| 48 |
+
|
| 49 |
+
```json
|
| 50 |
+
{
|
| 51 |
+
"id": "seed_000001",
|
| 52 |
+
"messages": [
|
| 53 |
+
{"role": "system", "content": "You are a Flutter and Dart coding assistant."},
|
| 54 |
+
{"role": "user", "content": "..."},
|
| 55 |
+
{"role": "assistant", "content": "..."}
|
| 56 |
+
],
|
| 57 |
+
"task_type": "question_to_code",
|
| 58 |
+
"source": {},
|
| 59 |
+
"metadata": {},
|
| 60 |
+
"split": "train",
|
| 61 |
+
"split_origin": "..."
|
| 62 |
+
}
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
## Dataset creation
|
| 66 |
+
|
| 67 |
+
The pipeline started from 4,400 raw English question/code pairs, applied
|
| 68 |
+
deterministic quality rules plus full-context LLM-assisted review, derived
|
| 69 |
+
additional task variants (test generation, bug fixing, refactoring,
|
| 70 |
+
completion, explanation) from accepted roots, and checked for exact
|
| 71 |
+
duplicates and near-duplicate leakage against the held-out benchmark
|
| 72 |
+
(see the companion `flutterbench` dataset).
|
| 73 |
+
|
| 74 |
+
## Known limitations
|
| 75 |
+
|
| 76 |
+
- Task distribution is dominated by `question_to_code` (~57%); `api_usage` is
|
| 77 |
+
a small subset (30 records).
|
| 78 |
+
- Quality varies: some records are large or contain formatting artifacts from
|
| 79 |
+
automated generation.
|
| 80 |
+
- Only one downstream model family (Qwen2.5-Coder-3B-Instruct) has been
|
| 81 |
+
evaluated against this data; results should not be assumed to generalize.
|
| 82 |
+
- No functional/compilation verification was performed on these training
|
| 83 |
+
examples themselves (functional verification exists for a subset of the
|
| 84 |
+
companion benchmark, see `flutterbench`).
|
| 85 |
+
|
| 86 |
+
## Citation
|
| 87 |
+
|
| 88 |
+
If you use this dataset, please cite the repository. A predecessor study on
|
| 89 |
+
Turkish Flutter code generation is:
|
| 90 |
+
|
| 91 |
+
Uluırmak, B. A., & Kurban, R. (2025). Fine-tuning Large Language Models for
|
| 92 |
+
Turkish Flutter Code Generation. *Sakarya University Journal of Computer and
|
| 93 |
+
Information Sciences*, 8(4), 637-650.
|
train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f33f3026ee6dcf9561eedd495205ee396e9c0d634dbbbe466f38ea34e5f8a25e
|
| 3 |
+
size 41374801
|