-
-
Notifications
You must be signed in to change notification settings - Fork 612
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore some support for Tracker.jl (#2387)
* restore and test some support for Tracker.jl * bump Tracker compat * Update Project.toml
- Loading branch information
Showing
5 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using Tracker: withgradient | ||
using Zygote: gradient | ||
using Functors: fmapstructure | ||
using Flux | ||
|
||
@testset "Tracker.jl" begin | ||
@testset "some simple models" begin | ||
m1 = Dense(ones32(2,3), fill(0.1f0,2), abs2) | ||
x1 = Float32[1,2,3] | ||
(_, v1), g1 = withgradient(m1, x1) do m, x | ||
y1 = m(x) | ||
sum(abs2, y1 .- [4, 5]), y1 | ||
end | ||
@test v1 ≈ m1(x1) | ||
g1z = gradient(m1, x1) do m, x | ||
sum(abs2, m(x) .- [4, 5]) | ||
end | ||
@test g1[1].weight ≈ g1z[1].weight | ||
@test g1[1].bias ≈ g1z[1].bias | ||
|
||
m2 = Chain(Conv((2,2), 3 => 1, relu), Flux.flatten, Dense(20 => 1, tanh), only) | ||
x2 = randn32(5,6,3,1) | ||
v2, g2 = withgradient(m -> m(x2), m2) | ||
g2z = gradient(m -> m(x2), m2) | ||
@test g2[1].layers[1].weight ≈ g2z[1].layers[1].weight | ||
@test g2[1].layers[1].bias ≈ g2z[1].layers[1].bias | ||
@test g2[1].layers[3].weight ≈ g2z[1].layers[3].weight | ||
end | ||
|
||
@testset "Dropout" begin | ||
g1z = gradient(sum∘Dropout(0.5), ones(1000)) | ||
v1, g1 = withgradient(sum∘Dropout(0.5), ones(1000)) | ||
@test 800<v1<1200 | ||
@test sum(g1[1]) ≈ v1 | ||
@test 400 < count(iszero, g1[1]) < 600 | ||
end | ||
end | ||
|
8654721
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
8654721
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/103316
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: