CoolFace
Datasetpublic

AnonymousSubmissionUnderDouble-BlindRevi/Anonymous_Submission_Release

SETA-Env SETA-Env is an open-source verifiable RL terminal environment dataset for community training and evaluation. This release contains two top-level subsets: SETA_Synth: synthesized tasks SETA_Evolve: evolved variants of terminal-agent tasks The current release contains 4567 environments: SETA_Synth: 3255 SETA_Evolve: 1312 What Is Included Each task is packaged as a self-contained Harbor-style task directory with the files needed to run the task, build… See the full description on the dataset page: https://huggingface.co/datasets/AnonymousSubmissionUnderDouble-BlindRevi/Anonymous_Submission_Release.

sourceHugging Facecc-by-sa-4.0updated 2mo agoView on Hugging Face
0likes518downloads
Dataset Card

SETA-Env

SETA-Env is an open-source verifiable RL terminal environment dataset for community training and evaluation.

This release contains two top-level subsets:

  • —SETA_Synth: synthesized tasks
  • —SETA_Evolve: evolved variants of terminal-agent tasks

The current release contains 4567 environments:

  • —SETA_Synth: 3255
  • —SETA_Evolve: 1312

What Is Included

Each task is packaged as a self-contained Harbor-style task directory with the files needed to run the task, build its environment, execute a reference solution, and run tests.

Dataset Structure

text
SETA_Synth/
├── ask_ubuntu__...
├── kaggle_notebook__...
├── nl2bash__...
├── stack_overflow__...
└── unix_linux_se__...

SETA_Evolve/
├── ask_ubuntu__...__b1
├── ask_ubuntu__...__d1
├── kaggle_notebook__...__b1
├── nl2bash__...__b1
├── stack_overflow__...__d1
└── unix_linux_se__...__b1

A typical released task folder looks like:

text
{task_id}/
├── task.toml
├── instruction.md
├── environment/
│   ├── Dockerfile
│   └── ...
├── solution/
│   └── solve.sh
└── tests/
    ├── test.sh
    └── test_outputs.py

Source Breakdown

SETA_Synth

SourceCount
ask_ubuntu1013
kaggle_notebook637
nl2bash276
stack_overflow884
unix_linux_se445
Total3255

SETA_Evolve

SourceCount
ask_ubuntu783
kaggle_notebook147
nl2bash9
stack_overflow256
unix_linux_se117
Total1312

Notes

  • —Task folder names are the primary identifiers in this release.
  • —SETA_Evolve task names include suffixes such as __b1 and __d1 to distinguish evolved variants.
  • —__b1 means context change round 1.
  • —__d1 means difficulty change round 1.

Suggested Usage

python
from huggingface_hub import snapshot_download

snapshot_download(
    repo_id="AnonymousSubmissionUnderDouble-BlindRevi/Anonymous_Submission_Release",
    repo_type="dataset",
    local_dir="./seta_release",
)

To download only one subset:

python
from huggingface_hub import snapshot_download

snapshot_download(
    repo_id="AnonymousSubmissionUnderDouble-BlindRevi/Anonymous_Submission_Release",
    repo_type="dataset",
    allow_patterns="SETA_Synth/**",
    local_dir="./seta_release",
)

License

This release contains mixed-source data.

  • —stack_overflow, unix_linux_se, and ask_ubuntu are derived from Stack Exchange content licensed under CC BY-SA, with the exact version depending on post date. See also Ask Ubuntu licensing: https://askubuntu.com/help/licensing
  • —nl2bash is derived from the original NL2Bash dataset, whose upstream data/bash split is released under MIT: https://github.com/TellinaTool/nl2bash
  • —kaggle_notebook is derived from public Kaggle notebooks and related public assets; licensing may vary by item. See: https://www.kaggle.com/terms
AnonymousSubmissionUnderDouble-BlindRevi/Anonymous_Submission_Release · CoolFace