Instructions to use Maynx/Rex-Instruct-v0.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Maynx/Rex-Instruct-v0.1 with Transformers:
# Load model directly from transformers import REX model = REX.from_pretrained("Maynx/Rex-Instruct-v0.1", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 367 Bytes
f3550bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | {
"architectures": [
"REX"
],
"bos_token_id": 1,
"dropout": 0.1,
"dtype": "float32",
"eos_token_id": 2,
"max_len": 8192,
"model_type": "REX",
"n_embd": 1024,
"n_heads": 16,
"n_kv_heads": 8,
"n_layers": 14,
"pad_token_id": 2,
"tie_word_embeddings": true,
"transformers_version": "5.5.4",
"use_cache": false,
"vocab_size": 32770
}
|