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

Added support for 'isFinite', 'isInfinite', and 'isNaN'. #149

Merged
merged 29 commits into from
Jun 21, 2019
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
930cf5f
Enhanced the 'matmul' wrapper so that it matches the behavior of the …
eaplatanios May 30, 2019
a557090
Added support for the 'log1mexp' op and its VJP.
eaplatanios May 30, 2019
9e75132
Added a test.
eaplatanios May 30, 2019
571a301
Update Sources/TensorFlow/Operators/Math.swift
eaplatanios May 30, 2019
2131375
Removed the need for a general 'Tensor.withoutDerivative()' as Richar…
eaplatanios May 30, 2019
1e80a1e
Addressed Richard's feedback.
eaplatanios May 30, 2019
3b60a9e
Addressed Richard's feedback.
eaplatanios May 31, 2019
9ef8db8
Added one more tests helper.
eaplatanios May 31, 2019
561a842
Minor bug fix.
eaplatanios May 31, 2019
670eabf
Merge branch 'matmul' into logm1exp
eaplatanios May 31, 2019
a01f161
Added a test for 'log1mexp'.
eaplatanios May 31, 2019
399aba6
Merge branch 'matmul' into log-sigmoid
eaplatanios May 31, 2019
a30c098
Added support for 'softplus' and 'logSigmoid'.
eaplatanios May 31, 2019
7b7585e
Minor tweak.
eaplatanios May 31, 2019
6c5b2a6
Merge branch 'matmul' into is-finite
eaplatanios May 31, 2019
102fba1
Added support for 'isFinite', 'isInfinite', and 'isNaN'.
eaplatanios May 31, 2019
001d2de
Addressed Richard's feedback.
eaplatanios May 31, 2019
d33db18
Merged upstream changes.
eaplatanios May 31, 2019
a0384e7
Fixed some of the tests.
eaplatanios May 31, 2019
0fbac79
Made the tests pass.
eaplatanios May 31, 2019
9701780
Attempt at making 'log1mexp' differentiable.
eaplatanios Jun 1, 2019
795e2cf
Merged upstream changes.
eaplatanios Jun 20, 2019
8869b75
Merged upstream changes.
eaplatanios Jun 20, 2019
2b6a5ba
Enabled the 'logSigmoid' test.
eaplatanios Jun 20, 2019
12c96e8
Merged upstream changes.
eaplatanios Jun 20, 2019
937e285
Merged upstream changes.
eaplatanios Jun 20, 2019
550e5ec
Minor edit.
eaplatanios Jun 20, 2019
c6a4387
Merged upstream changes.
eaplatanios Jun 21, 2019
8b79e67
Style edit.
eaplatanios Jun 21, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Tests/TensorFlowTests/OperatorTests/MathTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -346,14 +346,10 @@ final class MathOperatorTests: XCTestCase {
("testExpm1", testExpm1),
("testSign", testSign),
("testLogSigmoid", testLogSigmoid),
("testReduction", testReduction),
("testCosineSimilarity", testCosineSimilarity),
("testElu",testElu),
("testGelu", testGelu),
("testArgmax", testArgmax),
("testSoftplus", testSoftplus),
("testSoftsign", testSoftsign),
("testElu",testElu),
("testGelu", testGelu),
("testLeakyRelu", testLeakyRelu),
("testIsFinite", testIsFinite),
("testIsInfinite", testIsInfinite),
Expand Down