Instructions to use QuixiAI/laserxtral-exl2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuixiAI/laserxtral-exl2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="QuixiAI/laserxtral-exl2")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("QuixiAI/laserxtral-exl2", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use QuixiAI/laserxtral-exl2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "QuixiAI/laserxtral-exl2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuixiAI/laserxtral-exl2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/QuixiAI/laserxtral-exl2
- SGLang
How to use QuixiAI/laserxtral-exl2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "QuixiAI/laserxtral-exl2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuixiAI/laserxtral-exl2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "QuixiAI/laserxtral-exl2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuixiAI/laserxtral-exl2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use QuixiAI/laserxtral-exl2 with Docker Model Runner:
docker model run hf.co/QuixiAI/laserxtral-exl2
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("QuixiAI/laserxtral-exl2", dtype="auto")Exllama v2 Quantizations of laserxtral
Using turboderp's ExLlamaV2 v0.0.11 for quantization.
The "main" branch only contains the measurement.json, download one of the other branches for the model (see below)
Discord: https://discord.gg/cognitivecomputations
Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
Conversion was done using the default calibration dataset.
Default arguments used.
Original model: https://huggingface.co/cognitivecomputations/laserxtral
Credit to Bartowski for help and model card formatting
Original Model Card Below
by David, Fernando and Eric
Sponsored by: VAGO Solutions
Join our Discord! https://discord.gg/vT3sktQ3zb
An experimentation regarding 'lasering' each expert to denoise and enhance model capabilities.
This model has half size in comparison to the Mixtral 8x7b Instruct. And it basically has the same level of performance (we are working to get a better MMLU score).
Laserxtral - 4x7b (all, except for base, lasered using laserRMT)
This model is a Mixture of Experts (MoE) made with mergekit (mixtral branch). It uses the following base models:
- cognitivecomputations/dolphin-2.6-mistral-7b-dpo
- mlabonne/Marcoro14-7B-slerp (base)
- beowolx/CodeNinja-1.0-OpenChat-7B
- Q-bert/MetaMath-Cybertron-Starling
- WizardLM/WizardMath-7B-V1.1
It follows the implementation of laserRMT @ https://github.com/cognitivecomputations/laserRMT
Here, we are controlling layers checking which ones have lower signal to noise ratios (which are more subject to noise), to apply Laser interventions, still using Machenko Pastur to calculate this ratio.
We intend to be the first of a family of experimentations being carried out @ Cognitive Computations.
In this experiment we have observed very high truthfulness and high reasoning capabilities.


# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="QuixiAI/laserxtral-exl2")