| 64 | class AdaGradSolver : public SGDSolver<Dtype> { |
| 65 | public: |
| 66 | explicit AdaGradSolver(const SolverParameter& param) |
| 67 | : SGDSolver<Dtype>(param) { constructor_sanity_check(); } |
| 68 | explicit AdaGradSolver(const string& param_file) |
| 69 | : SGDSolver<Dtype>(param_file) { constructor_sanity_check(); } |
| 70 | virtual inline const char* type() const { return "AdaGrad"; } |
nothing calls this directly
no outgoing calls
no test coverage detected