Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -19,3 +19,51 @@ configs:
|
|
19 |
- split: train
|
20 |
path: data/train-*
|
21 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
- split: train
|
20 |
path: data/train-*
|
21 |
---
|
22 |
+
|
23 |
+
# Thai Famous People Image Dataset
|
24 |
+
|
25 |
+
## Dataset Description
|
26 |
+
|
27 |
+
The Thai Famous People Image Dataset is a collection of images and descriptions of famous Thai personalities. This dataset is designed to provide a comprehensive resource for researchers, developers, and enthusiasts interested in Thai culture, history, and notable figures. The data was extracted from the Thai Wikipedia dump in September 2024, ensuring up-to-date and relevant information.
|
28 |
+
|
29 |
+
## Maintainer
|
30 |
+
Kobkrit Viriyayudhakorn (kobkrit@iapp.co.th)
|
31 |
+
|
32 |
+
## License
|
33 |
+
Apache 2.0
|
34 |
+
|
35 |
+
### Key Features:
|
36 |
+
- Images of famous Thai people
|
37 |
+
- Textual descriptions of each personality
|
38 |
+
- Titles or names of the individuals
|
39 |
+
|
40 |
+
## Dataset Creation
|
41 |
+
|
42 |
+
This dataset was created using a custom script that processes information extracted from the Thai Wikipedia dump of September 2024. The script performs the following steps:
|
43 |
+
|
44 |
+
1. Extracts relevant articles and images from the Wikipedia dump
|
45 |
+
2. Processes and cleans the extracted data
|
46 |
+
3. Retrieves images from either local files or URLs
|
47 |
+
4. Combines images with corresponding textual descriptions and titles
|
48 |
+
5. Creates a Hugging Face Dataset object
|
49 |
+
6. Pushes the dataset to the Hugging Face Hub
|
50 |
+
|
51 |
+
## Dataset Structure
|
52 |
+
|
53 |
+
The dataset consists of the following fields:
|
54 |
+
|
55 |
+
- `image`: An image of the famous Thai person
|
56 |
+
- `text`: A textual description of the person extracted from their Wikipedia article
|
57 |
+
- `title`: The name or title of the person
|
58 |
+
|
59 |
+
## Usage
|
60 |
+
|
61 |
+
You can use this dataset for various tasks, including but not limited to:
|
62 |
+
|
63 |
+
- Image classification of Thai personalities
|
64 |
+
- Text-to-image or image-to-text generation tasks
|
65 |
+
- Cultural and historical research on Thai public figures
|
66 |
+
- Analysis of Thai Wikipedia content
|
67 |
+
|
68 |
+
To use the dataset, you can load it using the Hugging Face `datasets` library:
|
69 |
+
|