The home of Stambecco 🦌: Italian Instruction-following LLaMA Model
Jupyter Notebook
19
11 commits
updated Aug 7, 2026
Stambecco is an Italian instruction-following language model family based on Meta's LLaMA architecture. Fine-tuned using Low-Rank Adaptation (LoRA), Stambecco presents the first attempt to use GPT-4 generated data to bring instruction-following capabilities to the Italian language across 7B and 13B parameter sizes, all built and trainable within Google Colab.
Because original LLaMA foundation weights are restricted, we release the trained PEFT/LoRA adapter weights ("patches") and the corresponding translated instruction datasets on Hugging Face:
| Model | Base Architecture | Dataset Used | Adapter Weights |
|---|---|---|---|
| Stambecco-7B-Plus | LLaMA-7B | Stambecco-Plus (GPT-4) | mchl-labs/stambecco-7b-plus |
| Stambecco-13B-Plus | LLaMA-13B | Stambecco-Plus (GPT-4) | mchl-labs/stambecco-13b-plus |
| Dataset | Base Source | Target Language | Repository |
|---|---|---|---|
| Stambecco-Cleaned | Alpaca-Data-Cleaned | Italian (it) | mchl-labs/stambecco_data_it |
| Stambecco-Plus | Alpaca GPT-4 | Italian (it) | mchl-labs/stambecco_data_plus_it |
To advance Italian instruction tuning, Stambecco relies on two distinct translated datasets:
Translation pipelines were executed using OpenAI's gpt-3.5-turbo, balancing cost-efficiency and output quality, with custom programmatic heuristics applied (e.g., preserving code snippets untranslated).
Stambecco models were fine-tuned using Hugging Face's PEFT library (LoRA). To run the finetuning on Colab, on top of LLaMA-7B and LLaMA-13B, it is recommended an A100 40GB GPU.
For detailed hyperparameter configurations, please refer to the individual model cards on Hugging Face.
You can test and interact with Stambecco models directly in your browser or run local inference through a Gradio interface using our Google Colab notebook:
If Stambecco models or code inspire or assist your research, please include a formal citation:
@misc{stambecco,
author = {Michael Rottoli},
title = {Stambecco: Italian Instruction-following LLaMA Model},
year = {2023},
publisher = {GitHub},
howpublished = {\url{https://github.com/mchl-labs/stambecco}}
}
If you use the Stambecco datasets in your work, please cite them in your formal paper bibliography (rather than as footnotes) to ensure proper academic indexing:
@misc{stambecco_cleaned_2023,
author = {Michael Rottoli},
title = {Stambecco-Cleaned: Italian Instruction-Tuning Dataset},
year = {2023},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/datasets/mchl-labs/stambecco_data_it}}
}
@misc{stambecco_plus_2023,
author = {Michael Rottoli},
title = {Stambecco Plus: Premium Italian Instruction-Tuning Dataset},
year = {2023},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/datasets/mchl-labs/stambecco_data_plus_it}}
}
@article{touvron2023llama,
title={LLaMA: Open and Efficient Foundation Language Models},
author={Touvron, Hugo and Lavril, Thibaut and Izacard, Gautier and Martinet, Xavier and Lachaux, Marie-Anne and Lacroix, Timoth{\'e}e and Rozi{\`e}re, Baptiste and Goyal, Naman and Hambro, Eric and Azhar, Faisal and Rodriguez, Aurelien and Joulin, Armand and Grave, Edouard and Lample, Guillaume},
journal={arXiv preprint arXiv:2302.13971},
year={2023}
}
@misc{selfinstruct,
title={Self-Instruct: Aligning Language Model with Self Generated Instructions},
author={Wang, Yizhong and Kordi, Yeganeh and Mishra, Swaroop and Liu, Alisa and Smith, Noah A. and Khashabi, Daniel and Hajishirzi, Hannaneh},
journal={arXiv preprint arXiv:2212.10560},
year={2022}
}
@misc{alpaca,
author = {Rohan Taori and Ishaan Gulrajani and Tianyi Zhang and Yann Dubois and Xuechen Li and Carlos Guestrin and Percy Liang and Tatsunori B. Hashimoto},
title = {Stanford Alpaca: An Instruction-following LLaMA model},
year = {2023},
publisher = {GitHub},
howpublished = {\url{https://github.com/tatsu-lab/stanford_alpaca}}
}
@article{peng2023gpt4llm,
title={Instruction Tuning with GPT-4},
author={Baolin Peng and Chunyuan Li and Pengcheng He and Michel Galley and Jianfeng Gao},
journal={arXiv preprint arXiv:2304.03277},
year={2023}
}
@misc{hu2021lora,
title={LoRA: Low-Rank Adaptation of Large Language Models},
author={Hu, Edward and Shen, Yelong and Wallis, Phil and Allen-Zhu, Zeyuan and Li, Yuanzhi and Wang, Lu and Chen, Weizhu},
year={2021},
eprint={2106.09685},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
@inproceedings{wolf-etal-2020-transformers,
title = "Transformers: State-of-the-Art Natural Language Processing",
author = "Thomas Wolf and Lysandre Debut and Victor Sanh and Julien Chaumond and Clement Delangue and Anthony Moi and Pierric Cistac and Tim Rault and Rémi Louf and Morgan Funtowicz and Joe Davison and Sam Shleifer and Patrick von Platen and Clara Ma and Yacine Jernite and Julien Plu and Canwen Xu and Teven Le Scao and Sylvain Gugger and Mariama Drame and Quentin Lhoest and Alexander M. Rush",
booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
month = oct,
year = "2020",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://www.aclweb.org/anthology/2020.emnlp-demos.6",
pages = "38--45"
}
@misc{peft,
title = {PEFT: State-of-the-art Parameter-Efficient Fine-Tuning methods},
author = {Sourab Mangrulkar and Sylvain Gugger and Lysandre Debut and Younes Belkada and Sayak Paul},
howpublished = {\url{https://github.com/huggingface/peft}},
year = {2022}
}
"If I have seen further it is by standing on the shoulders of Giants." — Isaac Newton
This project was made possible through the foundational contributions of the open-source and AI research communities: LLaMA, Stanford Alpaca, Alpaca-LoRA, Cabrita, Cleaned Alpaca Dataset, GPT-4-LLM, Alpaca-LoRA-Serve, OpenAI, and Hugging Face.
11 commits
Jupyter Notebook
100.0%
The home of Stambecco 🦌: Italian Instruction-following LLaMA Model
Jupyter Notebook
19
11 commits
updated Aug 7, 2026
Stambecco is an Italian instruction-following language model family based on Meta's LLaMA architecture. Fine-tuned using Low-Rank Adaptation (LoRA), Stambecco presents the first attempt to use GPT-4 generated data to bring instruction-following capabilities to the Italian language across 7B and 13B parameter sizes, all built and trainable within Google Colab.
Because original LLaMA foundation weights are restricted, we release the trained PEFT/LoRA adapter weights ("patches") and the corresponding translated instruction datasets on Hugging Face:
| Model | Base Architecture | Dataset Used | Adapter Weights |
|---|---|---|---|
| Stambecco-7B-Plus | LLaMA-7B | Stambecco-Plus (GPT-4) | mchl-labs/stambecco-7b-plus |
| Stambecco-13B-Plus | LLaMA-13B | Stambecco-Plus (GPT-4) | mchl-labs/stambecco-13b-plus |
| Dataset | Base Source | Target Language | Repository |
|---|---|---|---|
| Stambecco-Cleaned | Alpaca-Data-Cleaned | Italian (it) | mchl-labs/stambecco_data_it |
| Stambecco-Plus | Alpaca GPT-4 | Italian (it) | mchl-labs/stambecco_data_plus_it |
To advance Italian instruction tuning, Stambecco relies on two distinct translated datasets:
Translation pipelines were executed using OpenAI's gpt-3.5-turbo, balancing cost-efficiency and output quality, with custom programmatic heuristics applied (e.g., preserving code snippets untranslated).
Stambecco models were fine-tuned using Hugging Face's PEFT library (LoRA). To run the finetuning on Colab, on top of LLaMA-7B and LLaMA-13B, it is recommended an A100 40GB GPU.
For detailed hyperparameter configurations, please refer to the individual model cards on Hugging Face.
You can test and interact with Stambecco models directly in your browser or run local inference through a Gradio interface using our Google Colab notebook:
If Stambecco models or code inspire or assist your research, please include a formal citation:
@misc{stambecco,
author = {Michael Rottoli},
title = {Stambecco: Italian Instruction-following LLaMA Model},
year = {2023},
publisher = {GitHub},
howpublished = {\url{https://github.com/mchl-labs/stambecco}}
}
If you use the Stambecco datasets in your work, please cite them in your formal paper bibliography (rather than as footnotes) to ensure proper academic indexing:
@misc{stambecco_cleaned_2023,
author = {Michael Rottoli},
title = {Stambecco-Cleaned: Italian Instruction-Tuning Dataset},
year = {2023},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/datasets/mchl-labs/stambecco_data_it}}
}
@misc{stambecco_plus_2023,
author = {Michael Rottoli},
title = {Stambecco Plus: Premium Italian Instruction-Tuning Dataset},
year = {2023},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/datasets/mchl-labs/stambecco_data_plus_it}}
}
@article{touvron2023llama,
title={LLaMA: Open and Efficient Foundation Language Models},
author={Touvron, Hugo and Lavril, Thibaut and Izacard, Gautier and Martinet, Xavier and Lachaux, Marie-Anne and Lacroix, Timoth{\'e}e and Rozi{\`e}re, Baptiste and Goyal, Naman and Hambro, Eric and Azhar, Faisal and Rodriguez, Aurelien and Joulin, Armand and Grave, Edouard and Lample, Guillaume},
journal={arXiv preprint arXiv:2302.13971},
year={2023}
}
@misc{selfinstruct,
title={Self-Instruct: Aligning Language Model with Self Generated Instructions},
author={Wang, Yizhong and Kordi, Yeganeh and Mishra, Swaroop and Liu, Alisa and Smith, Noah A. and Khashabi, Daniel and Hajishirzi, Hannaneh},
journal={arXiv preprint arXiv:2212.10560},
year={2022}
}
@misc{alpaca,
author = {Rohan Taori and Ishaan Gulrajani and Tianyi Zhang and Yann Dubois and Xuechen Li and Carlos Guestrin and Percy Liang and Tatsunori B. Hashimoto},
title = {Stanford Alpaca: An Instruction-following LLaMA model},
year = {2023},
publisher = {GitHub},
howpublished = {\url{https://github.com/tatsu-lab/stanford_alpaca}}
}
@article{peng2023gpt4llm,
title={Instruction Tuning with GPT-4},
author={Baolin Peng and Chunyuan Li and Pengcheng He and Michel Galley and Jianfeng Gao},
journal={arXiv preprint arXiv:2304.03277},
year={2023}
}
@misc{hu2021lora,
title={LoRA: Low-Rank Adaptation of Large Language Models},
author={Hu, Edward and Shen, Yelong and Wallis, Phil and Allen-Zhu, Zeyuan and Li, Yuanzhi and Wang, Lu and Chen, Weizhu},
year={2021},
eprint={2106.09685},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
@inproceedings{wolf-etal-2020-transformers,
title = "Transformers: State-of-the-Art Natural Language Processing",
author = "Thomas Wolf and Lysandre Debut and Victor Sanh and Julien Chaumond and Clement Delangue and Anthony Moi and Pierric Cistac and Tim Rault and Rémi Louf and Morgan Funtowicz and Joe Davison and Sam Shleifer and Patrick von Platen and Clara Ma and Yacine Jernite and Julien Plu and Canwen Xu and Teven Le Scao and Sylvain Gugger and Mariama Drame and Quentin Lhoest and Alexander M. Rush",
booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
month = oct,
year = "2020",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://www.aclweb.org/anthology/2020.emnlp-demos.6",
pages = "38--45"
}
@misc{peft,
title = {PEFT: State-of-the-art Parameter-Efficient Fine-Tuning methods},
author = {Sourab Mangrulkar and Sylvain Gugger and Lysandre Debut and Younes Belkada and Sayak Paul},
howpublished = {\url{https://github.com/huggingface/peft}},
year = {2022}
}
"If I have seen further it is by standing on the shoulders of Giants." — Isaac Newton
This project was made possible through the foundational contributions of the open-source and AI research communities: LLaMA, Stanford Alpaca, Alpaca-LoRA, Cabrita, Cleaned Alpaca Dataset, GPT-4-LLM, Alpaca-LoRA-Serve, OpenAI, and Hugging Face.
11 commits
Jupyter Notebook
100.0%