Skip to content

Commit f143239

Browse files
vndrewleejoeyklee
authored andcommitted
fix single quote typo in nn reference (#679)
1 parent cada0df commit f143239

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/reference/neural-network.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The options that can be specified are:
8787
const options = {
8888
inputs: 1,
8989
outputs: 1,
90-
type:'regression`
90+
type:'regression'
9191
}
9292
const neuralNetwork = ml5.neuralNetwork(options)
9393
```
@@ -97,7 +97,7 @@ The options that can be specified are:
9797
dataUrl: 'weather.csv'
9898
inputs: ['avg_temperature', 'humidity'],
9999
outputs: ['rained'],
100-
type:'classification`
100+
type:'classification'
101101
}
102102
const neuralNetwork = ml5.neuralNetwork(options, modelLoaded)
103103
```
@@ -114,7 +114,7 @@ The options that can be specified are:
114114
dataUrl: 'weather.json'
115115
inputs: ['avg_temperature', 'humidity'],
116116
outputs: ['rained'],
117-
type:'classification`
117+
type:'classification'
118118
}
119119
const neuralNetwork = ml5.neuralNetwork(options, modelLoaded)
120120
```
@@ -123,7 +123,7 @@ The options that can be specified are:
123123
const options = {
124124
inputs: ['x', 'y'],
125125
outputs: ['label'],
126-
type:'classification`
126+
type:'classification'
127127
}
128128
const neuralNetwork = ml5.neuralNetwork(options)
129129
```

0 commit comments

Comments
 (0)