Creates a new SMIDAS learner @param eta the learning rate for each iteration
(double eta)
| 50 | * @param eta the learning rate for each iteration |
| 51 | */ |
| 52 | public SMIDAS(double eta) |
| 53 | { |
| 54 | this(eta, DEFAULT_EPOCHS, DEFAULT_REG, DEFAULT_LOSS); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Creates a new SMIDAS learner |
nothing calls this directly
no test coverage detected