Datasets:
Register scienceworld train_expert split in dataset card
Browse files
README.md
CHANGED
|
@@ -25,6 +25,8 @@ configs:
|
|
| 25 |
data_files:
|
| 26 |
- split: train
|
| 27 |
path: scienceworld/train.parquet
|
|
|
|
|
|
|
| 28 |
- split: test
|
| 29 |
path: scienceworld/test.parquet
|
| 30 |
---
|
|
@@ -53,7 +55,12 @@ Every row separates the model-input field from the environment-input fields:
|
|
| 53 |
`AGENT_ENV_DATA_ROOT` (default `datasets/env_assets`) and the rollout joins
|
| 54 |
it with these relative paths; absolute paths are used as-is.
|
| 55 |
- `expert_actions`: expert action list (non-empty for ALFWorld
|
| 56 |
-
`train_expert`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
- `workflow_args`: JSON string (e.g. `max_env_steps`, `mode`, `curriculum`)
|
| 58 |
- `max_env_steps`, `mode` (`rl`/`opd`/`rl_opd`), `curriculum`
|
| 59 |
(`none`/`b2f`/`f2b`), `split`
|
|
@@ -65,7 +72,7 @@ Load in Slime with `--input-key prompt --label-key label --metadata-key metadata
|
|
| 65 |
Switch environment with the config dropdown, then pick a split:
|
| 66 |
|
| 67 |
- `alfworld`: splits `train`, `train_expert`, `train_hard`, `test`, `test_unseen`
|
| 68 |
-
- `scienceworld`: splits `train`, `test`
|
| 69 |
|
| 70 |
## Usage (inspect a config)
|
| 71 |
|
|
|
|
| 25 |
data_files:
|
| 26 |
- split: train
|
| 27 |
path: scienceworld/train.parquet
|
| 28 |
+
- split: train_expert
|
| 29 |
+
path: scienceworld/train_expert.parquet
|
| 30 |
- split: test
|
| 31 |
path: scienceworld/test.parquet
|
| 32 |
---
|
|
|
|
| 55 |
`AGENT_ENV_DATA_ROOT` (default `datasets/env_assets`) and the rollout joins
|
| 56 |
it with these relative paths; absolute paths are used as-is.
|
| 57 |
- `expert_actions`: expert action list (non-empty for ALFWorld
|
| 58 |
+
`train_expert` and ScienceWorld `train_expert`; used by TCOD b2f/f2b).
|
| 59 |
+
ALFWorld actions come from the ALFRED handcoded planner; ScienceWorld
|
| 60 |
+
actions are precomputed via the engine's built-in gold-path solver
|
| 61 |
+
(`ScienceWorldEnv.load(..., generateGoldPath=True)` +
|
| 62 |
+
`get_gold_action_sequence()`, see
|
| 63 |
+
`agent_envs/data/generate_scienceworld_expert.py`).
|
| 64 |
- `workflow_args`: JSON string (e.g. `max_env_steps`, `mode`, `curriculum`)
|
| 65 |
- `max_env_steps`, `mode` (`rl`/`opd`/`rl_opd`), `curriculum`
|
| 66 |
(`none`/`b2f`/`f2b`), `split`
|
|
|
|
| 72 |
Switch environment with the config dropdown, then pick a split:
|
| 73 |
|
| 74 |
- `alfworld`: splits `train`, `train_expert`, `train_hard`, `test`, `test_unseen`
|
| 75 |
+
- `scienceworld`: splits `train`, `train_expert`, `test`
|
| 76 |
|
| 77 |
## Usage (inspect a config)
|
| 78 |
|