sagecodes commited on
Commit
31603bf
·
verified ·
1 Parent(s): 52bbefd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - code
7
+ - grpo
8
+ - rlvr
9
+ ---
10
+
11
+ # simple-python-grpo
12
+
13
+ A curated set of simple Python function problems for GRPO / RLVR fine-tuning.
14
+ Each row has a natural-language description, a function signature, and 3
15
+ auto-verified test assertions (generated by running a reference implementation,
16
+ so every test is correct by construction). The reference is NOT included — the
17
+ model must generate the body and is rewarded when the tests pass.
18
+
19
+ Fields: `name`, `prompt`, `func_prompt`, `tests` (newline-separated asserts),
20
+ `setup_code`.
21
+
22
+ Built for the Union/Flyte GRPO code tutorial. Deliberately homogeneous and
23
+ simple so a small model (e.g. Qwen2.5-0.5B) can learn a transferable pattern.