Skip to content

Commit

Permalink
Change Optimizer::runOptimization visibility from protected to public…
Browse files Browse the repository at this point in the history
… (#109)
  • Loading branch information
alucic authored and akondas committed Jul 26, 2017
1 parent 07041ec commit 65b8a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Phpml/Helper/Optimizer/Optimizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ public function setInitialTheta(array $theta)
* @param array $targets
* @param \Closure $gradientCb
*/
abstract protected function runOptimization(array $samples, array $targets, \Closure $gradientCb);
abstract public function runOptimization(array $samples, array $targets, \Closure $gradientCb);
}

0 comments on commit 65b8a13

Please sign in to comment.