Ka2ukiMatsuda commited on
Commit
001a4a5
·
verified ·
1 Parent(s): 93a919b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
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
+ [![arXiv](https://img.shields.io/badge/arXiv-2409.19255-B31B1B)](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
+ ```