Views
No views yet

meta-llama/Meta-Llama-3.1-70B-Instruct, pushing the boundaries of natural language understanding and generation even further. My goal was to create a versatile and robust model that excels across a wide range of benchmarks and real-world applications.ChatML prompt template:<|im_start|>system
{System}
<|im_end|>
<|im_start|>user
{User}
<|im_end|>
<|im_start|>assistant
{Assistant}1
2# Use a pipeline as a high-level helper
3
4from transformers import pipeline
5
6messages = [
7 {"role": "user", "content": "Who are you?"},
8]
9pipe = pipeline("text-generation", model="MaziyarPanahi/calme-2.1-llama3.1-70b")
10pipe(messages)
11
12
13# Load model directly
14
15from transformers import AutoTokenizer, AutoModelForCausalLM
16
17tokenizer = AutoTokenizer.from_pretrained("MaziyarPanahi/calme-2.1-llama3.1-70b")
18model = AutoModelForCausalLM.from_pretrained("MaziyarPanahi/calme-2.1-llama3.1-70b")| Metric | Value |
|---|---|
| Avg. | 34.34 |
| IFEval (0-Shot) | 84.34 |
| BBH (3-Shot) | 48.55 |
| MATH Lvl 5 (4-Shot) | 1.44 |
| GPQA (0-shot) | 10.40 |
| MuSR (0-shot) | 13.72 |
| MMLU-PRO (5-shot) | 47.58 |