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

Added support for 'softplus' and 'logSigmoid' and their VJPs. #148

Closed
wants to merge 14 commits into from
Closed
2 changes: 1 addition & 1 deletion Tests/TensorFlowTests/OperatorTests/MathTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -345,12 +345,12 @@ final class MathOperatorTests: XCTestCase {
("testLog1p", testLog1p),
("testExpm1", testExpm1),
("testSign", testSign),
("testLogSigmoid", testLogSigmoid),
("testReduction", testReduction),
("testCosineSimilarity", testCosineSimilarity),
("testElu",testElu),
("testGelu", testGelu),
("testArgmax", testArgmax),
("testLogSigmoid", testLogSigmoid),
("testSoftplus", testSoftplus),
("testSoftsign", testSoftsign),
("testElu",testElu),
Expand Down