Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 1b77875

Browse files
authored
Fix Sequential Tests. (#424)
Fix bug introduced in #419.
1 parent 4cfaa4c commit 1b77875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/TensorFlowTests/SequentialTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ final class SequentialTests: XCTestCase {
6161
}
6262
}
6363
XCTAssertEqual(model.inferring(from: [[0, 0], [0, 1], [1, 0], [1, 1]]),
64-
[[0.52508783], [0.52508783], [0.52508783], [0.52508783]])
64+
[[0.4884567], [0.4884567], [0.4884567], [0.4884567]])
6565
}
6666

6767
static var allTests = [

0 commit comments

Comments
 (0)