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


import utils
import datasets
import plot


# Ot functions
from emd import emd
from bregman import sinkhorn



from utils import dist,dots

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