Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| ChimeraLlama-3-8B.Q2_K.gguf | Q2_K | 2.96GB |
| ChimeraLlama-3-8B.IQ3_XS.gguf | IQ3_XS | 3.28GB |
| ChimeraLlama-3-8B.IQ3_S.gguf | IQ3_S | 3.43GB |
| ChimeraLlama-3-8B.Q3_K_S.gguf | Q3_K_S | 3.41GB |
| ChimeraLlama-3-8B.IQ3_M.gguf | IQ3_M | 3.52GB |
| ChimeraLlama-3-8B.Q3_K.gguf | Q3_K | 3.74GB |
| ChimeraLlama-3-8B.Q3_K_M.gguf | Q3_K_M | 3.74GB |
| ChimeraLlama-3-8B.Q3_K_L.gguf | Q3_K_L | 4.03GB |
| ChimeraLlama-3-8B.IQ4_XS.gguf | IQ4_XS | 4.18GB |
| ChimeraLlama-3-8B.Q4_0.gguf | Q4_0 | 4.34GB |
| ChimeraLlama-3-8B.IQ4_NL.gguf | IQ4_NL | 4.38GB |
| ChimeraLlama-3-8B.Q4_K_S.gguf | Q4_K_S | 4.37GB |
| ChimeraLlama-3-8B.Q4_K.gguf | Q4_K | 4.58GB |
| ChimeraLlama-3-8B.Q4_K_M.gguf | Q4_K_M | 4.58GB |
| ChimeraLlama-3-8B.Q4_1.gguf | Q4_1 | 4.78GB |
| ChimeraLlama-3-8B.Q5_0.gguf | Q5_0 | 5.21GB |
| ChimeraLlama-3-8B.Q5_K_S.gguf | Q5_K_S | 5.21GB |
| ChimeraLlama-3-8B.Q5_K.gguf | Q5_K | 5.34GB |
| ChimeraLlama-3-8B.Q5_K_M.gguf | Q5_K_M | 5.34GB |
| ChimeraLlama-3-8B.Q5_1.gguf | Q5_1 | 5.65GB |
| ChimeraLlama-3-8B.Q6_K.gguf | Q6_K | 6.14GB |
| ChimeraLlama-3-8B.Q8_0.gguf | Q8_0 | 7.95GB |
| Model | Average | AGIEval | GPT4All | TruthfulQA | Bigbench |
|---|---|---|---|---|---|
| mlabonne/ChimeraLlama-3-8B 📄 | 51.58 | 39.12 | 71.81 | 52.4 | 42.98 |
| meta-llama/Meta-Llama-3-8B-Instruct 📄 | 51.34 | 41.22 | 69.86 | 51.65 | 42.64 |
| mlabonne/OrpoLlama-3-8B 📄 | 48.63 | 34.17 | 70.59 | 52.39 | 37.36 |
| meta-llama/Meta-Llama-3-8B 📄 | 45.42 | 31.1 | 69.95 | 43.91 | 36.7 |
1models:
2 - model: NousResearch/Meta-Llama-3-8B
3 # No parameters necessary for base model
4 - model: NousResearch/Meta-Llama-3-8B-Instruct
5 parameters:
6 density: 0.58
7 weight: 0.4
8 - model: mlabonne/OrpoLlama-3-8B
9 parameters:
10 density: 0.52
11 weight: 0.2
12 - model: Locutusque/Llama-3-Orca-1.0-8B
13 parameters:
14 density: 0.52
15 weight: 0.2
16 - model: abacusai/Llama-3-Smaug-8B
17 parameters:
18 density: 0.52
19 weight: 0.2
20merge_method: dare_ties
21base_model: NousResearch/Meta-Llama-3-8B
22parameters:
23 int8_mask: true
24dtype: float161!pip install -qU transformers accelerate
2
3from transformers import AutoTokenizer
4import transformers
5import torch
6
7model = "mlabonne/ChimeraLlama-3-8B"
8messages = [{"role": "user", "content": "What is a large language model?"}]
9
10tokenizer = AutoTokenizer.from_pretrained(model)
11prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
12pipeline = transformers.pipeline(
13 "text-generation",
14 model=model,
15 torch_dtype=torch.float16,
16 device_map="auto",
17)
18
19outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
20print(outputs[0]["generated_text"])