-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
all_splits.h5 #44
Comments
I am sorry to ask why do you need Since the file is very large (70GB), it is not convenient for me to upload it. Instead, you can also generate the file by yourself using the provided code. |
Thank you. In the README.md, it is stated that in order to achieve higher CIDEr scores, the backbone and detector need to be frozen, and the detector requires all_splits.h5 files. |
Sorry for this misunderstanding. If we use |
Thank you. If I want to achieve 139.2 CIDEr. I must first freezing_xe and freezing_sc and then freeze freezing_xe and freezing_sc. Is it right? |
Please run the following instead. In this way, you freeze the backbone and detector but the images are fed forward into the model every iteration you finetune the model: export DATA_ROOT=path/to/coco_dataset
# with pretrained object detector on 4 datasets
python train_caption.py exp.name=caption_4ds model.detector.checkpoint=4ds_detector_path \
optimizer.freezing_xe_epochs=0 \
optimizer.freezing_sc_epochs=0 \
optimizer.finetune_xe_epochs=10 \
optimizer.finetune_sc_epochs=10 \
optimizer.freeze_backbone=True \
optimizer.freeze_detector=True |
Dear author. Can you share how to generate all_splits.h5 files?
The text was updated successfully, but these errors were encountered: