Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| TinyMixtral-4x248M-MoE.Q2_K.gguf | Q2_K | 0.25GB |
| TinyMixtral-4x248M-MoE.IQ3_XS.gguf | IQ3_XS | 0.28GB |
| TinyMixtral-4x248M-MoE.IQ3_S.gguf | IQ3_S | 0.29GB |
| TinyMixtral-4x248M-MoE.Q3_K_S.gguf | Q3_K_S | 0.29GB |
| TinyMixtral-4x248M-MoE.IQ3_M.gguf | IQ3_M | 0.3GB |
| TinyMixtral-4x248M-MoE.Q3_K.gguf | Q3_K | 0.32GB |
| TinyMixtral-4x248M-MoE.Q3_K_M.gguf | Q3_K_M | 0.32GB |
| TinyMixtral-4x248M-MoE.Q3_K_L.gguf | Q3_K_L | 0.35GB |
| TinyMixtral-4x248M-MoE.IQ4_XS.gguf | IQ4_XS | 0.36GB |
| TinyMixtral-4x248M-MoE.Q4_0.gguf | Q4_0 | 0.38GB |
| TinyMixtral-4x248M-MoE.IQ4_NL.gguf | IQ4_NL | 0.38GB |
| TinyMixtral-4x248M-MoE.Q4_K_S.gguf | Q4_K_S | 0.38GB |
| TinyMixtral-4x248M-MoE.Q4_K.gguf | Q4_K | 0.4GB |
| TinyMixtral-4x248M-MoE.Q4_K_M.gguf | Q4_K_M | 0.4GB |
| TinyMixtral-4x248M-MoE.Q4_1.gguf | Q4_1 | 0.41GB |
| TinyMixtral-4x248M-MoE.Q5_0.gguf | Q5_0 | 0.45GB |
| TinyMixtral-4x248M-MoE.Q5_K_S.gguf | Q5_K_S | 0.45GB |
| TinyMixtral-4x248M-MoE.Q5_K.gguf | Q5_K | 0.47GB |
| TinyMixtral-4x248M-MoE.Q5_K_M.gguf | Q5_K_M | 0.47GB |
| TinyMixtral-4x248M-MoE.Q5_1.gguf | Q5_1 | 0.49GB |
| TinyMixtral-4x248M-MoE.Q6_K.gguf | Q6_K | 0.54GB |
| TinyMixtral-4x248M-MoE.Q8_0.gguf | Q8_0 | 0.69GB |
1!pip install -qU transformers bitsandbytes accelerate
2
3from transformers import AutoTokenizer
4import transformers
5import torch
6
7model = "Isotonic/TinyMixtral-4x248M-MoE"
8
9tokenizer = AutoTokenizer.from_pretrained(model)
10pipeline = transformers.pipeline(
11 "text-generation",
12 model=model,
13 tokenizer=tokenizer
14)
15
16messages = [{"role": "user", "content": "Explain what a Mixture of Experts is in less than 100 words."}]
17prompt = pipeline.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
18outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
19print(outputs[0]["generated_text"])