--- language: - ind pretty_name: Id Wsd task_categories: - word-sense-disambiguation tags: - word-sense-disambiguation --- Word Sense Disambiguation (WSD) is a task to determine the correct sense of an ambiguous word. The training data was collected from news websites and manually annotated. The words in training data were processed using the morphological analysis to obtain lemma. The features being used were some words around the target word (including the words before and after the target word), the nearest verb from the target word, the transitive verb around the target word, and the document context. ## Languages ind ## Supported Tasks Word Sense Disambiguation ## Dataset Usage ### Using `datasets` library ``` from datasets import load_dataset dset = datasets.load_dataset("SEACrowd/id_wsd", trust_remote_code=True) ``` ### Using `seacrowd` library ```import seacrowd as sc # Load the dataset using the default config dset = sc.load_dataset("id_wsd", schema="seacrowd") # Check all available subsets (config names) of the dataset print(sc.available_config_names("id_wsd")) # Load the dataset using a specific config dset = sc.load_dataset_by_config_name(config_name="") ``` 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). ## Dataset Homepage [https://github.com/rmahendra/Indonesian-WSD](https://github.com/rmahendra/Indonesian-WSD) ## Dataset Version Source: 1.0.0. SEACrowd: 2024.06.20. ## Dataset License Unknown ## Citation If you are using the **Id Wsd** dataloader in your work, please cite the following: ``` @inproceedings{mahendra-etal-2018-cross, title = "Cross-Lingual and Supervised Learning Approach for {I}ndonesian Word Sense Disambiguation Task", author = "Mahendra, Rahmad and Septiantri, Heninggar and Wibowo, Haryo Akbarianto and Manurung, Ruli and Adriani, Mirna", booktitle = "Proceedings of the 9th Global Wordnet Conference", month = jan, year = "2018", address = "Nanyang Technological University (NTU), Singapore", publisher = "Global Wordnet Association", url = "https://aclanthology.org/2018.gwc-1.28", pages = "245--250", abstract = "Ambiguity is a problem we frequently face in Natural Language Processing. Word Sense Disambiguation (WSD) is a task to determine the correct sense of an ambiguous word. However, research in WSD for Indonesian is still rare to find. The availability of English-Indonesian parallel corpora and WordNet for both languages can be used as training data for WSD by applying Cross-Lingual WSD method. This training data is used as an input to build a model using supervised machine learning algorithms. Our research also examines the use of Word Embedding features to build the WSD model.", } @article{lovenia2024seacrowd, title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages}, 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}, year={2024}, eprint={2406.10118}, journal={arXiv preprint arXiv: 2406.10118} } ```