Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add davibarreira's sinkhorn_divergence with some modifications #145

Merged
merged 28 commits into from
Sep 22, 2021
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ecb81e1
add davibarreira's sinkhorn_divergence with some modifications
zsteve Sep 13, 2021
5e981e7
added documentation entry for sinkhorn_divergence
zsteve Sep 13, 2021
9828028
add statsbase to test deps
zsteve Sep 13, 2021
5c308e9
add empirical measure example for sinkhorn divergence
zsteve Sep 13, 2021
43d7a1d
format
zsteve Sep 13, 2021
e3fa3d9
add literate
zsteve Sep 13, 2021
5c347b1
implement symmetric sinkhorn
zsteve Sep 14, 2021
7f737ee
implement sinkhorn_loss
zsteve Sep 14, 2021
44659ae
change formula for obj()
zsteve Sep 14, 2021
a0dc59a
make empirical example run faster
zsteve Sep 14, 2021
48baadc
update docstrings
zsteve Sep 14, 2021
2f7179e
Update src/entropic/sinkhorn.jl
zsteve Sep 14, 2021
94055c2
Update src/entropic/sinkhorn.jl
zsteve Sep 14, 2021
a43ef32
address review comments
zsteve Sep 18, 2021
fefc503
Merge branch 'sinkhorn_divergence' of https://github.com/JuliaOptimal…
zsteve Sep 18, 2021
c8c8e9c
fix naming of plan and sinkhorn_plan
zsteve Sep 18, 2021
5cb77be
address comments
zsteve Sep 19, 2021
1026a44
fix sinkhorn_divergence and docs
zsteve Sep 19, 2021
edabeee
update docs
zsteve Sep 19, 2021
5b19d3b
format
zsteve Sep 19, 2021
2df1f54
remove sinkhorn_loss
zsteve Sep 19, 2021
440c191
Update examples/empirical_sinkhorn_div/script.jl
zsteve Sep 20, 2021
e214a68
Update src/entropic/sinkhorn_divergence.jl
zsteve Sep 20, 2021
5e02240
Update src/entropic/symmetric.jl
zsteve Sep 20, 2021
80dc5fe
Update src/entropic/sinkhorn_gibbs.jl
zsteve Sep 20, 2021
fb0277b
Update src/entropic/sinkhorn_gibbs.jl
zsteve Sep 20, 2021
ed1b947
Update src/entropic/symmetric.jl
zsteve Sep 20, 2021
f4d6474
bump version
zsteve Sep 22, 2021
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
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[targets]
test = ["Distances", "ForwardDiff", "ReverseDiff", "Pkg", "PythonOT", "Random", "SafeTestsets", "Test"]
test = ["Distances", "ForwardDiff", "ReverseDiff", "Pkg", "PythonOT", "Random", "SafeTestsets", "Test", "StatsBase"]
1 change: 1 addition & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ squared2wasserstein
```@docs
sinkhorn
sinkhorn2
sinkhorn_divergence
sinkhorn_barycenter
```

Expand Down
Loading