File size: 663 Bytes
f3550bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f2900fc
 
f3550bd
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
---
library_name: transformers
tags:
- causal-lm
- chatml
- custom-code
---

# Rex-Instruct-v0.1

This repository contains the `genesis_smol` fine-tuned checkpoint exported from this project.

## Notes

- Architecture: `REX`
- Chat format: ChatML with `<|im_start|>` and `<|im_end|>`
- Tokenizer base: `mistralai/Mistral-7B-v0.3`

## Local Loading

This is a custom architecture, so load it with the local `REX` class from this repository:

```python
from model.model import REX
from transformers import AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained("Maynx/Rex-Instruct-v0.1", use_fast=False)
model = REX.from_pretrained("Maynx/Rex-Instruct-v0.1")
```