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.| Metric | Value |
|---|---|
| Avg. | 40.30 |
| IFEval (0-Shot) | 86.05 |
| BBH (3-Shot) | 55.59 |
| MATH Lvl 5 (4-Shot) | 21.45 |
| GPQA (0-shot) | 12.53 |
| MuSR (0-shot) | 17.74 |
| MMLU-PRO (5-shot) | 48.48 |
ChatML prompt template:<|begin_of_text|><|start_header_id|>system<|end_header_id|>
{system_prompt}<|eot_id|><|start_header_id|>user<|end_header_id|>
{prompt}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
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.3-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.3-llama3.1-70b")
18model = AutoModelForCausalLM.from_pretrained("MaziyarPanahi/calme-2.3-llama3.1-70b")