How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "LoneStriker/Norobara-ZLoss-8x7B-3.5bpw-h6-exl2"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "LoneStriker/Norobara-ZLoss-8x7B-3.5bpw-h6-exl2",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/LoneStriker/Norobara-ZLoss-8x7B-3.5bpw-h6-exl2
Quick Links

Norobara-ZLoss-8x7B

This is an experimental instruct-tuned mistralai/Mixtral-8x7B-v0.1-based model trained using Charles Goddard's ZLoss and Megablocks-based fork of transformers.

It primarily uses the Capybara and No Robots datasets (thus the name). The goal was to create an uncensored general instruction following model, as well as test various loss implementations while we figure out how the heck to train Mixtral properly.

Exl2 Quants

Usage:

The intended prompt format is a modified multi-turn Alpaca instruction format:

### Instruction:
{system prompt}

### Input:
{user message}

### Response:
{model response}

### Input:
{user message}

### Response:
{model response}

(etc.)

Bias, Risks, and Limitations

The model will show biases present in the base model. No ethical alignment was applied to prevent the generation of toxic or harmful outputs (in fact the opposite, with examples from toxic-DPO included), so generate at your own risk.

Training Details

This model was trained as a QLora adapter for 3 epochs using a single H100 GPU for around 13 hours.

Downloads last month
13
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Datasets used to train LoneStriker/Norobara-ZLoss-8x7B-3.5bpw-h6-exl2