Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| calme-2.2-llama3-70b.Q2_K.gguf | Q2_K | 24.56GB |
| calme-2.2-llama3-70b.IQ3_XS.gguf | IQ3_XS | 27.29GB |
| calme-2.2-llama3-70b.IQ3_S.gguf | IQ3_S | 28.79GB |
| calme-2.2-llama3-70b.Q3_K_S.gguf | Q3_K_S | 28.79GB |
| calme-2.2-llama3-70b.IQ3_M.gguf | IQ3_M | 29.74GB |
| calme-2.2-llama3-70b.Q3_K.gguf | Q3_K | 31.91GB |
| calme-2.2-llama3-70b.Q3_K_M.gguf | Q3_K_M | 31.91GB |
| calme-2.2-llama3-70b.Q3_K_L.gguf | Q3_K_L | 34.59GB |
| calme-2.2-llama3-70b.IQ4_XS.gguf | IQ4_XS | 35.64GB |
| calme-2.2-llama3-70b.Q4_0.gguf | Q4_0 | 37.22GB |
| calme-2.2-llama3-70b.IQ4_NL.gguf | IQ4_NL | 37.58GB |
| calme-2.2-llama3-70b.Q4_K_S.gguf | Q4_K_S | 37.58GB |
| calme-2.2-llama3-70b.Q4_K.gguf | Q4_K | 39.6GB |
| calme-2.2-llama3-70b.Q4_K_M.gguf | Q4_K_M | 39.6GB |
| calme-2.2-llama3-70b.Q4_1.gguf | Q4_1 | 41.27GB |
| calme-2.2-llama3-70b.Q5_0.gguf | Q5_0 | 45.32GB |
| calme-2.2-llama3-70b.Q5_K_S.gguf | Q5_K_S | 45.32GB |
| calme-2.2-llama3-70b.Q5_K.gguf | Q5_K | 46.52GB |
| calme-2.2-llama3-70b.Q5_K_M.gguf | Q5_K_M | 46.52GB |
| calme-2.2-llama3-70b.Q5_1.gguf | Q5_1 | 49.36GB |
| calme-2.2-llama3-70b.Q6_K.gguf | Q6_K | 53.91GB |
| calme-2.2-llama3-70b.Q8_0.gguf | Q8_0 | 69.83GB |

meta-llama/Meta-Llama-3-70B-Instruct model.MaziyarPanahi/Llama-3-70B-Instruct-DPO-v0.2. It was renamed to avoid any confusion with the original model.| Metric | Value |
|---|---|
| Avg. | 37.98 |
| IFEval (0-Shot) | 82.08 |
| BBH (3-Shot) | 48.57 |
| MATH Lvl 5 (4-Shot) | 22.96 |
| GPQA (0-shot) | 12.19 |
| MuSR (0-shot) | 15.30 |
| MMLU-PRO (5-shot) | 46.74 |
| Metric | Value |
|---|---|
| Avg. | 78.96 |
| AI2 Reasoning Challenge (25-Shot) | 72.53 |
| HellaSwag (10-Shot) | 86.22 |
| MMLU (5-Shot) | 80.41 |
| TruthfulQA (0-shot) | 63.57 |
| Winogrande (5-shot) | 82.79 |
| GSM8k (5-shot) | 88.25 |

ChatML prompt template:<|im_start|>system
{System}
<|im_end|>
<|im_start|>user
{User}
<|im_end|>
<|im_start|>assistant
{Assistant}MaziyarPanahi/calme-2.2-llama3-70b as the model name in Hugging Face's
transformers library.1from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer
2from transformers import pipeline
3import torch
4
5model_id = "MaziyarPanahi/calme-2.2-llama3-70b"
6
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 torch_dtype=torch.bfloat16,
10 device_map="auto",
11 trust_remote_code=True,
12 # attn_implementation="flash_attention_2"
13)
14
15tokenizer = AutoTokenizer.from_pretrained(
16 model_id,
17 trust_remote_code=True
18)
19
20streamer = TextStreamer(tokenizer)
21
22pipeline = pipeline(
23 "text-generation",
24 model=model,
25 tokenizer=tokenizer,
26 model_kwargs={"torch_dtype": torch.bfloat16},
27 streamer=streamer
28)
29
30# Then you can use the pipeline to generate text.
31
32messages = [
33 {"role": "system", "content": "You are a pirate chatbot who always responds in pirate speak!"},
34 {"role": "user", "content": "Who are you?"},
35]
36
37prompt = tokenizer.apply_chat_template(
38 messages,
39 tokenize=False,
40 add_generation_prompt=True
41)
42
43terminators = [
44 tokenizer.eos_token_id,
45 tokenizer.convert_tokens_to_ids("<|im_end|>"),
46 tokenizer.convert_tokens_to_ids("<|eot_id|>") # safer to have this too
47]
48
49outputs = pipeline(
50 prompt,
51 max_new_tokens=2048,
52 eos_token_id=terminators,
53 do_sample=True,
54 temperature=0.6,
55 top_p=0.95,
56)
57print(outputs[0]["generated_text"][len(prompt):])