File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ The options that can be specified are:
87
87
const options = {
88
88
inputs: 1 ,
89
89
outputs: 1 ,
90
- type: ' regression`
90
+ type: ' regression'
91
91
}
92
92
const neuralNetwork = ml5 .neuralNetwork (options)
93
93
```
@@ -97,7 +97,7 @@ The options that can be specified are:
97
97
dataUrl: 'weather.csv'
98
98
inputs: ['avg_temperature', 'humidity'],
99
99
outputs: ['rained'],
100
- type:' classification`
100
+ type:'classification'
101
101
}
102
102
const neuralNetwork = ml5.neuralNetwork(options, modelLoaded)
103
103
` ` `
@@ -114,7 +114,7 @@ The options that can be specified are:
114
114
dataUrl: 'weather.json'
115
115
inputs: ['avg_temperature', 'humidity'],
116
116
outputs: ['rained'],
117
- type:'classification`
117
+ type:'classification'
118
118
}
119
119
const neuralNetwork = ml5.neuralNetwork(options, modelLoaded)
120
120
` ` `
@@ -123,7 +123,7 @@ The options that can be specified are:
123
123
const options = {
124
124
inputs: ['x', 'y'],
125
125
outputs: ['label'],
126
- type:'classification`
126
+ type:'classification'
127
127
}
128
128
const neuralNetwork = ml5.neuralNetwork(options)
129
129
` ` `
You can’t perform that action at this time.
0 commit comments