Update README.md
Browse files
README.md
CHANGED
@@ -33,3 +33,41 @@ configs:
|
|
33 |
- split: test
|
34 |
path: data/test-*
|
35 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
- split: test
|
34 |
path: data/test-*
|
35 |
---
|
36 |
+
# Nebula Dataset
|
37 |
+
|
38 |
+
DENEB: A Hallucination-Robust Automatic Evaluation Metric for Image Captioning
|
39 |
+
[](https://arxiv.org/abs/2409.19255)
|
40 |
+
|
41 |
+
## Usage
|
42 |
+
|
43 |
+
```python
|
44 |
+
>>> from datasets import load_dataset
|
45 |
+
>>> nebula = load_dataset("Ka2ukiMatsuda/Nebula")
|
46 |
+
>>> print(nebula)
|
47 |
+
DatasetDict({
|
48 |
+
train: Dataset({
|
49 |
+
features: ['file_name', 'image', 'refs', 'mt', 'human_score'],
|
50 |
+
num_rows: 26382
|
51 |
+
})
|
52 |
+
valid: Dataset({
|
53 |
+
features: ['file_name', 'image', 'refs', 'mt', 'human_score'],
|
54 |
+
num_rows: 3298
|
55 |
+
})
|
56 |
+
test: Dataset({
|
57 |
+
features: ['file_name', 'image', 'refs', 'mt', 'human_score'],
|
58 |
+
num_rows: 3298
|
59 |
+
})
|
60 |
+
})
|
61 |
+
```
|
62 |
+
|
63 |
+
## Citation
|
64 |
+
|
65 |
+
```bash
|
66 |
+
@inproceedings{matsuda2024deneb,
|
67 |
+
title={DENEB: A Hallucination-Robust Automatic Evaluation Metric for Image Captioning},
|
68 |
+
author={Kazuki Matsuda and Yuiga Wada and Komei Sugiura},
|
69 |
+
booktitle={Proceedings of the Asian Conference on Computer Vision (ACCV)},
|
70 |
+
year={2024},
|
71 |
+
pages={3570--3586}
|
72 |
+
}
|
73 |
+
```
|