File tree Expand file tree Collapse file tree 3 files changed +30
-4
lines changed Expand file tree Collapse file tree 3 files changed +30
-4
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,10 @@ Contents
17
17
:maxdepth: 1
18
18
19
19
self
20
- quickstart
21
- all
20
+ auto_examples/plot_quickstart_guide
22
21
auto_examples/index
22
+ user_guide
23
+ all
23
24
releases
24
25
contributors
25
26
contributing
Original file line number Diff line number Diff line change 1
1
2
- Quick start guide
3
- =================
2
+ User guide
3
+ ==========
4
4
5
5
In the following we provide some pointers about which functions and classes
6
6
to use for different problems related to optimal transport (OT) and machine
Original file line number Diff line number Diff line change
1
+ # coding: utf-8
2
+ """
3
+ =============================================
4
+ Quickstart Guide
5
+ =============================================
6
+
7
+
8
+ This is a quickstart guide to the Python Optimal Transport (POT) toolbox.
9
+
10
+ """
11
+
12
+ # Author: Remi Flamary
13
+ #
14
+ # License: MIT License
15
+ # sphinx_gallery_thumbnail_number = 1
16
+
17
+ # %%
18
+ # Simple example
19
+ # --------------
20
+ #
21
+
22
+ import numpy as np # always need it
23
+ import pylab as pl # for the plots
24
+
25
+ import ot
You can’t perform that action at this time.
0 commit comments