You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I may have found a line that could lead to errors when using OT objects in a supervised DA setting.
at line 992 in da.py I propose to change classes = np.unique(ys) into classes = [c for c in np.unique(ys) if c != -1] which would enable people to use source samples with no labels to find the optimal couplin.
I also propose to add an example for semi supervised DA.
Do you agree with these propositions ? If yes, I'll open a PR.