File size: 1,032 Bytes
e903a9a
 
 
adc1c44
e903a9a
 
 
 
adc1c44
 
e903a9a
 
 
 
 
 
 
adc1c44
 
 
 
 
 
 
 
 
 
e903a9a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
library_name: transformers
pipeline_tag: image-text-to-text
base_model: Qwen/Qwen3.5-9B
tags:
- metis
- memory
- custom_code
- arxiv:2607.26760
---

# Metis-9B

Metis-9B is a Metis persistent-memory model built on `Qwen/Qwen3.5-9B`.
The repository contains the complete merged model weights rather than a delta-only checkpoint.

## Paper

This model is introduced in:

**Metis: Memory Foundation Model**

- [Hugging Face Paper](https://huggingface.co/papers/2607.26760)
- [arXiv](https://arxiv.org/abs/2607.26760)
- [Code](https://github.com/MemTensor/Metis)

## Load

```python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "IAAR-Shanghai/Metis-9B"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    trust_remote_code=True,
    dtype=torch.bfloat16,
    device_map="auto",
)
```

Metis uses custom Transformers code included in this repository. Use Transformers 5.4.0 or newer.