File size: 1,769 Bytes
5332aaf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
library_name: transformers
pipeline_tag: image-text-to-text
tags:
- qwen3-vl
- vision-language
- multimodal
- image-text-to-text
---

# Pager

This repository contains the model weights, tokenizer, processor, and configuration files for **Pager**, a vision-language model based on the Qwen3-VL architecture.

## Files

The repository includes:

- `config.json`
- `generation_config.json`
- `tokenizer.json`
- `tokenizer_config.json`
- `vocab.json`
- `merges.txt`
- `special_tokens_map.json`
- `added_tokens.json`
- `preprocessor_config.json`
- `video_preprocessor_config.json`
- `chat_template.jinja`
- `model.safetensors.index.json`
- `model-00001-of-00004.safetensors`
- `model-00002-of-00004.safetensors`
- `model-00003-of-00004.safetensors`
- `model-00004-of-00004.safetensors`

## Usage

Install dependencies:

```bash
pip install -U transformers accelerate safetensors pillow
```

Load the model:

```python
import torch
from transformers import AutoProcessor, AutoModelForImageTextToText

model_id = "OpenRaiser/Pager"

processor = AutoProcessor.from_pretrained(
    model_id,
    trust_remote_code=True
)

model = AutoModelForImageTextToText.from_pretrained(
    model_id,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True
)

print("Model loaded successfully.")
```

If your local `transformers` version does not support this model class, please upgrade `transformers` first.

## Notes

- The model weights are stored in four `.safetensors` shards.
- `model.safetensors.index.json` maps model parameters to the corresponding weight shards.
- This repository is intended for research and development use.

## Citation

If you use this model, please cite or link to this repository:

```text
https://huggingface.co/OpenRaiser/Pager
```