rafael-delf commited on
Commit
85e14d7
·
verified ·
1 Parent(s): a22ea96

docs: atualizar dataset card (815 registros)

Browse files
Files changed (1) hide show
  1. README.md +79 -45
README.md CHANGED
@@ -1,47 +1,81 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: ano
7
- dtype: int64
8
- - name: dia
9
- dtype: int64
10
- - name: caderno
11
- dtype: int64
12
- - name: aplicacao
13
- dtype: string
14
- - name: numero
15
- dtype: int64
16
- - name: enunciado
17
- dtype: string
18
- - name: alternativa_a
19
- dtype: string
20
- - name: alternativa_b
21
- dtype: string
22
- - name: alternativa_c
23
- dtype: string
24
- - name: alternativa_d
25
- dtype: string
26
- - name: alternativa_e
27
- dtype: string
28
- - name: gabarito
29
- dtype: string
30
- - name: materia
31
- dtype: string
32
- - name: nivel
33
- dtype: string
34
- - name: licenca
35
- dtype: string
36
- splits:
37
- - name: train
38
- num_bytes: 1375624
39
- num_examples: 815
40
- download_size: 678789
41
- dataset_size: 1375624
42
- configs:
43
- - config_name: default
44
- data_files:
45
- - split: train
46
- path: data/train-*
47
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - pt
4
+ license: other
5
+ tags:
6
+ - education
7
+ - portuguese
8
+ - brazil
9
+ - enem
10
+ - exam
11
+ - qa
12
+ - mcqa
13
+ pretty_name: "GAIA-EDU — Questões ENEM (INEP)"
14
+ size_categories:
15
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
+
18
+ # GAIA-EDU — Questões ENEM (INEP)
19
+
20
+ Parte do projeto **GAIA-EDU** — corpus educacional brasileiro desenvolvido pelo
21
+ [CEIA-UFG](https://ceia.ufg.br/) (Centro de Excelência em IA da Universidade Federal de Goiás)
22
+ para o agente tutor socrático **GAIA**.
23
+
24
+ > **815 registros** | Idioma: Português (PT-BR) | Organização: [CEIA-GAIA-EDU](https://huggingface.co/CEIA-GAIA-EDU)
25
+
26
+ ## Sobre este dataset
27
+
28
+ Questões estruturadas das provas do ENEM (Exame Nacional do Ensino Médio) extraídas dos PDFs oficiais do INEP. Inclui enunciado, cinco alternativas (A-E) e gabarito oficial. Cobertura: 2020-2024.
29
+ > **Licença:** [Dados Abertos do Governo Federal (LAI)](https://www.gov.br/inep/pt-br/acesso-a-informacao/dados-abertos)
30
+
31
+ ## Como usar
32
+
33
+ ```python
34
+ from datasets import load_dataset
35
+
36
+ ds = load_dataset("CEIA-GAIA-EDU/gaia-edu-enem", split="train")
37
+ print(ds[0])
38
+ ```
39
+
40
+ ## Schema
41
+
42
+ | Campo | Tipo | Descrição |
43
+ |-------|------|-----------|
44
+ | `id` | string | ID único (`enem_{ano}_d{dia}_cd{caderno}_q{num}`) |
45
+ | `ano` | int | Ano do exame (2020–2024) |
46
+ | `dia` | int | Dia de aplicação (1 ou 2) |
47
+ | `caderno` | int | Número do caderno (1–8) |
48
+ | `aplicacao` | string | Tipo (`impresso` ou `digital`) |
49
+ | `numero` | int | Número da questão |
50
+ | `enunciado` | string | Texto da questão |
51
+ | `alternativa_a`…`alternativa_e` | string | Alternativas A a E |
52
+ | `gabarito` | string | Resposta correta (A/B/C/D/E) |
53
+ | `materia` | string | Disciplina inferida |
54
+ | `nivel` | string | `médio` (fixo) |
55
+
56
+ ## Outros datasets da série GAIA-EDU
57
+
58
+ | Dataset | Descrição |
59
+ |---------|-----------|
60
+ | [CEIA-GAIA-EDU/gaia-edu-corpus](https://huggingface.co/datasets/CEIA-GAIA-EDU/gaia-edu-corpus) | Corpus RAG unificado |
61
+ | [CEIA-GAIA-EDU/gaia-edu-enem](https://huggingface.co/datasets/CEIA-GAIA-EDU/gaia-edu-enem) | Questões ENEM |
62
+ | [CEIA-GAIA-EDU/gaia-edu-bncc](https://huggingface.co/datasets/CEIA-GAIA-EDU/gaia-edu-bncc) | Habilidades BNCC |
63
+ | [CEIA-GAIA-EDU/gaia-edu-bdtd](https://huggingface.co/datasets/CEIA-GAIA-EDU/gaia-edu-bdtd) | Teses e dissertações |
64
+ | [CEIA-GAIA-EDU/gaia-edu-scielo](https://huggingface.co/datasets/CEIA-GAIA-EDU/gaia-edu-scielo) | Livros SciELO |
65
+
66
+ ## Citação
67
+
68
+ ```bibtex
69
+ @dataset{gaia_edu_enem_2025,
70
+ title = {{GAIA-EDU — Questões ENEM (INEP)}},
71
+ author = {{CEIA-UFG}},
72
+ year = {{2025}},
73
+ publisher = {{HuggingFace}},
74
+ url = {{https://huggingface.co/datasets/CEIA-GAIA-EDU/gaia-edu-enem}}
75
+ }
76
+ ```
77
+
78
+ ## Contato
79
+
80
+ Centro de Excelência em Inteligência Artificial — UFG
81
+ pesquisa@inf.ufg.br | [CEIA-UFG](https://ceia.ufg.br/)