Skip to content

Error with compute cost matrix when reproducing HDA #1

Description

@chenmzh

Dear Authors,

I am trying to run the HDA script on my own dataset. The error comes when I run this code:
M_lin = compute_cost_matrix(Ty,Sy_ss,v=100)
and compute_cost_matrix is defined as:

M=ot.dist(ys.reshape(-1,1),yt.reshape(-1,1),metric=comp_(v))
return M

Then it will report the following:

~/test/lib/python3.7/site-packages/ot/utils.py in dist(x1, x2, metric, p, w)
    226             raise NotImplementedError()
    227         else:
--> 228             if metric.endswith("minkowski"):
    229                 return cdist(x1, x2, metric=metric, p=p, w=w)
    230             return cdist(x1, x2, metric=metric, w=w)

AttributeError: 'function' object has no attribute 'endswith'

On my local computer I try to edit the utils.py to avoid this error, but I wonder if there is a way to solve that when wrote the script.

Thank you very much for your attention!

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions