├── .gitignore ├── README.md ├── bert_score ├── __init__.py ├── score.py └── utils.py ├── example ├── flickr.json └── samples.json ├── requirements.txt ├── run_metric.py ├── run_metric_simple.py └── stop_word_list.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.ipynb 2 | *.pt 3 | .DS_Store 4 | /.idea/ 5 | */__pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/README.md -------------------------------------------------------------------------------- /bert_score/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/bert_score/__init__.py -------------------------------------------------------------------------------- /bert_score/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/bert_score/score.py -------------------------------------------------------------------------------- /bert_score/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/bert_score/utils.py -------------------------------------------------------------------------------- /example/flickr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/example/flickr.json -------------------------------------------------------------------------------- /example/samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/example/samples.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/run_metric.py -------------------------------------------------------------------------------- /run_metric_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/run_metric_simple.py -------------------------------------------------------------------------------- /stop_word_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck0123/improved-bertscore-for-image-captioning-evaluation/HEAD/stop_word_list.txt --------------------------------------------------------------------------------