Skip to content

Commit

Permalink
Make AdaDelta::PreSolve() non-virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasplappert committed Aug 9, 2015
1 parent fc35518 commit aedff90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/caffe/solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class AdaDeltaSolver : public SGDSolver<Dtype> {
: SGDSolver<Dtype>(param_file) { PreSolve(); constructor_sanity_check(); }

protected:
virtual void PreSolve();
void PreSolve();
virtual void Regularize(int param_id);
virtual void ComputeUpdateValue(int param_id, Dtype rate);
void constructor_sanity_check() {
Expand Down

0 comments on commit aedff90

Please sign in to comment.