Ashitasaxena
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -4,4 +4,37 @@ language:
|
|
4 |
- en
|
5 |
tags:
|
6 |
- gaze, hallucination
|
7 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
- en
|
5 |
tags:
|
6 |
- gaze, hallucination
|
7 |
+
---
|
8 |
+
|
9 |
+
## Dataset Details
|
10 |
+
|
11 |
+
This repository consists the eye-tracking dataset released as part of EMNLP 2023 paper: [Eyes Show the Way: Modelling Gaze Behaviour for Hallucination Detection](https://aclanthology.org/2023.findings-emnlp.764.pdf) .
|
12 |
+
|
13 |
+
The dataset is formatted as a jsonl file ([jsonlines-guide](https://jsonlines.org/)). Each line can be loaded as a json object, and has the following format:
|
14 |
+
|
15 |
+
```
|
16 |
+
{
|
17 |
+
'trial_id' : <instance id (can take values from 1-500)>
|
18 |
+
'text' : <the text presented to the annotator, in a claim:context format>
|
19 |
+
'participant_id' : <participant id (p01, p02, p03, p04, p05)>
|
20 |
+
'fixation_seqs' : <sequence ids of fixations>
|
21 |
+
'fixation_word_ids' : <a sequence containing the ids of the words being fixated in the order in which they were fixated upon>
|
22 |
+
'fixation_word_texts' : <a sequence containing the words being fixated in the order in which they were fixated upon>
|
23 |
+
'fixation_durations' : <a sequence containing the fixation durations (in ms) in the order in which the words were fixated upon>
|
24 |
+
'annotator_labels' : <label given by the annotator (can take a value: hallucinated/non_hallucinated)>
|
25 |
+
'true_labels' : <true label from the FactCC dataset (can take a value: hallucinated/non_hallucinated)>
|
26 |
+
}
|
27 |
+
```
|
28 |
+
|
29 |
+
## Cite the work
|
30 |
+
|
31 |
+
If you make use of the dataset or the code please cite our paper.
|
32 |
+
|
33 |
+
```
|
34 |
+
@inproceedings{maharaj2023eyes,
|
35 |
+
title={Eyes Show the Way: Modelling Gaze Behaviour for Hallucination Detection},
|
36 |
+
author={Maharaj, Kishan and Saxena, Ashita and Kumar, Raja and Mishra, Abhijit and Bhattacharyya, Pushpak},
|
37 |
+
booktitle={The 2023 Conference on Empirical Methods in Natural Language Processing},
|
38 |
+
year={2023}
|
39 |
+
}
|
40 |
+
```
|