summaryrefslogtreecommitdiff
path: root/ot/__init__.py
blob: 24350a53d2745abbf7d47649c036c4db60f77403 (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

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