Downloads · 30 days
20
11% of all-time downloads
femiari/MistralMoE
MistralMoE is a text generation model from femiari. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
newMoEAriel is a Mixture of Experts (MoE) made with the following models using LazyMergekit: NousResearch/Nous-Hermes-2-Mistral-7B-DPO yam-peleg/Hebrew-Mistral-7B
Downloads · 30 days
20
11% of all-time downloads
All-time downloads
187
Public
Parameters
12.9B
25.8 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors25.8 GB · 100%
From the Hugging Face model README
newMoEAriel is a Mixture of Experts (MoE) made with the following models using LazyMergekit:
!pip install -qU transformers bitsandbytes accelerate
from transformers import AutoTokenizer
import transformers
import torch
model = "femiari/newMoEAriel"
tokenizer = AutoTokenizer.from_pretrained(model)
pipeline = transformers.pipeline(
"text-generation",
model=model,
model_kwargs={"torch_dtype": torch.float16, "load_in_4bit": True},
)
messages = [{"role": "user", "content": "Explain what a Mixture of Experts is in less than 100 words."}]
prompt = pipeline.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])