Skip to content
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.

Commit

Permalink
changes activations
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyklee committed Oct 2, 2019
1 parent ab6ef26 commit af12536
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions p5js/NeuralNetwork/NeuralNetwork_multiple-layers/sketch.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ const nn_options = {
ml5.tf.layers.dense({
units: 16,
inputShape: [1],
activation: 'sigmoid',
activation: 'relu',
}),
ml5.tf.layers.dense({
units: 16,
inputShape: [1],
activation: 'relu',
activation: 'sigmoid',
}),
ml5.tf.layers.dense({
units: 1,
Expand Down

0 comments on commit af12536

Please sign in to comment.