Skip to content

Commit

Permalink
Merge pull request BVLC#3022 from jeffdonahue/expose-param-display-names
Browse files Browse the repository at this point in the history
Net: expose param_display_names_
  • Loading branch information
jeffdonahue committed Jan 27, 2016
2 parents 0acb338 + cf15166 commit 24f792d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/caffe/net.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ class Net {
return param_names_index_;
}
inline const vector<int>& param_owners() const { return param_owners_; }
inline const vector<string>& param_display_names() const {
return param_display_names_;
}
/// @brief Input and output blob numbers
inline int num_inputs() const { return net_input_blobs_.size(); }
inline int num_outputs() const { return net_output_blobs_.size(); }
Expand Down

0 comments on commit 24f792d

Please sign in to comment.