Skip to content

Commit e1fe245

Browse files
committed
relative path
1 parent 83ce401 commit e1fe245

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ot/da.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
domain adaptation with optimal transport
33
"""
44
import numpy as np
5-
from bregman import sinkhorn
5+
from .bregman import sinkhorn
66

77

88

ot/optim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import numpy as np
77
import scipy as sp
88
from scipy.optimize.linesearch import scalar_search_armijo
9-
from lp import emd
9+
from .lp import emd
1010

1111
# The corresponding scipy function does not work for matrices
1212
def line_search_armijo(f,xk,pk,gfk,old_fval,args=(),c1=1e-4,alpha0=0.99):

0 commit comments

Comments
 (0)