Add lr_mult label to the network graph in draw_net.py#6273
Merged
Noiredd merged 2 commits intoBVLC:masterfrom Mar 7, 2018
Merged
Add lr_mult label to the network graph in draw_net.py#6273Noiredd merged 2 commits intoBVLC:masterfrom
Noiredd merged 2 commits intoBVLC:masterfrom
Conversation
rewrote the function body to make it more streamlined. does not affect inputs and outputs
Noiredd
reviewed
Mar 5, 2018
Member
Noiredd
left a comment
There was a problem hiding this comment.
Looks good to me, tested on a few nets of my own. Please fix this one little issue in the comments, and I'll merge.
python/caffe/draw.py
Outdated
| Parameters | ||
| ---------- | ||
| layer : caffe_pb2.LayerParameter | ||
| A Convolu--display_lrmtion, Deconvolution, or InnerProduct layer. |
adds an option to `python/draw_net.py` that allows to visualize information about the learning rate multiplier (if relevant) when drawing the network's graph.
Contributor
Author
|
fixed, thanks! |
Member
|
Great, thank you for the contribution! |
oscarriddle
pushed a commit
to oscarriddle/caffe
that referenced
this pull request
Mar 18, 2018
draw_net.py refactoring and optional LR visualization * refactoring `get_layer_label` rewrote the function body to make it more streamlined. does not affect inputs and outputs * optionally visualize LR when drawing the network adds an option to `python/draw_net.py` that allows to visualize information about the learning rate multiplier (if relevant) when drawing the network's graph.
XinYao1994
pushed a commit
to XinYao1994/caffe
that referenced
this pull request
Aug 29, 2018
draw_net.py refactoring and optional LR visualization * refactoring `get_layer_label` rewrote the function body to make it more streamlined. does not affect inputs and outputs * optionally visualize LR when drawing the network adds an option to `python/draw_net.py` that allows to visualize information about the learning rate multiplier (if relevant) when drawing the network's graph.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
adds an option to visualize information about the learning rate (multipliers) when drawing a networks graph.
#6244 @Noiredd