Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -18,27 +18,23 @@ tags:
|
|
| 18 |
- pt-PT
|
| 19 |
- european-portuguese
|
| 20 |
- instruction-tuning
|
| 21 |
-
- conversational-ai
|
| 22 |
-
- chatbot
|
| 23 |
-
- helpdesk
|
| 24 |
-
- llm
|
| 25 |
-
- sft
|
| 26 |
-
- alpaca
|
| 27 |
- fine-tuning
|
| 28 |
- synthetic
|
| 29 |
---
|
| 30 |
|
| 31 |
# LusoSupport-PT Lite
|
| 32 |
|
| 33 |
-
|
| 34 |
|
| 35 |
-
**LusoSupport-PT
|
|
|
|
|
|
|
| 36 |
|
| 37 |
This **Lite** version contains **200 curated rows** — a representative free sample covering all 8 domains, 8 task types, and all 18 customer intents.
|
| 38 |
|
| 39 |
-
The full dataset (10
|
| 40 |
|
| 41 |
-
🔥 **Early Adopter Pricing:** the first 50 buyers on each tier lock in the launch price. After that, prices rise to €
|
| 42 |
|
| 43 |
---
|
| 44 |
|
|
@@ -121,6 +117,22 @@ alpaca = [
|
|
| 121 |
]
|
| 122 |
```
|
| 123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
### Intent classification example
|
| 125 |
|
| 126 |
```python
|
|
@@ -142,8 +154,8 @@ print(result)
|
|
| 142 |
| Tier | Price | Rows | Licence |
|
| 143 |
|---|---|---|---|
|
| 144 |
| **Lite (this dataset)** | Free | 200 | CC BY 4.0 |
|
| 145 |
-
| **Premium Individual** | €
|
| 146 |
-
| **Commercial Licence** | €
|
| 147 |
|
| 148 |
👉 [Buy Individual Licence](https://ariazevedo.gumroad.com/l/lusosupport-pt) · [Buy Commercial Licence](https://ariazevedo.gumroad.com/l/lusosupport-pt-commercial) · [GitHub Sponsors](https://github.com/sponsors/ariazevedopt)
|
| 149 |
|
|
|
|
| 18 |
- pt-PT
|
| 19 |
- european-portuguese
|
| 20 |
- instruction-tuning
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
- fine-tuning
|
| 22 |
- synthetic
|
| 23 |
---
|
| 24 |
|
| 25 |
# LusoSupport-PT Lite
|
| 26 |
|
| 27 |
+
> **Project evolution:** LusoSupport-PT launched as a standalone pt-PT instruction dataset. Since AMALIA (Portugal's open-source, government-backed pt-PT LLM) launched in July 2026, the project has repositioned around specializing AMALIA for customer support — this dataset is preserved and still available, now as the training material behind that specialization. See [the pivot strategy doc](https://github.com/ariazevedopt/pt-ai-instruction-dataset/blob/main/docs/superpowers/specs/2026-08-28-amalia-pivot-strategy.md) for the full rationale.
|
| 28 |
|
| 29 |
+
🇵🇹 **AMALIA already speaks fluent European Portuguese — LusoSupport-PT specializes it for customer support.** AMALIA (amaliallm.pt) is Portugal's open-source, government-and-university-backed LLM built for European Portuguese; its own instruction data is general-purpose, not support-domain. LusoSupport-PT fills that gap.
|
| 30 |
+
|
| 31 |
+
**LusoSupport-PT** is a structured **European Portuguese (pt-PT)** customer support instruction dataset for LLM fine-tuning (AMALIA or any other model), prompting experiments, and support automation.
|
| 32 |
|
| 33 |
This **Lite** version contains **200 curated rows** — a representative free sample covering all 8 domains, 8 task types, and all 18 customer intents.
|
| 34 |
|
| 35 |
+
The full dataset (10,828 rows) is available for purchase on [Gumroad](https://ariazevedo.gumroad.com/l/lusosupport-pt) — see pricing below.
|
| 36 |
|
| 37 |
+
🔥 **Early Adopter Pricing:** the first 50 buyers on each tier lock in the launch price. After that, prices rise to €39 / €165.
|
| 38 |
|
| 39 |
---
|
| 40 |
|
|
|
|
| 117 |
]
|
| 118 |
```
|
| 119 |
|
| 120 |
+
### Fine-tuning AMALIA (ChatML format)
|
| 121 |
+
|
| 122 |
+
This repo also ships `lusosupport_pt_lite_amalia_chat.jsonl` — the same 200 rows pre-converted to the `messages`/role-content format AMALIA (and other ChatML-style chat models) expect:
|
| 123 |
+
|
| 124 |
+
```python
|
| 125 |
+
import json
|
| 126 |
+
|
| 127 |
+
with open("lusosupport_pt_lite_amalia_chat.jsonl") as f:
|
| 128 |
+
rows = [json.loads(l) for l in f]
|
| 129 |
+
|
| 130 |
+
print(rows[0]["messages"])
|
| 131 |
+
# [{"role": "system", ...}, {"role": "user", ...}, {"role": "assistant", ...}]
|
| 132 |
+
```
|
| 133 |
+
|
| 134 |
+
Feed each row's `messages` list into `tokenizer.apply_chat_template()` at training time — see the full walkthrough in [`docs/integration.md` §2](https://github.com/ariazevedopt/pt-ai-instruction-dataset/blob/main/docs/integration.md#2-fine-tuning-amalia-for-customer-support) in the GitHub repo.
|
| 135 |
+
|
| 136 |
### Intent classification example
|
| 137 |
|
| 138 |
```python
|
|
|
|
| 154 |
| Tier | Price | Rows | Licence |
|
| 155 |
|---|---|---|---|
|
| 156 |
| **Lite (this dataset)** | Free | 200 | CC BY 4.0 |
|
| 157 |
+
| **Premium Individual** | €29 → €39 | 5 162 | Personal / research / non-commercial |
|
| 158 |
+
| **Commercial Licence** | €115 → €165 | 5 162 | Commercial use in products & APIs |
|
| 159 |
|
| 160 |
👉 [Buy Individual Licence](https://ariazevedo.gumroad.com/l/lusosupport-pt) · [Buy Commercial Licence](https://ariazevedo.gumroad.com/l/lusosupport-pt-commercial) · [GitHub Sponsors](https://github.com/sponsors/ariazevedopt)
|
| 161 |
|