File size: 1,820 Bytes
53c10a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<p align="right"><a href="environment_zh.md">简体中文</a></p>

# Reproduce the OraRL Environment

OraRL uses one reproducible software stack for policy optimization and
task-native evaluation. The released configuration was validated on NVIDIA
H20/Hopper GPUs with CUDA 12.9 and includes both runtimes in this repository.

## Requirements

- Linux with Conda available in `PATH`
- NVIDIA GPU with a recent driver
- CUDA 12.9-compatible hardware for the paper-matched environment

CUDA 12.9 GA officially requires NVIDIA Linux driver 575.51.03 or newer.
Other NVIDIA GPUs may work, but the published setup was validated on H20.

## Install the pinned stack

```bash
bash scripts/create_conda_env.sh
conda activate orarl

python scripts/check_environment.py \
  --require-gpu \
  --model /path/to/local/model
```

The installer pins Python 3.11, PyTorch 2.10.0+cu129, Transformers 5.5.4,
vLLM 0.19.1, FlashAttention 2.8.3, and the remaining packages in
`requirements-cu129.txt`. The final editable install exposes the `orarl-*`
commands and the bundled `verl` trainer package from this checkout; do not
install an unrelated `verl` release from PyPI over it.

## Validate an evaluation-only node

If a node will only run evaluation, skip the training-side checks:

```bash
bash scripts/create_conda_env.sh --evaluation-only
conda activate orarl

python scripts/check_environment.py --evaluation-only
```

## Verify the release checkout

Run the release checks before allocating a long job:

```bash
python scripts/check_release.py
python -m pytest -q
ruff check .
```

On a paper-matched H20 node, add `--require-gpu --require-h20` to
`scripts/check_environment.py`. Use the same source revision and environment on
every node of a distributed run.

Continue with [Training](training.md) or [Evaluation](evaluation.md).