Skip to content

Commit 3686dde

Browse files
Circle CICircle CI
Circle CI
authored and
Circle CI
committed
CircleCI update of dev docs (2868).
1 parent 1c479f2 commit 3686dde

File tree

303 files changed

+734385
-732680
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

303 files changed

+734385
-732680
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.

master/_downloads/0eb518a5cb2af5a1870fc1f120d1483e/plot_partial_wass_and_gromov.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
},
8888
"outputs": [],
8989
"source": [
90-
"C1 = sp.spatial.distance.cdist(xs, xs)\nC2 = sp.spatial.distance.cdist(xt, xt)\n\n# transport 100% of the mass\nprint('------m = 1')\nm = 1\nres0, log0 = ot.partial.partial_gromov_wasserstein(C1, C2, p, q, m=m, log=True)\nres, log = ot.partial.entropic_partial_gromov_wasserstein(C1, C2, p, q, 10,\n m=m, log=True,\n verbose=True)\n\nprint('Wasserstein distance (m = 1): ' + str(log0['partial_gw_dist']))\nprint('Entropic Wasserstein distance (m = 1): ' + str(log['partial_gw_dist']))\n\npl.figure(1, (10, 5))\npl.title(\"mass to be transported m = 1\")\npl.subplot(1, 2, 1)\npl.imshow(res0, cmap='jet')\npl.title('Gromov-Wasserstein')\npl.subplot(1, 2, 2)\npl.imshow(res, cmap='jet')\npl.title('Entropic Gromov-Wasserstein')\npl.show()\n\n# transport 2/3 of the mass\nprint('------m = 2/3')\nm = 2 / 3\nres0, log0 = ot.partial.partial_gromov_wasserstein(C1, C2, p, q, m=m, log=True,\n verbose=True)\nres, log = ot.partial.entropic_partial_gromov_wasserstein(C1, C2, p, q, 10,\n m=m, log=True,\n verbose=True)\n\nprint('Partial Wasserstein distance (m = 2/3): ' +\n str(log0['partial_gw_dist']))\nprint('Entropic partial Wasserstein distance (m = 2/3): ' +\n str(log['partial_gw_dist']))\n\npl.figure(1, (10, 5))\npl.title(\"mass to be transported m = 2/3\")\npl.subplot(1, 2, 1)\npl.imshow(res0, cmap='jet')\npl.title('Partial Gromov-Wasserstein')\npl.subplot(1, 2, 2)\npl.imshow(res, cmap='jet')\npl.title('Entropic partial Gromov-Wasserstein')\npl.show()"
90+
"C1 = sp.spatial.distance.cdist(xs, xs)\nC2 = sp.spatial.distance.cdist(xt, xt)\n\n# transport 100% of the mass\nprint('------m = 1')\nm = 1\nres0, log0 = ot.gromov.partial_gromov_wasserstein(C1, C2, p, q, m=m, log=True)\nres, log = ot.gromov.entropic_partial_gromov_wasserstein(C1, C2, p, q, 10,\n m=m, log=True,\n verbose=True)\n\nprint('Wasserstein distance (m = 1): ' + str(log0['partial_gw_dist']))\nprint('Entropic Wasserstein distance (m = 1): ' + str(log['partial_gw_dist']))\n\npl.figure(1, (10, 5))\npl.title(\"mass to be transported m = 1\")\npl.subplot(1, 2, 1)\npl.imshow(res0, cmap='jet')\npl.title('Gromov-Wasserstein')\npl.subplot(1, 2, 2)\npl.imshow(res, cmap='jet')\npl.title('Entropic Gromov-Wasserstein')\npl.show()\n\n# transport 2/3 of the mass\nprint('------m = 2/3')\nm = 2 / 3\nres0, log0 = ot.gromov.partial_gromov_wasserstein(C1, C2, p, q, m=m, log=True,\n verbose=True)\nres, log = ot.gromov.entropic_partial_gromov_wasserstein(C1, C2, p, q, 10,\n m=m, log=True,\n verbose=True)\n\nprint('Partial Wasserstein distance (m = 2/3): ' +\n str(log0['partial_gw_dist']))\nprint('Entropic partial Wasserstein distance (m = 2/3): ' +\n str(log['partial_gw_dist']))\n\npl.figure(1, (10, 5))\npl.title(\"mass to be transported m = 2/3\")\npl.subplot(1, 2, 1)\npl.imshow(res0, cmap='jet')\npl.title('Partial Gromov-Wasserstein')\npl.subplot(1, 2, 2)\npl.imshow(res, cmap='jet')\npl.title('Entropic partial Gromov-Wasserstein')\npl.show()"
9191
]
9292
}
9393
],
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

master/_downloads/49f837cc392f45ccd2ccaa3d04894ace/plot_partial_wass_and_gromov.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@
125125
# transport 100% of the mass
126126
print('------m = 1')
127127
m = 1
128-
res0, log0 = ot.partial.partial_gromov_wasserstein(C1, C2, p, q, m=m, log=True)
129-
res, log = ot.partial.entropic_partial_gromov_wasserstein(C1, C2, p, q, 10,
130-
m=m, log=True,
131-
verbose=True)
128+
res0, log0 = ot.gromov.partial_gromov_wasserstein(C1, C2, p, q, m=m, log=True)
129+
res, log = ot.gromov.entropic_partial_gromov_wasserstein(C1, C2, p, q, 10,
130+
m=m, log=True,
131+
verbose=True)
132132

133133
print('Wasserstein distance (m = 1): ' + str(log0['partial_gw_dist']))
134134
print('Entropic Wasserstein distance (m = 1): ' + str(log['partial_gw_dist']))
@@ -146,11 +146,11 @@
146146
# transport 2/3 of the mass
147147
print('------m = 2/3')
148148
m = 2 / 3
149-
res0, log0 = ot.partial.partial_gromov_wasserstein(C1, C2, p, q, m=m, log=True,
150-
verbose=True)
151-
res, log = ot.partial.entropic_partial_gromov_wasserstein(C1, C2, p, q, 10,
152-
m=m, log=True,
153-
verbose=True)
149+
res0, log0 = ot.gromov.partial_gromov_wasserstein(C1, C2, p, q, m=m, log=True,
150+
verbose=True)
151+
res, log = ot.gromov.entropic_partial_gromov_wasserstein(C1, C2, p, q, 10,
152+
m=m, log=True,
153+
verbose=True)
154154

155155
print('Partial Wasserstein distance (m = 2/3): ' +
156156
str(log0['partial_gw_dist']))
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-630 Bytes
-23 Bytes
-619 Bytes
-623 Bytes
-163 Bytes
-359 Bytes
-490 Bytes
-85 Bytes
-137 Bytes
-121 Bytes
10 Bytes
-321 Bytes
-224 Bytes

master/_modules/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ <h1>All modules for which code is available</h1>
101101
<li><a href="ot/gromov/_estimators.html">ot.gromov._estimators</a></li>
102102
<li><a href="ot/gromov/_gw.html">ot.gromov._gw</a></li>
103103
<li><a href="ot/gromov/_lowrank.html">ot.gromov._lowrank</a></li>
104+
<li><a href="ot/gromov/_partial.html">ot.gromov._partial</a></li>
104105
<li><a href="ot/gromov/_quantized.html">ot.gromov._quantized</a></li>
105106
<li><a href="ot/gromov/_semirelaxed.html">ot.gromov._semirelaxed</a></li>
106107
<li><a href="ot/gromov/_unbalanced.html">ot.gromov._unbalanced</a></li>

0 commit comments

Comments
 (0)