This repository provides a merged model derived from GRPO-trained checkpoints based on
mssfj/Qwen2.5-7B-Instruct_grpo_alfworld_trajectory_dataset and
mssfj/Qwen2.5-7B-Instruct_dbbench_grpo_dataset_react.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model_id = "mssfj/Qwen2.5-7B-Instruct_alfworld_dbbench_grpo_merge"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 torch_dtype=torch.bfloat16,
10 device_map="auto",
11)
Dataset License: MIT License. These datasets are used and distributed under the terms of the MIT License.
Compliance: Users must comply with the MIT license (including copyright notice) and the base model's original terms of use.