Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -37,3 +37,70 @@ configs:
|
|
| 37 |
- split: train
|
| 38 |
path: data/train-*
|
| 39 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
- split: train
|
| 38 |
path: data/train-*
|
| 39 |
---
|
| 40 |
+
|
| 41 |
+
---
|
| 42 |
+
license: cc-by-4.0
|
| 43 |
+
task_categories:
|
| 44 |
+
- question-answering
|
| 45 |
+
- multiple-choice
|
| 46 |
+
language:
|
| 47 |
+
- pt
|
| 48 |
+
tags:
|
| 49 |
+
- poscomp
|
| 50 |
+
- portuguese
|
| 51 |
+
- evaluation
|
| 52 |
+
- benchmark
|
| 53 |
+
- computer-science
|
| 54 |
+
size_categories:
|
| 55 |
+
- n<1K
|
| 56 |
+
---
|
| 57 |
+
|
| 58 |
+
# POSCOMP
|
| 59 |
+
|
| 60 |
+
Questions from the **POSCOMP** exams of **2022** and **2023**. POSCOMP (Exame Nacional para Ingresso na Pós-Graduação em Computação) is the Brazilian national exam for admission to graduate programs in Computing, administered by the Sociedade Brasileira de Computação (SBC). The dataset contains 140 multiple-choice questions in Portuguese covering mathematics, computer fundamentals, and computer technology.
|
| 61 |
+
|
| 62 |
+
This dataset was released as part of **PoETa v2**.
|
| 63 |
+
|
| 64 |
+
## Dataset Structure
|
| 65 |
+
|
| 66 |
+
A single `train` split with 140 rows. Each example has the following fields:
|
| 67 |
+
|
| 68 |
+
| Field | Type | Description |
|
| 69 |
+
|---|---|---|
|
| 70 |
+
| `question` | string | The question text. |
|
| 71 |
+
| `number` | int64 | Question number within its exam. |
|
| 72 |
+
| `id` | string | Unique identifier (e.g. `POSCOMP_2023_56`). |
|
| 73 |
+
| `alternatives` | list[string] | The multiple-choice options (A–E). |
|
| 74 |
+
| `associated_images` | list | Images associated with the question, if any. |
|
| 75 |
+
| `answer` | string | The correct alternative (letter). |
|
| 76 |
+
| `has_associated_images` | bool | Whether the question has associated images. |
|
| 77 |
+
| `alternatives_type` | string | Type of the alternatives. |
|
| 78 |
+
| `subject` | list[string] | Subject area(s): `mathematics`, `computer_fundamentals`, `computer_technology`. |
|
| 79 |
+
| `IU` | bool | Requires image understanding. |
|
| 80 |
+
| `MR` | bool | Requires mathematical reasoning. |
|
| 81 |
+
| `CR` | bool | Requires complex reasoning. |
|
| 82 |
+
|
| 83 |
+
## Usage
|
| 84 |
+
|
| 85 |
+
```python
|
| 86 |
+
from datasets import load_dataset
|
| 87 |
+
|
| 88 |
+
ds = load_dataset("maritaca-ai/poscomp", split="train")
|
| 89 |
+
print(ds[0])
|
| 90 |
+
```
|
| 91 |
+
|
| 92 |
+
## Citation
|
| 93 |
+
|
| 94 |
+
If you use this dataset, please cite:
|
| 95 |
+
|
| 96 |
+
```bibtex
|
| 97 |
+
@article{almeida2025poeta,
|
| 98 |
+
title={PoETa v2: Toward More Robust Evaluation of Large Language Models in Portuguese},
|
| 99 |
+
author={Almeida, Thales Rog{\'e}rio Sales and Pires, Ramon and Abonizio, Hugo and Nogueira, Rodrigo and Pedrini, Helio},
|
| 100 |
+
journal={IEEE Access},
|
| 101 |
+
volume={13},
|
| 102 |
+
pages={214180--214200},
|
| 103 |
+
year={2025},
|
| 104 |
+
publisher={IEEE}
|
| 105 |
+
}
|
| 106 |
+
```
|