-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71f80fc
commit b0c9f77
Showing
2 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Weights for Initialization | ||
|
||
COCO-Pretrained Model weights in the `init_weights` directory | ||
|
||
## Weights Used | ||
|
||
**[[`Mask RCNN R50-FPN-1x Link`](https://dl.fbaipublicfiles.com/detectron2/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x/137260431/model_final_a54504.pkl)]** | ||
|
||
## Feel Free to use Other Weights | ||
|
||
**[[`Detectron2 Model Zoo`](https://github.com/facebookresearch/detectron2/blob/master/MODEL_ZOO.md#coco-instance-segmentation-baselines-with-mask-r-cnn)]** | ||
|
||
## Turning off Pre-Trained Weights | ||
|
||
### Config Method | ||
|
||
Modify the MODEL/WEIGHTS in config.yaml used | ||
|
||
```yaml | ||
MODEL: | ||
WEIGHTS: '' | ||
``` | ||
### Command Line Method | ||
```shell | ||
python train_palmira.py \ | ||
[... <other-args>] \ | ||
MODEL.WEIGHTS '' | ||
``` |