summaryrefslogtreecommitdiff
path: root/ot/__init__.py
blob: ebe27ea4e8051c6047eb445d2f28f92afb1d78b6 (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','dot']