Lucie-Boosted-7B-Instruct
Post-training optimization of the foundation model OpenLLM-France/Lucie-7B-Instruct
DPO fine-tuning using the jpacifico/french-orca-dpo-pairs-revised RLHF dataset.
Training in French also enhances the model's overall performance.
Lucie-7B has a context size of 32K tokens
OpenLLM Leaderboard
coming soon
MT-Bench
coming soon
Usage
You can run this model using this Colab notebook
You can also run Lucie-Boosted using the following code:
import transformers
from transformers import AutoTokenizer
# Format prompt
message = [
{"role": "system", "content": "You are a helpful assistant chatbot."},
{"role": "user", "content": "What is a Large Language Model?"}
]
tokenizer = AutoTokenizer.from_pretrained(new_model)
prompt = tokenizer.apply_chat_template(message, add_generation_prompt=True, tokenize=False)
# Create pipeline
pipeline = transformers.pipeline(
"text-generation",
model=new_model,
tokenizer=tokenizer
)
# Generate text
sequences = pipeline(
prompt,
do_sample=True,
temperature=0.7,
top_p=0.9,
num_return_sequences=1,
max_length=200,
)
print(sequences[0]['generated_text'])
Limitations
The Lucie-Boosted model is a quick demonstration that the Lucie foundation model can be easily fine-tuned to achieve compelling performance.
It does not have any moderation mechanism.
- Developed by: Jonathan Pacifico, 2025
- Model type: LLM
- Language(s) (NLP): French, English
- License: Apache-2.0
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
Metric | Value |
---|---|
Avg. | 8.22 |
IFEval (0-Shot) | 25.66 |
BBH (3-Shot) | 10.26 |
MATH Lvl 5 (4-Shot) | 0.76 |
GPQA (0-shot) | 2.24 |
MuSR (0-shot) | 3.40 |
MMLU-PRO (5-shot) | 7.00 |
- Downloads last month
- 18
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.
Model tree for jpacifico/Lucie-Boosted-7B-Instruct
Dataset used to train jpacifico/Lucie-Boosted-7B-Instruct
Evaluation results
- strict accuracy on IFEval (0-Shot)Open LLM Leaderboard25.660
- normalized accuracy on BBH (3-Shot)Open LLM Leaderboard10.260
- exact match on MATH Lvl 5 (4-Shot)Open LLM Leaderboard0.760
- acc_norm on GPQA (0-shot)Open LLM Leaderboard2.240
- acc_norm on MuSR (0-shot)Open LLM Leaderboard3.400
- accuracy on MMLU-PRO (5-shot)test set Open LLM Leaderboard7.000