Instructions to use Anonymous5345345/anonymous-chainer-grpo-epoch1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Anonymous5345345/anonymous-chainer-grpo-epoch1 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-4B-Instruct-2507") model = PeftModel.from_pretrained(base_model, "Anonymous5345345/anonymous-chainer-grpo-epoch1") - Notebooks
- Google Colab
- Kaggle
File size: 1,077 Bytes
fa96fff 9fe002b fa96fff 9fe002b fa96fff 9fe002b fa96fff | 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 | ---
base_model: Qwen/Qwen3-4B-Instruct-2507
library_name: peft
tags:
- lora
- qwen3
- grpo
- anonymous-submission
---
# Anonymous Chainer GRPO Checkpoint 1
This repository contains a LoRA adapter checkpoint for the Chainer policy after the first GRPO stage checkpoint used in the paper workflow.
## Base model
- `Qwen/Qwen3-4B-Instruct-2507`
## Artifact type
- PEFT LoRA adapter
- Inference-only checkpoint export
## Notes
- This repository is provided as anonymous supplementary material for peer review.
- The checkpoint is released for verification and follow-up research use.
- The repository intentionally omits author-identifying metadata.
## Loading example
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
base_model_id = "Qwen/Qwen3-4B-Instruct-2507"
adapter_repo_id = "Anonymous5345345/anonymous-chainer-grpo-epoch1"
tokenizer = AutoTokenizer.from_pretrained(base_model_id)
base_model = AutoModelForCausalLM.from_pretrained(base_model_id)
model = PeftModel.from_pretrained(base_model, adapter_repo_id)
```
|