How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="flammenai/Llama3.1-Flammades-70B")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("flammenai/Llama3.1-Flammades-70B")
model = AutoModelForCausalLM.from_pretrained("flammenai/Llama3.1-Flammades-70B", device_map="auto")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

image/png

Llama3.1-Flammades-70B

nbeerbower/Llama3.1-Gutenberg-Doppel-70B finetuned on flammenai/Date-DPO-NoAsterisks and jondurbin/truthy-dpo-v0.1.

Method

ORPO tuned with 2x H100 for 3 epochs.

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 35.74
IFEval (0-Shot) 70.58
BBH (3-Shot) 52.55
MATH Lvl 5 (4-Shot) 13.37
GPQA (0-shot) 13.87
MuSR (0-shot) 22.35
MMLU-PRO (5-shot) 41.69
Downloads last month
32
Safetensors
Model size
71B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with flammenai/Llama3.1-Flammades-70B.

Model tree for flammenai/Llama3.1-Flammades-70B

Finetuned
(1)
this model
Finetunes
1 model
Merges
29 models
Quantizations
2 models

Datasets used to train flammenai/Llama3.1-Flammades-70B

Evaluation results