Wiki
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
|
||||
namespace App\Models\NetworksTraining;
|
||||
|
||||
use App\Events\PerceptronTrainingEnded;
|
||||
use App\Models\ActivationsFunctions;
|
||||
use App\Models\Perceptrons\GradientDescentPerceptron;
|
||||
use App\Models\Perceptrons\NetworkPerceptron;
|
||||
@@ -116,7 +115,7 @@ class MultiLayerPerceptronTraining extends NetworkTraining
|
||||
{
|
||||
$condition = $this->epochError <= $this->minError;
|
||||
if ($condition === true) {
|
||||
event(new PerceptronTrainingEnded('Le perceptron à atteint l\'erreur minimale', $this->sessionId, $this->trainingId));
|
||||
$this->broadcastTrainingEnded('Le perceptron à atteint l\'erreur minimale');
|
||||
}
|
||||
|
||||
return $condition;
|
||||
|
||||
Reference in New Issue
Block a user