├── LICENSE ├── README.md ├── data └── README.md ├── dataset └── data_loader.py ├── ln_data ├── README.md └── download_data.sh ├── model ├── convlstm.py ├── darknet.py ├── grounding_model.py ├── loss.py ├── modulation.py └── yolov3.cfg ├── requirements.txt ├── saved_models ├── README.md └── yolov3_weights.sh ├── train.py └── utils ├── __init__.py ├── checkpoint.py ├── losses.py ├── misc_utils.py ├── parsing_metrics.py ├── transforms.py ├── utils.py └── word_utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/data/README.md -------------------------------------------------------------------------------- /dataset/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/dataset/data_loader.py -------------------------------------------------------------------------------- /ln_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/ln_data/README.md -------------------------------------------------------------------------------- /ln_data/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/ln_data/download_data.sh -------------------------------------------------------------------------------- /model/convlstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/model/convlstm.py -------------------------------------------------------------------------------- /model/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/model/darknet.py -------------------------------------------------------------------------------- /model/grounding_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/model/grounding_model.py -------------------------------------------------------------------------------- /model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/model/loss.py -------------------------------------------------------------------------------- /model/modulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/model/modulation.py -------------------------------------------------------------------------------- /model/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/model/yolov3.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/requirements.txt -------------------------------------------------------------------------------- /saved_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/saved_models/README.md -------------------------------------------------------------------------------- /saved_models/yolov3_weights.sh: -------------------------------------------------------------------------------- 1 | wget -P saved_models https://pjreddie.com/media/files/yolov3.weights 2 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/utils/checkpoint.py -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/utils/misc_utils.py -------------------------------------------------------------------------------- /utils/parsing_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/utils/parsing_metrics.py -------------------------------------------------------------------------------- /utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/utils/transforms.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/word_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyang-ur/ReSC/HEAD/utils/word_utils.py --------------------------------------------------------------------------------