Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
44d4614
merge
cedricvincentcuaz Sep 10, 2024
63477c2
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT
cedricvincentcuaz Sep 10, 2024
a94c6ac
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT
cedricvincentcuaz Nov 6, 2024
27944a5
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT
cedricvincentcuaz Nov 6, 2024
0392961
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT
cedricvincentcuaz Nov 16, 2024
60d1295
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT
cedricvincentcuaz Apr 2, 2025
a93c60c
first commit
cedricvincentcuaz Apr 21, 2025
9e25e80
handle masses in unbalanced cases
cedricvincentcuaz Apr 22, 2025
46c4638
update free support
cedricvincentcuaz Apr 24, 2025
671788d
trying to fix tests
cedricvincentcuaz Apr 24, 2025
a5b0f70
Merge branch 'master' into solvers
rflamary May 23, 2025
9cf60fd
Merge branch 'master' into solvers
rflamary Jun 3, 2025
48a63ea
merge
cedricvincentcuaz Oct 11, 2025
df1da8d
small updates
cedricvincentcuaz Oct 12, 2025
75d6c11
fix fun name
cedricvincentcuaz Oct 12, 2025
c71e544
update tests
cedricvincentcuaz Oct 12, 2025
ed9c992
update tests
cedricvincentcuaz Oct 12, 2025
7132f62
fix tests
cedricvincentcuaz Oct 15, 2025
8e55777
Merge branch 'master' into solvers
rflamary Oct 21, 2025
4a0b5ec
fix tests
cedricvincentcuaz Mar 6, 2026
b8219ac
Merge branch 'solvers' of https://github.com/cedricvincentcuaz/POT in…
cedricvincentcuaz Mar 6, 2026
6f900c6
Merge branch 'master' into solvers
cedricvincentcuaz Mar 6, 2026
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 ot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
)
from .weak import weak_optimal_transport
from .factored import factored_optimal_transport
from .solvers import solve, solve_gromov, solve_sample
from .solvers import solve, solve_gromov, solve_sample, solve_bary_sample
from .lowrank import lowrank_sinkhorn

from .batch import solve_batch, solve_sample_batch, solve_gromov_batch, dist_batch
Expand Down Expand Up @@ -135,6 +135,7 @@
"solve",
"solve_gromov",
"solve_sample",
"solve_bary_sample",
"smooth",
"stochastic",
"unbalanced",
Expand Down
Loading
Loading