Skip to content

Commit

Permalink
remove === true check
Browse files Browse the repository at this point in the history
  • Loading branch information
shiffman authored and bomanimc committed Feb 23, 2021
1 parent ed32afb commit a52ecc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NeuralNetwork/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ class DiyNeuralNetwork {
};

// if debug mode is true, then use tf vis
if (this.options.debug === true) {
if (this.options.debug) {
options.whileTraining = [
this.neuralNetworkVis.trainingVis(),
{
Expand Down

0 comments on commit a52ecc3

Please sign in to comment.