summaryrefslogtreecommitdiff
path: root/ot/__init__.py
blob: 0a9e89b0ce499335612366da74f6e1dde2a78634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Python Optimal Transport toolbox

# All submodules and packages
import utils
import datasets
import plot
import bregman


# OT functions
from emd import emd
from bregman import sinkhorn

# utils functions
from utils import dist,dots,unif

__all__ = ["emd","sinkhorn","utils",'datasets','plot','dist','dots']