Views
No views yet

1>>> from transformers import AutoTokenizer, MistralForCausalLM, set_seed
2>>> tokenizer = AutoTokenizer.from_pretrained("occiglot/occiglot-7b-eu5-instruct")
3>>> model = MistralForCausalLM.from_pretrained('occiglot/occiglot-7b-eu5-instruct') # You may want to use bfloat16 and/or move to GPU here
4>>> set_seed(42)
5>>> messages = [
6>>> {"role": "system", 'content': 'You are a helpful assistant. Please give short and concise answers.'},
7>>> {"role": "user", "content": "chi è il primo ministro italiano?"},
8>>> ]
9>>> tokenized_chat = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_dict=False, return_tensors='pt',)
10>>> set_seed(42)
11>>> outputs = model.generate(tokenized_chat.to('cuda'), max_new_tokens=200,)
12>>> tokenizer.decode(out[0][len(tokenized_chat[0]):])
13'Il primo ministro italiano è attualmente Giorgia Meloni, presidente di Fratelli d'Italia, un partito politico di estrema destra.'| arc_challenge | belebele | hellaswag | mmlu | truthfulqa | avg | |
|---|---|---|---|---|---|---|
| occiglot/occiglot-7b-eu5 | 0.530717 | 0.726667 | 0.789882 | 0.531904 | 0.403678 | 0.59657 |
| occiglot/occiglot-7b-eu5-instruct | 0.558874 | 0.746667 | 0.799841 | 0.535109 | 0.449034 | 0.617905 |
| occiglot/occiglot-7b-it-en | 0.580205 | 0.774444 | 0.804222 | 0.578977 | 0.412786 | 0.630127 |
| occiglot/occiglot-7b-it-en-instruct | 0.609215 | 0.82 | 0.809301 | 0.578835 | 0.479562 | 0.659383 |
| galatolo/cerbero-7b | 0.613481 | 0.827778 | 0.810396 | 0.600484 | 0.480911 | 0.66661 |
| mistralai/Mistral-7B-v0.1 | 0.612628 | 0.844444 | 0.834097 | 0.624555 | 0.426201 | 0.668385 |
| mistralai/Mistral-7B-Instruct-v0.2 | 0.637372 | 0.824444 | 0.846345 | 0.59201 | 0.668116 | 0.713657 |
| arc_challenge_it | belebele_it | hellaswag_it | mmlu_it | truthfulqa_it | avg | |
|---|---|---|---|---|---|---|
| occiglot/occiglot-7b-eu5 | 0.501283 | 0.652222 | 0.700533 | 0 | 0.252874 | 0.421382 |
| occiglot/occiglot-7b-eu5-instruct | 0.516681 | 0.661111 | 0.71326 | 0 | 0.295019 | 0.437214 |
| occiglot/occiglot-7b-it-en | 0.536356 | 0.684444 | 0.694768 | 0 | 0.247765 | 0.432667 |
| occiglot/occiglot-7b-it-en-instruct | 0.545766 | 0.717778 | 0.713804 | 0 | 0.303959 | 0.456261 |
| galatolo/cerbero-7b | 0.522669 | 0.717778 | 0.631567 | 0 | 0.302682 | 0.434939 |
| mistralai/Mistral-7B-v0.1 | 0.502139 | 0.734444 | 0.630371 | 0 | 0.264368 | 0.426264 |
| mistralai/Mistral-7B-Instruct-v0.2 | 0.519247 | 0.703333 | 0.6394 | 0 | 0.349936 | 0.442383 |