-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update presets to point to the main Keras Kaggle page (#1921)
* update presets to point to the main keras page * update mit path
- Loading branch information
1 parent
8f31b4f
commit 9653571
Showing
7 changed files
with
82 additions
and
26 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
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
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
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,56 @@ | ||
"""vgg preset configurations.""" | ||
|
||
backbone_presets = { | ||
"vgg_11_imagenet": { | ||
"metadata": { | ||
"description": ( | ||
"11-layer vgg model pre-trained on the ImageNet 1k dataset " | ||
"at a 224x224 resolution." | ||
), | ||
"params": 9220480, | ||
"official_name": "vgg", | ||
"path": "vgg", | ||
"model_card": "https://arxiv.org/abs/1409.1556", | ||
}, | ||
"kaggle_handle": "kaggle://keras/vgg/keras/vgg_11_imagenet/1", | ||
}, | ||
"vgg_13_imagenet": { | ||
"metadata": { | ||
"description": ( | ||
"13-layer vgg model pre-trained on the ImageNet 1k dataset " | ||
"at a 224x224 resolution." | ||
), | ||
"params": 9404992, | ||
"official_name": "vgg", | ||
"path": "vgg", | ||
"model_card": "https://arxiv.org/abs/1409.1556", | ||
}, | ||
"kaggle_handle": "kaggle://keras/vgg/keras/vgg_13_imagenet/1", | ||
}, | ||
"vgg_16_imagenet": { | ||
"metadata": { | ||
"description": ( | ||
"16-layer vgg model pre-trained on the ImageNet 1k dataset " | ||
"at a 224x224 resolution." | ||
), | ||
"params": 14714688, | ||
"official_name": "vgg", | ||
"path": "vgg", | ||
"model_card": "https://arxiv.org/abs/1409.1556", | ||
}, | ||
"kaggle_handle": "kaggle://keras/vgg/keras/vgg_16_imagenet/1", | ||
}, | ||
"vgg_19_imagenet": { | ||
"metadata": { | ||
"description": ( | ||
"19-layer vgg model pre-trained on the ImageNet 1k dataset " | ||
"at a 224x224 resolution." | ||
), | ||
"params": 20024384, | ||
"official_name": "vgg", | ||
"path": "vgg", | ||
"model_card": "https://arxiv.org/abs/1409.1556", | ||
}, | ||
"kaggle_handle": "kaggle://keras/vgg/keras/vgg_19_imagenet/1", | ||
}, | ||
} |