indonesian-recipes / README.md
junwatu's picture
Update README.md
00b37b7 verified
---
license: other
license_name: research-use-as-is
language:
- id
task_categories:
- text-generation
tags:
- recipes
- indonesian
- cooking
- dishes
- food
size_categories:
- 10K<n<100K
pretty_name: Indonesian Recipes
configs:
- config_name: default
data_files:
- split: train
path: data/train.parquet
- split: eval
path: data/eval.parquet
---
# Indonesian Recipes
A structured collection of Indonesian recipes for fine-tuning text-generation models. Each row is a single recipe with a title, an ingredient list, and ordered preparation steps.
## Dataset Description
- **Point of Contact:** [@junwatu](https://huggingface.co/junwatu)
## Schema
| Column | Type | Description |
|---|---|---|
| `title` | string | Recipe name |
| `ingredients` | list&lt;string&gt; | One item per ingredient line |
| `steps` | list&lt;string&gt; | Ordered preparation steps |
| `num_ingredients` | int | `len(ingredients)` |
| `num_steps` | int | `len(steps)` |
| `char_count` | int | Total characters across ingredients + steps |
### Example
```json
{
"title": "Pesmol ikan mujair (nila)",
"ingredients": ["1 kg ikan mujair", "12 siung bawang merah", "..."],
"steps": ["Bersihkan kotoran ikan...", "Marinasi dengan garam...", "..."],
"num_ingredients": 14,
"num_steps": 6,
"char_count": 880
}
```
## Limitations
- Common dishes appear many times under near-identical titles (e.g. "Tongseng Kambing"). Each is a distinct data with different ingredient ratios and methods, but downstream training should be aware of the imbalance.
- Recipes use colloquial Indonesian, abbreviations (`sdm`, `sdt`, `bh`, `siung`, `secukupnya`), and occasional regional vocabulary.
- Recipe quality and clarity vary across submissions.
## License & Terms
The dataset is offered **as-is, without warranty, and without claim of license** over the underlying recipe content. The compilation, cleaning, and structuring is shared under research-use conventions; the recipes themselves remain the property of their original authors.
**No grant.** This dataset does not grant rights you don't already have under applicable law. If your intended use requires a license to the underlying content, you are responsible for obtaining it.
**Takedown.** If you are an author of recipe content included here and would like it removed, open a discussion on this dataset page or contact [@junwatu](https://huggingface.co/junwatu). Removal is prompt and unconditional.
**Disclaimer.** No warranty, express or implied. Use at your own risk.
## Maintainer
[@junwatu](https://huggingface.co/junwatu) — please open a discussion on the dataset page for issues or corrections.