Instructions to use wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO") model = AutoModelForCausalLM.from_pretrained("wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO
- SGLang
How to use wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO with Docker Model Runner:
docker model run hf.co/wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO
ALFWorld-OLMo-3-7B-Outcome-GRPO
A allenai/Olmo-3-7B-Instruct policy trained with GRPO on ALFWorld text-based embodied household tasks, with outcome-only rewards.
The repository root holds the final policy, at training step 400.
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO")
tokenizer = AutoTokenizer.from_pretrained("wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO")
# An intermediate checkpoint
model_step = AutoModelForCausalLM.from_pretrained("wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO", subfolder="step_20")
Checkpoints
step_20/step_40/step_60/step_80/step_100/step_120/step_140/step_160/step_180/step_200/step_220/step_240/step_260/step_280/step_300/step_320/step_340/step_360/step_380/
Raw FSDP checkpoints
fsdp/global_step_<N>/ holds the unmerged verl FSDP checkpoint (sharded fp32
model state, optimizer state and extra state) for step(s) 400. These are for
resuming training, not for inference — use the merged exports above to load a
policy.
- Downloads last month
- 246
Model tree for wckwan/ALFWorld-OLMo-3-7B-Outcome-GRPO
Base model
allenai/Olmo-3-1025-7B Finetuned
allenai/Olmo-3-7B-Instruct-SFT Finetuned
allenai/Olmo-3-7B-Instruct-DPO Finetuned
allenai/Olmo-3-7B-Instruct