Views
No views yet


python app.py1# Clone the repository
2git clone https://github.com/menloresearch/ReZero
3cd ReZero
4
5# Create virtual environment
6python -m venv .venv
7
8# Activate the environment
9source .venv/bin/activate
10
11# Install dependencies
12pip install --upgrade pip
13pip install -e .
14
15# Set up environment variables (required for websearch demo)
16cp .env.example .env
17# Edit .env and add your Tavily API key if you want to use the websearch demodata/ folder. To train:python train_grpo.pypython scripts/generate_data.py| Model | Backbone | Size | Link | GGUF |
|---|---|---|---|---|
| ReZero-v0.1 | Llama-3.2-3B | 3B | 🤗 Menlo/ReZero-v0.1-llama-3.2-3b-it-grpo-250404 | 🤗 GGUF |
| Run ID | Model Config | Dataset | Steps | Hardware | TensorBoard | Description |
|---|---|---|---|---|---|---|
| exp-01 | Llama-3.2-3b-instruct | Apollo Mission Report | 300 | ~2 hours on 1xH200 | 📊 | Added reward_search_strategy and reward_search_quality. Reward weights: [4.0, 2.0, 1.0, 1.0, 1.0, 1.0]. Loss crashed after step 400. Best accuracy: 31.25% at step 400. Max agent turns: 10. |
| exp-02 | Llama-3.2-3b-instruct | Apollo Mission Report | 1000 | ~7 hours on 1xH200 | 📊 | Improved reward_retry logic to only reward search when answers found. Increased max agent turns to 20. Reward weights: [4.0, 2.0, 1.0, 1.0, 1.0, 1.0]. Best accuracy: 46.88% at step 250. Higher early reward_correctness (~0.6 vs 0.4-0.5). Loss stable but reward crashed after step 350. |
| exp-03 | Llama-3.2-3b-instruct | Apollo Mission Report | 1000 | ~7 hours on 1xH200 | 📊 | Same as exp-02 but without the retry reward function. |