Last active
September 5, 2020 20:22
-
-
Save himanshurawlani/3e9c7c93609de0dc601e6891c6168706 to your computer and use it in GitHub Desktop.
An example config for hyper model
This file contains hidden or 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
{ | |
"lr": 0.001, | |
"batch_size": 16, | |
"use_contrast": "True", | |
"contrast_factor": 0.2, | |
"use_rotation": "True", | |
"rotation_factor": 0.2, | |
"use_flip": "True", | |
"flip_mode": "horizontal", | |
"dropout_rate": 0.2, | |
"conv_block1_filters": 32, | |
"conv_block2_filters": 64, | |
"conv_block3_filters": 128, | |
"conv_block4_filters": 256, | |
"conv_block5_filters": 512, | |
"fc_layer_type": "dense", | |
"pool_type": "max", | |
"fc1_units": 64 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment