Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 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
1ec46f2
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT
cedricvincentcuaz Oct 11, 2025
654baf2
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT
cedricvincentcuaz Sep 12, 2026
1c72344
Merge branch 'PythonOT:master' into quantizedgw
cedricvincentcuaz Sep 14, 2026
213c509
Merge branch 'master' into quantizedgw
rflamary Sep 15, 2026
78e09f6
complete tests
cedricvincentcuaz Sep 15, 2026
a9da96b
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT int…
cedricvincentcuaz Sep 15, 2026
f24c72f
Merge branch 'quantizedgw' of https://github.com/cedricvincentcuaz/PO…
cedricvincentcuaz Sep 15, 2026
a489bf0
complete tests
cedricvincentcuaz Sep 17, 2026
cd2b5ee
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT int…
cedricvincentcuaz Sep 17, 2026
acdb8f2
fix exemple and put notes in docstring for API change
cedricvincentcuaz Sep 17, 2026
cf3c1da
Merge branch 'master' of https://github.com/cedricvincentcuaz/POT int…
cedricvincentcuaz Sep 17, 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
1 change: 1 addition & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- Fix mean centering in `ot.dr.fda` and `ot.dr.wda`: `np.mean(X)` returned a scalar instead of the per-feature mean, so `proj` did not center the data as documented. In `ot.dr.fda` the same pattern in the class means made the between-class scatter matrix independent of which features separate the classes, and FDA returned a non-discriminant direction (PR #840)
- `ot.dr.fda` and `ot.dr.wda` no longer modify the input array `X` in place (PR #840)
- Fix `UnbalancedSinkhornTransport` `transform` failing with `AttributeError: 'NoneType' object has no attribute 'array_equal'` when `fit` was called with missing parameters (PR #837, Issue #650)
- Fix quantized (F)GW solvers that ordered OT based on clusters and not initial node ordering (PR #857, Issue #786)

## 0.9.7.post1

Expand Down
2 changes: 2 additions & 0 deletions examples/gromov/plot_quantized_gromov_wasserstein.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,8 @@ def draw_graph(
list_R2,
list_h1,
list_h2,
part1,
part2,
MR=None,
alpha=1.0,
build_OT=True,
Expand Down
Loading
Loading