This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Update examples #331
Merged
Merged
Update examples #331
Changes from 9 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
c0f90b0
update mnist-annotation
QuanluZhang 18e184d
fix mnist-annotation typo
QuanluZhang d7bd43c
update mnist example
QuanluZhang c889813
update mnist-smartparam
QuanluZhang 125a954
update mnist-annotation
QuanluZhang b3ac62a
update mnist-smartparam
QuanluZhang c3e539d
change learning rate
QuanluZhang a39d794
update mnist assessor maxTrialNum
QuanluZhang 0cd3d5a
update examples
QuanluZhang 46fb85f
update examples
QuanluZhang 29381ff
update maxTrialNum
QuanluZhang dcbf0da
fix breaking path in config_assessor.yml
QuanluZhang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"dropout_rate":{"_type":"uniform","_value":[0.1,0.5]}, | ||
"dropout_rate":{"_type":"uniform","_value":[0.1, 0.2, 0.5, 0.8]}, | ||
"conv_size":{"_type":"choice","_value":[2,3,5,7]}, | ||
"hidden_size":{"_type":"choice","_value":[124, 512, 1024]}, | ||
"batch_size": {"_type":"choice", "_value": [1, 4, 8, 16, 32]}, | ||
"learning_rate":{"_type":"choice","_value":[0.0001, 0.001, 0.01, 0.1]} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mnist_network.keep_prob: dropout_rate
Literally, keep_prob should be 1-dropout_rate, is this a mistake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks a lot, fixed, and also fixed the same problem in the other two examples.