Skip to content

Commit 287c4c0

Browse files
committed
update realease.md
1 parent c18f737 commit 287c4c0

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

RELEASES.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# POT Releases
22

33

4-
## 0.5.0b
4+
## 0.5.0 Year 2
55
*Sep 2018*
66

7-
*This is a beta release and is still a work in progress*
7+
POT is 2 years old! This release bring both numerous new features to the toolbox as listed below but also several
88

99

1010
#### Features
1111

1212
* Add non regularized Gromov-Wasserstein solver (PR #41)
1313
* Linear OT mapping between empirical distributions and 90\% test coverage (PR #42)
1414
* Add log parameter in class EMDTransport and SinkhornLpL1Transport (PR #44)
15-
* Add Marddown format for Pipy (PR #45)
15+
* Add Markdown format for Pipy (PR #45)
1616
* Test for Python 3.5 and 3.6 on Travis (PR #46)
1717
* Non regularized Wasserstein barycenter with scipy linear solver and/or cvxopt (PR #47)
1818
* Rename dataset functions to be more sklearn compliant (PR #49)
@@ -22,10 +22,13 @@
2222
* Speed-up Sinkhorn function (PR #57 and PR #58)
2323
* Add convolutional Wassersein barycenters for 2D images (PR #64)
2424
* Add Greedy Sinkhorn variant (Greenkhorn) (PR #66)
25+
* Big ot.gpu update with cupy implementation (instead of un-maintained cudamat) (PR #67)
2526

2627
#### Deprecation
2728

28-
Deprecated OTDA Classes were removed for version 0.5 (PR #48), it has been a year and the deprecation message.
29+
Deprecated OTDA Classes were removed for version 0.5 (PR #48 and PR #67). The
30+
deprecation messagehas been for a year here since 0.4 and it is time to pull
31+
the plug.
2932

3033
#### Closed issues
3134

ot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# utils functions
3030
from .utils import dist, unif, tic, toc, toq
3131

32-
__version__ = "0.5.0b"
32+
__version__ = "0.5.0"
3333

3434
__all__ = ["emd", "emd2", "sinkhorn", "sinkhorn2", "utils", 'datasets',
3535
'bregman', 'lp', 'tic', 'toc', 'toq', 'gromov',

ot/gpu/da.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,9 @@ def sinkhorn_lpl1_mm(a, labels_a, b, M, reg, eta=0.1, numItermax=10,
133133
# separated
134134
W = np.ones(M.shape)
135135
for (i, c) in enumerate(classes):
136-
<<<<<<< HEAD
136+
137+
138+
<< << << < HEAD
137139
(_, nbRow) = indices_labels[i].shape
138140
tmpC_GPU = cudamat.empty((Nfin, nbRow)).assign(0)
139141
transp_GPU.transpose().select_columns(indices_labels[i], tmpC_GPU)

0 commit comments

Comments
 (0)