Downloads · 30 days
132
0% of all-time downloads
cloudyu/Mixtral_7Bx2_MoE
Mixtral_7Bx2_MoE is a text generation model from cloudyu. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as cc-by-nc-4.0.
Downloads · 30 days
132
0% of all-time downloads
All-time downloads
39.8K
Public
Parameters
12.9B
25.8 GB on disk
Likes
36
Public
Click a slice to open those files.
.safetensors25.8 GB · 100%
How the weights are stored.
F1611.3B · 88%
From the Hugging Face model README
MoE of the following models :
metrics: Average 73.43 ARC 71.25 HellaSwag 87.45
gpu code example
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
import math
## v2 models
model_path = "cloudyu/Mixtral_7Bx2_MoE"
tokenizer = AutoTokenizer.from_pretrained(model_path, use_default_system_prompt=False)
model = AutoModelForCausalLM.from_pretrained(
model_path, torch_dtype=torch.float32, device_map='auto',local_files_only=False, load_in_4bit=True
)
print(model)
prompt = input("please input prompt:")
while len(prompt) > 0:
input_ids = tokenizer(prompt, return_tensors="pt").input_ids.to("cuda")
generation_output = model.generate(
input_ids=input_ids, max_new_tokens=500,repetition_penalty=1.2
)
print(tokenizer.decode(generation_output[0]))
prompt = input("please input prompt:")
CPU example
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
import math
## v2 models
model_path = "cloudyu/Mixtral_7Bx2_MoE"
tokenizer = AutoTokenizer.from_pretrained(model_path, use_default_system_prompt=False)
model = AutoModelForCausalLM.from_pretrained(
model_path, torch_dtype=torch.float32, device_map='cpu',local_files_only=False
)
print(model)
prompt = input("please input prompt:")
while len(prompt) > 0:
input_ids = tokenizer(prompt, return_tensors="pt").input_ids
generation_output = model.generate(
input_ids=input_ids, max_new_tokens=500,repetition_penalty=1.2
)
print(tokenizer.decode(generation_output[0]))
prompt = input("please input prompt:")
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 73.43 |
| AI2 Reasoning Challenge (25-Shot) | 71.25 |
| HellaSwag (10-Shot) | 87.45 |
| MMLU (5-Shot) | 64.98 |
| TruthfulQA (0-shot) | 67.23 |
| Winogrande (5-shot) | 81.22 |
| GSM8k (5-shot) | 68.46 |