Text Generation
Transformers
Safetensors
mixtral
text-generation-inference
How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="tdrussell/Mixtral-8x22B-Capyboros-v1")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("tdrussell/Mixtral-8x22B-Capyboros-v1")
model = AutoModelForCausalLM.from_pretrained("tdrussell/Mixtral-8x22B-Capyboros-v1", device_map="auto")
Quick Links

QLoRA fine-tune of Mixtral-8x22B-v0.1 on a combination of the Capybara and Airoboros datasets.

Uses Mistral instruct formatting, like this: [INST] Describe quantum computing to a layperson. [/INST]

Model details:

  • Trained with QLoRA, on 4 4090s, using my own qlora-pipe training script
  • LoRA rank 64
  • 4096 sequence length
  • 2 epochs

You can find the LoRA adapter files here. I have also uploaded a single quant (GGUF q4_k_s) here if you want to try it without quantizing yourself or waiting for someone else to make all the quants. It fits with at least 16k context length on 96GB VRAM.

Downloads last month
25
Safetensors
Model size
141B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for tdrussell/Mixtral-8x22B-Capyboros-v1

Finetunes
1 model
Quantizations
1 model

Datasets used to train tdrussell/Mixtral-8x22B-Capyboros-v1