holylovenia commited on
Commit
06cdd3a
1 Parent(s): c3e0fe9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -17
README.md CHANGED
@@ -1,22 +1,60 @@
 
1
  ---
2
- tags:
3
- - summarization
4
- language:
5
  - ind
 
 
 
 
 
6
  ---
7
 
8
- # indosum
9
-
10
  INDOSUM is a new benchmark dataset for Indonesian text summarization.
11
-
12
  The dataset consists of news articles and manually constructed summaries.
13
 
 
 
 
 
 
 
 
 
 
14
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
 
 
 
 
 
 
17
 
18
  ## Citation
19
 
 
20
  ```
21
  @INPROCEEDINGS{8629109,
22
  author={Kurniawan, Kemal and Louvan, Samuel},
@@ -27,16 +65,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
27
  number={},
28
  pages={215-220},
29
  doi={10.1109/IALP.2018.8629109}}
30
- ```
31
-
32
- ## License
33
-
34
- Apache License, Version 2.0
35
-
36
- ## Homepage
37
 
38
- [https://github.com/kata-ai/indosum](https://github.com/kata-ai/indosum)
39
 
40
- ### NusaCatalogue
 
 
 
 
 
 
41
 
42
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ language:
 
 
4
  - ind
5
+ pretty_name: Indosum
6
+ task_categories:
7
+ - summarization
8
+ tags:
9
+ - summarization
10
  ---
11
 
 
 
12
  INDOSUM is a new benchmark dataset for Indonesian text summarization.
 
13
  The dataset consists of news articles and manually constructed summaries.
14
 
15
+
16
+ ## Languages
17
+
18
+ ind
19
+
20
+ ## Supported Tasks
21
+
22
+ Summarization
23
+
24
  ## Dataset Usage
25
+ ### Using `datasets` library
26
+ ```
27
+ from datasets import load_dataset
28
+ dset = datasets.load_dataset("SEACrowd/indosum", trust_remote_code=True)
29
+ ```
30
+ ### Using `seacrowd` library
31
+ ```import seacrowd as sc
32
+ # Load the dataset using the default config
33
+ dset = sc.load_dataset("indosum", schema="seacrowd")
34
+ # Check all available subsets (config names) of the dataset
35
+ print(sc.available_config_names("indosum"))
36
+ # Load the dataset using a specific config
37
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
38
+ ```
39
+
40
+ 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).
41
+
42
 
43
+ ## Dataset Homepage
44
+
45
+ [https://github.com/kata-ai/indosum](https://github.com/kata-ai/indosum)
46
+
47
+ ## Dataset Version
48
+
49
+ Source: 1.0.0. SEACrowd: 2024.06.20.
50
+
51
+ ## Dataset License
52
+
53
+ Apache License, Version 2.0
54
 
55
  ## Citation
56
 
57
+ If you are using the **Indosum** dataloader in your work, please cite the following:
58
  ```
59
  @INPROCEEDINGS{8629109,
60
  author={Kurniawan, Kemal and Louvan, Samuel},
 
65
  number={},
66
  pages={215-220},
67
  doi={10.1109/IALP.2018.8629109}}
 
 
 
 
 
 
 
68
 
 
69
 
70
+ @article{lovenia2024seacrowd,
71
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
72
+ 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},
73
+ year={2024},
74
+ eprint={2406.10118},
75
+ journal={arXiv preprint arXiv: 2406.10118}
76
+ }
77
 
78
+ ```