Datasets:

Modalities:
Text
Formats:
csv
Languages:
Polish
ArXiv:
Libraries:
Datasets
pandas
License:
kwojtasik commited on
Commit
c4ce495
·
verified ·
1 Parent(s): 7286207

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +108 -3
README.md CHANGED
@@ -1,3 +1,108 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators: []
5
+ language:
6
+ - pl
7
+ license:
8
+ - cc-by-sa-4.0
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - 10K<n<100K
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - text-retrieval
17
+ task_ids:
18
+ - document-retrieval
19
+ pretty_name: 'PUGG: IR dataset for Polish'
20
+ tags:
21
+ - wikipedia
22
+ ---
23
+ # PUGG: KBQA, MRC, IR Dataset for Polish
24
+
25
+ ## Description
26
+
27
+ This repository contains the PUGG dataset designed for three NLP tasks in the Polish language:
28
+
29
+ - KBQA (Knowledge Base Question Answering)
30
+ - MRC (Machine Reading Comprehension)
31
+ - IR (Information Retrieval)
32
+
33
+ ## Paper
34
+
35
+ For more detailed information, please refer to our research paper titled:
36
+
37
+ **"Developing PUGG for Polish: A Modern Approach to KBQA, MRC, and IR Dataset Construction"**
38
+
39
+ Authored by:
40
+ * Albert Sawczyn
41
+ * Katsiaryna Viarenich
42
+ * Konrad Wojtasik
43
+ * Aleksandra Domogała
44
+ * Marcin Oleksy
45
+ * Maciej Piasecki
46
+ * Tomasz Kajdanowicz
47
+
48
+ **The paper was accepted for ACL 2024 (findings).**
49
+
50
+ ## Repositories
51
+
52
+ The dataset is available in the following repositories:
53
+
54
+ * [General](https://huggingface.co/datasets/clarin-pl/PUGG) - contains all tasks (KBQA, MRC, IR*)
55
+
56
+ For more straightforward usage, the tasks are also available in separate repositories:
57
+
58
+ * [KBQA](https://huggingface.co/datasets/clarin-pl/PUGG_KBQA)
59
+ * [MRC](https://huggingface.co/datasets/clarin-pl/PUGG_MRC)
60
+ * [IR](https://huggingface.co/datasets/clarin-pl/PUGG_IR) **(this repository)**
61
+
62
+ The knowledge graph for KBQA task is available in the following repository:
63
+
64
+ * [Knowledge Graph](https://huggingface.co/datasets/clarin-pl/PUGG_KG)
65
+
66
+ Note: If you want to utilize the IR task in the BEIR format (`qrels` in `.tsv` format), please
67
+ download the [IR](https://huggingface.co/datasets/clarin-pl/PUGG_IR) repository.
68
+
69
+ ## Links
70
+
71
+ * Code:
72
+ * [Github](https://github.com/CLARIN-PL/PUGG)
73
+ * Paper:
74
+ * ACL - TBA
75
+ * [Arxiv](https://arxiv.org/abs/2408.02337)
76
+
77
+ ## Citation
78
+
79
+ ```bibtex
80
+ @misc{sawczyn2024developingpuggpolishmodern,
81
+ title={Developing PUGG for Polish: A Modern Approach to KBQA, MRC, and IR Dataset Construction},
82
+ author={Albert Sawczyn and Katsiaryna Viarenich and Konrad Wojtasik and Aleksandra Domogała and Marcin Oleksy and Maciej Piasecki and Tomasz Kajdanowicz},
83
+ year={2024},
84
+ eprint={2408.02337},
85
+ archivePrefix={arXiv},
86
+ primaryClass={cs.AI},
87
+ url={https://arxiv.org/abs/2408.02337},
88
+ }
89
+ ```
90
+
91
+ ## Contact
92
+
93
94
+
95
+ ## Usage
96
+
97
+ ```python
98
+ from datasets import load_dataset
99
+
100
+ dataset_corpus = load_dataset("clarin-pl/PUGG_IR", "corpus")
101
+ print(dataset)
102
+
103
+ dataset_queries = load_dataset("clarin-pl/PUGG_IR", "queries")
104
+ print(dataset)
105
+
106
+ dataset_qrels = load_dataset("clarin-pl/PUGG_IR", "qrels")
107
+ print(dataset)
108
+ ```