Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| TinyQwex-4x620M-MoE.Q2_K.gguf | Q2_K | 0.49GB |
| TinyQwex-4x620M-MoE.IQ3_XS.gguf | IQ3_XS | 0.54GB |
| TinyQwex-4x620M-MoE.IQ3_S.gguf | IQ3_S | 0.56GB |
| TinyQwex-4x620M-MoE.Q3_K_S.gguf | Q3_K_S | 0.56GB |
| TinyQwex-4x620M-MoE.IQ3_M.gguf | IQ3_M | 0.57GB |
| TinyQwex-4x620M-MoE.Q3_K.gguf | Q3_K | 0.6GB |
| TinyQwex-4x620M-MoE.Q3_K_M.gguf | Q3_K_M | 0.6GB |
| TinyQwex-4x620M-MoE.Q3_K_L.gguf | Q3_K_L | 0.64GB |
| TinyQwex-4x620M-MoE.IQ4_XS.gguf | IQ4_XS | 0.67GB |
| TinyQwex-4x620M-MoE.Q4_0.gguf | Q4_0 | 0.69GB |
| TinyQwex-4x620M-MoE.IQ4_NL.gguf | IQ4_NL | 0.7GB |
| TinyQwex-4x620M-MoE.Q4_K_S.gguf | Q4_K_S | 0.7GB |
| TinyQwex-4x620M-MoE.Q4_K.gguf | Q4_K | 0.73GB |
| TinyQwex-4x620M-MoE.Q4_K_M.gguf | Q4_K_M | 0.73GB |
| TinyQwex-4x620M-MoE.Q4_1.gguf | Q4_1 | 0.76GB |
| TinyQwex-4x620M-MoE.Q5_0.gguf | Q5_0 | 0.82GB |
| TinyQwex-4x620M-MoE.Q5_K_S.gguf | Q5_K_S | 0.82GB |
| TinyQwex-4x620M-MoE.Q5_K.gguf | Q5_K | 0.84GB |
| TinyQwex-4x620M-MoE.Q5_K_M.gguf | Q5_K_M | 0.84GB |
| TinyQwex-4x620M-MoE.Q5_1.gguf | Q5_1 | 0.88GB |
| TinyQwex-4x620M-MoE.Q6_K.gguf | Q6_K | 0.96GB |
| TinyQwex-4x620M-MoE.Q8_0.gguf | Q8_0 | 1.24GB |
1!pip install -qU transformers bitsandbytes accelerate eniops
2
3from transformers import AutoTokenizer
4import transformers
5import torch
6
7model = "Isotonic/TinyQwex-4x620M-MoE"
8
9tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen1.5-0.5B")
10pipeline = transformers.pipeline(
11 "text-generation",
12 model=model,
13 model_kwargs={"torch_dtype": torch.bfloat16, "load_in_4bit": True},
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"])1experts:
2 - source_model: Qwen/Qwen1.5-0.5B
3 positive_prompts:
4 - "reasoning"
5
6 - source_model: Qwen/Qwen1.5-0.5B
7 positive_prompts:
8 - "program"
9
10 - source_model: Qwen/Qwen1.5-0.5B
11 positive_prompts:
12 - "storytelling"
13
14 - source_model: Qwen/Qwen1.5-0.5B
15 positive_prompts:
16 - "Instruction following assistant"