File size: 4,295 Bytes
e7a0694
 
bd52884
 
6309b6c
bd52884
 
 
 
 
 
 
6309b6c
 
e7a0694
bd52884
6309b6c
bd52884
6309b6c
 
bd52884
6309b6c
bd52884
6309b6c
 
 
 
 
bd52884
6309b6c
bd52884
6309b6c
 
 
 
 
 
bd52884
6309b6c
 
 
 
 
 
 
 
 
 
bd52884
6309b6c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bd52884
6309b6c
bd52884
6309b6c
 
 
 
 
 
bd52884
 
6309b6c
bd52884
 
 
6309b6c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
license: cc-by-nc-sa-4.0
task_categories:
- text-generation
- question-answering
language:
- it
size_categories:
- 10K<n<100K
tags:
- llama
- instruction-tuning
- alpaca
- stambecco
---

# ๐ŸŒ Stambecco-Plus: Premium Italian Instruction-Tuning Dataset

[![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)
[![Dataset on HuggingFace](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/mchl-labs/stambecco_data_plus_it)

> ๐Ÿ’ก **Note:** This is the premium GPT-4 distilled version. If you are looking for the original Stambecco dataset based on Alpaca-Cleaned, you can find it **[here](https://huggingface.co/datasets/mchl-labs/stambecco_data_it)**.

---

## ๐Ÿ“Œ Dataset Summary

This repository contains the dataset used to train the **Stambecco Plus** models.

The dataset is a high-quality Italian translation and adaptation of the **Alpaca-GPT4** dataset. Because the underlying responses were distilled from GPT-4 rather than GPT-3.5, this dataset features superior reasoning, richer vocabulary, and far fewer hallucinations than standard Alpaca datasets.

- **Language:** Italian (`it`)
- **Base Source:** Alpaca-GPT4 (Instruction Tuning with GPT-4)
- **Primary Use Case:** High-quality instruction fine-tuning, evaluation, and alignment for Italian LLMs.
- **Repository:** `mchl-labs/stambecco_data_plus_it`

---

## ๐Ÿ“– Data Structure

Each entry follows the standard Alpaca instruction-tuning format:

```json
{
  "instruction": "Spiega i vantaggi dell'energia solare rispetto ai combustibili fossili.",
  "input": "",
  "output": "L'energia solare offre numerosi vantaggi rispetto ai combustibili fossili. In primo luogo, รจ una fonte rinnovabile e inesauribile..."
}
```

- **instruction:** The prompt or task description in Italian.
- **input:** Optional contextual information required for the task.
- **output:** The target Italian response.

---

## ๐Ÿš€ Quickstart

Load the dataset directly using the Hugging Face datasets library:
```python
from datasets import load_dataset

dataset = load_dataset("mchl-labs/stambecco_data_plus_it")
print(dataset["train"][0])
```

---

## ๐Ÿ“œ Citation & Attribution

If you use this dataset in your research, please include it in your paper's formal bibliography/references section (rather than a footnote) so citation engines can properly track attribution.

1. Cite Stambecco-Plus (The Italian Dataset)
   
```
@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}}
}
```

2. Original Source Attribution
   
This dataset is a translated derivative of the Alpaca GPT-4 dataset and the original Stanford Alpaca architecture. If you cite Stambecco Plus, please also consider citing the original researchers:

Alpaca-GPT4:
```
@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}
}
```

Stanford Alpaca (Original base dataset):
```
@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}}
}
```

---

## โš–๏ธ License

This dataset is released under the **Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)** license. 

It is provided strictly for non-commercial academic research. Because the underlying data was generated using OpenAI's GPT-4 API, this dataset is subject to OpenAI's Terms of Use and cannot be used to develop models that compete commercially with OpenAI. If you remix, transform, or build upon this dataset, you must distribute your contributions under the same open, non-commercial license.