update mnist convnet demo

This commit is contained in:
Leon Chen
2016-09-21 14:41:11 -04:00
parent 66a6a00034
commit fabb042693
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
@import 'https://fonts.googleapis.com/css?family=Nothing+You+Could+Do'; @import 'https://fonts.googleapis.com/css?family=Nothing+You+Could+Do';
body { body {
background: #EEEEEE; background: linear-gradient(0deg, #DDDDDD, #EEEEEE);
color: #393E46; color: #393E46;
min-height: 100vh; min-height: 100vh;
font-family: 'Fira Sans', sans-serif; font-family: 'Fira Sans', sans-serif;
+3 -3
View File
@@ -16,7 +16,7 @@ const MODEL_CONFIG = {
const LAYER_DISPLAY_CONFIG = { const LAYER_DISPLAY_CONFIG = {
'convolution2d_1': { 'convolution2d_1': {
heading: '32 3x3 filters, border mode valid, 1x1 striding', heading: '32 3x3 filters, border mode valid, 1x1 strides',
scalingFactor: 2 scalingFactor: 2
}, },
'activation_1': { 'activation_1': {
@@ -24,7 +24,7 @@ const LAYER_DISPLAY_CONFIG = {
scalingFactor: 2 scalingFactor: 2
}, },
'convolution2d_2': { 'convolution2d_2': {
heading: '32 3x3 filters, border mode valid, 1x1 striding', heading: '32 3x3 filters, border mode valid, 1x1 strides',
scalingFactor: 2 scalingFactor: 2
}, },
'activation_2': { 'activation_2': {
@@ -32,7 +32,7 @@ const LAYER_DISPLAY_CONFIG = {
scalingFactor: 2 scalingFactor: 2
}, },
'maxpooling2d_1': { 'maxpooling2d_1': {
heading: '2x2 pools, 1x1 striding', heading: '2x2 pools, 1x1 strides',
scalingFactor: 2 scalingFactor: 2
}, },
'dropout_1': { 'dropout_1': {