From b2bd043712f7357e7967238e2bdaea42af201e61 Mon Sep 17 00:00:00 2001 From: Parker Schuh Date: Thu, 8 Aug 2019 10:36:51 -0700 Subject: [PATCH] Fix Sequential Tests. Fix bug introduced in https://github.com/tensorflow/swift-apis/pull/419. --- Tests/TensorFlowTests/SequentialTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/TensorFlowTests/SequentialTests.swift b/Tests/TensorFlowTests/SequentialTests.swift index 041769440..353439323 100644 --- a/Tests/TensorFlowTests/SequentialTests.swift +++ b/Tests/TensorFlowTests/SequentialTests.swift @@ -61,7 +61,7 @@ final class SequentialTests: XCTestCase { } } XCTAssertEqual(model.inferring(from: [[0, 0], [0, 1], [1, 0], [1, 1]]), - [[0.52508783], [0.52508783], [0.52508783], [0.52508783]]) + [[0.4884567], [0.4884567], [0.4884567], [0.4884567]]) } static var allTests = [