Skip to content

Commit

Permalink
Added a temporary config that I want to test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolya committed Apr 6, 2019
1 parent 3c91147 commit d8228f2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ python eval.py --trained_model=weights/yolact_base_54_800000.pth --score_thresho
# Run just the raw model on the first 1k images of the validation set
python eval.py --trained_model=weights/yolact_base_54_800000.pth --benchmark --max_images=1000
```
## Your Own Images
## Images
```Shell
# Display qualitative results on the specified image.
python eval.py --trained_model=weights/yolact_base_54_800000.pth --score_threshold=0.3 --top_k=100 --image=my_image.png
Expand Down
10 changes: 10 additions & 0 deletions data/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1622,6 +1622,16 @@ def print(self):
'augment_photometric_distort': False,
})

dev_nocrop_config = dev_base_config.copy({
'name': 'dev_nocrop',
'mask_proto_crop': False,

'lr_warmup_until': 500,
'lr_warmup_init': dev_base_config.lr / 100,

'mask_alpha': dev_base_config.mask_alpha * 2000,
})




Expand Down

0 comments on commit d8228f2

Please sign in to comment.