Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Hoyant-Su
/
ShellOps
like
0
Tasks:
Text Generation
Question Answering
Languages:
English
ArXiv:
arxiv:
2605.08013
Tags:
cli-agents
reinforcement-learning
filesystem
shell
verifiable-evaluation
License:
cc-by-4.0
Dataset card
Files
Files and versions
xet
Community
main
ShellOps
/
shellops_pro
/
assets
/
ShellOps_0b796d26f8
/
gold
/
src
/
api
/
parser.py
Hoyant-Su
Update ShellOps dataset
ac9f14b
2 days ago
raw
Copy download link
history
blame
contribute
delete
202 Bytes
def
parser_func
(
x
):
if
x >
0
:
return
x *
2
return
-x
class
Parser
:
def
__init__
(
self
):
self.count =
0
def
step
(
self
):
self.count +=
1
return
self.count