Skip to content

Commit

Permalink
changing defaults on docs page
Browse files Browse the repository at this point in the history
  • Loading branch information
shiffman authored and bomanimc committed Nov 4, 2020
1 parent d226e64 commit 2c954af
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/reference/neural-network.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,29 +367,29 @@ const nn = ml5.neuralNetwork(options);
layers = [
{
type: 'conv2d',
filters: 2,
kernelSize: 2,
strides: 2,
filters: 8,
kernelSize: 5,
strides: 1,
activation: 'relu',
kernelInitializer: 'varianceScaling',
},
{
type: 'maxPooling2d',
poolSize: [1, 1],
strides: [1, 1],
poolSize: [2, 2],
strides: [2, 2],
},
{
type: 'conv2d',
filters: 1,
kernelSize: 1,
filters: 16,
kernelSize: 5,
strides: 1,
activation: 'relu',
kernelInitializer: 'varianceScaling',
},
{
type: 'maxPooling2d',
poolSize: [1, 1],
strides: [1, 1],
poolSize: [2, 2],
strides: [2, 2],
},
{
type: 'flatten',
Expand Down

0 comments on commit 2c954af

Please sign in to comment.