Skip to content

Commit 01cdf6d

Browse files
Orzeliuspyu10055
andauthored
Add missing semi (#357)
Co-authored-by: Ping Yu <[email protected]>
1 parent 4f5ff02 commit 01cdf6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: iris-fitDataset/data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,6 @@ export async function getIrisData(testSplit) {
132132
const testY = tf.data.array(test.map(r => flatOneHot(r[4])));
133133
// Recombine the X and y portions of the data.
134134
const trainDataset = tf.data.zip({xs: trainX, ys: trainY});
135-
const testDataset = tf.data.zip({xs: testX, ys: testY})
135+
const testDataset = tf.data.zip({xs: testX, ys: testY});
136136
return [trainDataset, testDataset];
137137
}

0 commit comments

Comments
 (0)