summaryrefslogtreecommitdiff
path: root/ot/__init__.py
blob: dd74590a160f88867be44a2ec07561843b356038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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,barycenter

# utils functions
from utils import dist,unif

__all__ = ["emd","sinkhorn","utils",'datasets','bregman','plot','dist','unif','barycenter']