| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
II-Thought-RL is our initial attempt at developing a large-scale, multi-domain Reinforcement Learning (RL) dataset. By providing a high-quality, large-scale dataset on RL question-answer pairs, we aim to advance reasoning research. This foundational step will pave the way for future iterations incorporating more complex reasoning traces.
This repository contains two frameworks that support our RL dataset:
For more details about our project, please visit our blog post.
II-VERL is an enhanced version of the Verl framework with several improvements:
For detailed documentation and usage instructions, see II-VERL README.
The RL Verifier is a comprehensive verification framework that supports multiple domains:
For detailed documentation and usage instructions, see RL Verifier README.
git clone --recursive https://github.com/Intelligent-Internet/ii_thought.git
cd ii_thoughtcd ii_verl
conda create -n verl python==3.10 -y
conda activate verl
pip3 install torch==2.4.0 --index-url https://download.pytorch.org/whl/cu124
pip3 install flash-attn --no-build-isolation
pip install -e .
cd ../rl_verifier
pip install -r requirements.txt
pip install -e .Create a .env file in the rl_verifier directory with the following configurations:
# For code verification (if using code_verifiable type)
FUSION_SANDBOX_URL=http://localhost:8080
# For LLM-as-Judge (if using llm_judge type)
LLM_JUDGE_MODEL=Qwen/Qwen2.5-32B-Instruct # Model name
LLM_JUDGE_BASE_URL=http://localhost:8002/v1 # API endpoint (if using local LLM)
LLM_JUDGE_API_KEY=EMPTY # API key
LLM_JUDGE_MAX_TOKENS=1000 # Max output tokens
LLM_JUDGE_TEMPERATURE=0.0 # Sampling temperature
# Whether to use format verifier
USE_FORMAT_VERIFIER=false # Whether to use format verifier# Start the sandbox server
docker run -d \
--privileged \
-p 8080:8080 \
-e WORKER_SIZE=8 \
tuenguyen/code_sandbox:server \
make run-onlinecd rl_verifier
uvicorn src.app.main:app --host 0.0.0.0 --port 8000 --workers 5The server will start on http://0.0.0.0:8000.
Prepare your dataset following the format specified in the II-VERL README
Add the following settings to your configuration file, adjust the parameters as needed:
reward_api:
enable: true # Enable remote reward server
api_url: http://localhost:8000 # URL of your reward server
max_workers: 20 # Number of concurrent API calls
timeout: 60 # Timeout in seconds for each request
verification_info_column: verification_info # Column name containing verification info
save_dir: debug_data/ # Directory for saving reward computation results
save_freq: 1 # Save frequency (1 = save after each computation)Example of a full configuration file (GRPO):
data:
tokenizer: null
train_files: Intelligent-Internet/ii-verl-example
val_files: Intelligent-Internet/ii-verl-example
train_split: train
val_split: test
prompt_key: messages
max_prompt_length: 1024
max_response_length: 8192
train_batch_size: 128
val_batch_size: 128
filter_overlong_prompts: true
actor_rollout_ref:
model:
path: deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
enable_gradient_checkpointing: true
use_remove_padding: true
actor:
strategy: fsdp
ppo_mini_batch_size: 64
use_dynamic_bsz: true
ulysses_sequence_parallel_size: 1
ppo_max_token_len_per_gpu: 32768
use_kl_loss: True
kl_loss_coef: 0.001
kl_loss_type: low_var_kl
optim:
lr: 1.0e-06
ref:
param_offload: true
rollout:
name: vllm
temperature: 0.6
gpu_memory_utilization: 0.8
tensor_model_parallel_size: 1
enforce_eager: false
free_cache_engine: false
n: 5
reward_model:
enable: false
# Enable remote reward server
reward_api:
enable: true
api_url: http://localhost:8000
max_workers: 20
timeout: 60
verification_info_column: verification_info
save_dir: debug_data/
save_freq: 1
algorithm:
adv_estimator: grpo
kl_penalty: kl
kl_ctrl:
type: fixed
kl_coef: 0.001
trainer:
total_epochs: 15
project_name: ii-thought-rl
experiment_name: ii-grpo
nnodes: 1
n_gpus_per_node: 8
save_freq: 25
test_freq: 25
default_local_dir: checkpoints/ii-grpoverl train-ppo --config_path config.yaml| Back | FazBrowse Home | New Git URL |