mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
Add note on code execution to CodeIODataset
This commit is contained in:
parent
0252dd905f
commit
81c77a495d
1 changed files with 6 additions and 0 deletions
|
|
@ -63,6 +63,12 @@ class CodeIOConfig:
|
|||
|
||||
|
||||
class CodeIODataset(ProceduralDataset):
|
||||
"""
|
||||
Exercise some caution when using this dataset, as it involves executing arbitrary code snippets.
|
||||
These code snippets are transformed by an LLM from raw code files which have been curated from high-quality sources.
|
||||
However, there is still a risk that the LLM could have introduced code with bad effects.
|
||||
"""
|
||||
|
||||
_jsonl_data: Optional[list] = None
|
||||
|
||||
def __init__(self, config: CodeIOConfig):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue