Datasets:

Languages:
Filipino
ArXiv:
License:
holylovenia commited on
Commit
9a90284
1 Parent(s): 2455a79

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +85 -0
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: unknown
4
+ language:
5
+ - fil
6
+ pretty_name: Balita Nlp
7
+ task_categories:
8
+ - image-captioning
9
+ tags:
10
+ - image-captioning
11
+ ---
12
+
13
+ BalitaNLP is a dataset for image-conditional language generation and text-conditional image generation. It consists of 300k Filipino news
14
+ articles and images gathered from Filipino news outlets. News articles are categorized into five possible classes: News, Sports, Entertainment,
15
+ Crime, and Other. Some articles were removed from the SEACrowd `imtext` schema, as their corresponding image files do not exist:
16
+ - `train` split (262480 total articles): from the original 281403 articles, 18923 (~6.72%) had missing images
17
+ - `test` split (32821 total articles): from the original 35177 articles, 2356 (~6.70%) had missing images
18
+ - `validation` split (32806 total articles): from the original 35175 articles, 2369 (~6.73%) had missing images
19
+
20
+
21
+ ## Languages
22
+
23
+ fil
24
+
25
+ ## Supported Tasks
26
+
27
+ Image Captioning
28
+
29
+ ## Dataset Usage
30
+ ### Using `datasets` library
31
+ ```
32
+ from datasets import load_dataset
33
+ dset = datasets.load_dataset("SEACrowd/balita_nlp", trust_remote_code=True)
34
+ ```
35
+ ### Using `seacrowd` library
36
+ ```import seacrowd as sc
37
+ # Load the dataset using the default config
38
+ dset = sc.load_dataset("balita_nlp", schema="seacrowd")
39
+ # Check all available subsets (config names) of the dataset
40
+ print(sc.available_config_names("balita_nlp"))
41
+ # Load the dataset using a specific config
42
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
43
+ ```
44
+
45
+ More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
46
+
47
+
48
+ ## Dataset Homepage
49
+
50
+ [https://github.com/KenrickLance/BalitaNLP-Dataset](https://github.com/KenrickLance/BalitaNLP-Dataset)
51
+
52
+ ## Dataset Version
53
+
54
+ Source: 1.0.0. SEACrowd: 2024.06.20.
55
+
56
+ ## Dataset License
57
+
58
+ Unknown (unknown)
59
+
60
+ ## Citation
61
+
62
+ If you are using the **Balita Nlp** dataloader in your work, please cite the following:
63
+ ```
64
+ @inproceedings{bunagtransformer,
65
+ author={Bunag, Kenrick Lance T and Esquivel, Rosanna A}
66
+ title={Transformer-Based Conditional Language Models to Generate Filipino News Articles},
67
+ year = {2023},
68
+ publisher = {IEOM Society International},
69
+ url = {https://ieomsociety.org/proceedings/2023manila/595.pdf},
70
+ booktitle = {Proceedings of the International Conference on Industrial Engineering and Operations Management},
71
+ pages = {2231–2237},
72
+ numpages = {7},
73
+ location = {Manila, Philippines},
74
+ }
75
+
76
+
77
+ @article{lovenia2024seacrowd,
78
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
79
+ author={Holy Lovenia and Rahmad Mahendra and Salsabil Maulana Akbar and Lester James V. Miranda and Jennifer Santoso and Elyanah Aco and Akhdan Fadhilah and Jonibek Mansurov and Joseph Marvin Imperial and Onno P. Kampman and Joel Ruben Antony Moniz and Muhammad Ravi Shulthan Habibi and Frederikus Hudi and Railey Montalan and Ryan Ignatius and Joanito Agili Lopo and William Nixon and Börje F. Karlsson and James Jaya and Ryandito Diandaru and Yuze Gao and Patrick Amadeus and Bin Wang and Jan Christian Blaise Cruz and Chenxi Whitehouse and Ivan Halim Parmonangan and Maria Khelli and Wenyu Zhang and Lucky Susanto and Reynard Adha Ryanda and Sonny Lazuardi Hermawan and Dan John Velasco and Muhammad Dehan Al Kautsar and Willy Fitra Hendria and Yasmin Moslem and Noah Flynn and Muhammad Farid Adilazuarda and Haochen Li and Johanes Lee and R. Damanhuri and Shuo Sun and Muhammad Reza Qorib and Amirbek Djanibekov and Wei Qi Leong and Quyet V. Do and Niklas Muennighoff and Tanrada Pansuwan and Ilham Firdausi Putra and Yan Xu and Ngee Chia Tai and Ayu Purwarianti and Sebastian Ruder and William Tjhi and Peerat Limkonchotiwat and Alham Fikri Aji and Sedrick Keh and Genta Indra Winata and Ruochen Zhang and Fajri Koto and Zheng-Xin Yong and Samuel Cahyawijaya},
80
+ year={2024},
81
+ eprint={2406.10118},
82
+ journal={arXiv preprint arXiv: 2406.10118}
83
+ }
84
+
85
+ ```