File size: 883 Bytes
86a088d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language:
  - en
  - zh
  - ja
  - fr
  - es
license: apache-2.0
tags:
  - role-playing
  - dialogue
  - multilingual
  - dpo
  - sft
datasets:
  - tinyrolls/RoleVerse
---

# Qwen3_8B_inter

Checkpoint from the **RoleVerse** project — a multilingual benchmark for social
reasoning through same-universe role-playing across 5 languages (EN, ZH, JA, FR, ES).

This checkpoint was produced by the RoleVerse training pipeline (SFT and/or DPO).
See the project repo and dataset for details on how it was trained.

- Dataset: <https://huggingface.co/datasets/tinyrolls/RoleVerse>
- Repo ID: `tinyrolls/Qwen3_8B_inter`

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "tinyrolls/Qwen3_8B_inter"
tok = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")
```