pkmitl205 commited on
Commit
55df757
·
verified ·
1 Parent(s): ca56e8e

Update README.md

Browse files

# Thai Food QA Dataset for LLM Training

## Overview
This dataset contains **1000 Thai food-related question-answer pairs** designed for training **Large Language Models (LLMs)**. It covers various aspects of Thai cuisine, including ingredients, cooking methods, regional origins, dietary adaptations, and nutritional values.

## Dataset Information
- **Total Entries:** 1000
- **Format:** CSV (Comma-Separated Values)
- **Columns:**
- `question`: A natural language question related to Thai food
- `answer`: A detailed response based on Thai cuisine knowledge

## Example Data
| Question | Answer |
|----------|--------|
| ฉันอยากทำ กุ้งทาพริกไทยกระเทียม ที่บ้าน ต้องเตรียมวัตถุดิบอะไรบ้าง | สำหรับการทำ กุ้งทาพริกไทยกระเทียม คุณต้องเตรียมวัตถุดิบดังนี้... |
| มีเคล็ดลับอะไรในการทำ กุ้งทาพริกไทยกระเทียม ให้อร่อยขึ้นบ้าง | การทำ กุ้งทาพริกไทยกระเทียม ให้อร่อยสามารถใช้เคล็ดลับเหล่านี้... |
| กุ้งทาพริกไทยกระเทียม เป็นอาหารจากภาคไหนของไทย และมีจุดเด่นอะไร | กุ้งทาพริกไทยกระเทียม เป็นอาหารที่ได้รับความนิยมในไทย มักพบได้ในบางภูมิภาค... |

## Usage
This dataset is suitable for:
- **Training and fine-tuning LLMs** for question-answering tasks related to food
- **Developing AI chatbots** that provide cooking advice
- **Enhancing culinary search engines** with structured Q&A data

## How to Use
You can load the dataset using Python:
```python
from datasets import load_dataset

dataset = load_dataset("pkmitl205/thai_food_question_answering_dataset")
print(dataset)
```

## License
This dataset is released under the **MIT License**.
- You are **free to use, modify, distribute, and sublicense** this dataset.
- License details: [MIT License](https://opensource.org/licenses/MIT)

Files changed (1) hide show
  1. README.md +9 -3
README.md CHANGED
@@ -1,3 +1,9 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - Thai Food
5
+ - Machine Learning
6
+ - LLM Training
7
+ size_categories:
8
+ - 100K<n<1M
9
+ ---