gitextract_240sk8kr/ ├── LICENSE ├── README.md ├── args.py ├── bert/ │ ├── activations.py │ ├── configuration_bert.py │ ├── configuration_utils.py │ ├── file_utils.py │ ├── generation_utils.py │ ├── modeling_bert.py │ ├── modeling_utils.py │ ├── tokenization_bert.py │ ├── tokenization_utils.py │ └── tokenization_utils_base.py ├── data/ │ └── dataset_refer_bert.py ├── demo_inference.py ├── lib/ │ ├── _utils.py │ ├── backbone.py │ ├── mask_predictor.py │ ├── mmcv_custom/ │ │ ├── __init__.py │ │ └── checkpoint.py │ └── segmentation.py ├── refer/ │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── data/ │ │ └── README.md │ ├── evaluation/ │ │ ├── __init__.py │ │ ├── bleu/ │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── bleu.py │ │ │ └── bleu_scorer.py │ │ ├── cider/ │ │ │ ├── __init__.py │ │ │ ├── cider.py │ │ │ └── cider_scorer.py │ │ ├── meteor/ │ │ │ ├── __init__.py │ │ │ └── meteor.py │ │ ├── readme.txt │ │ ├── refEvaluation.py │ │ ├── rouge/ │ │ │ ├── __init__.py │ │ │ └── rouge.py │ │ └── tokenizer/ │ │ ├── __init__.py │ │ ├── ptbtokenizer.py │ │ └── stanford-corenlp-3.4.1.jar │ ├── external/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── _mask.pyx │ │ ├── mask.py │ │ ├── maskApi.c │ │ └── maskApi.h │ ├── pyEvalDemo.ipynb │ ├── pyReferDemo.ipynb │ ├── refer.py │ ├── setup.py │ └── test/ │ ├── sample_expressions_testA.json │ └── sample_expressions_testB.json ├── requirements.txt ├── test.py ├── train.py ├── transforms.py └── utils.py