summaryrefslogtreecommitdiff
path: root/ot/da.py
AgeCommit message (Collapse)Author
2017-07-20pep8Alexandre Gramfort
2017-07-11add documentationRémi Flamary
2017-04-24Remove unnecessary parameterLeo gautheron
2017-04-21performance improvement sinkhorn lpl1Leo gautheron
- instead of updating individually for each target examples, update for all target examples at once using numpy functions. This allows for a faster computation (for me, divided by 4 on 3000*100 random matricies and random labels in [0,1]). - if I understoud correctly, a value of -1 in the array labels_a meant that we didn't have a label for this example. But in machine learning, we often encounter the binary case where we say we have the positive class (+1) and negative class (-1); thus with a dataset like this, the algorithm wouldn't work as expected. I replaced the default value for 'no label' to '-99' instead of '-1', and I added a parameter to modify it.
2017-04-21small normalization bugRémi Flamary
2017-04-20more changes from feebackLeo gautheron
in addition add the posibility to normalize the cost matrix through the function fit
2017-04-20sinkhorn GPU implementationLeo gautheron
2016-11-08da with GLNicolas Courty
2016-11-04workingRémi Flamary
2016-11-04etter doc for classesRémi Flamary
2016-11-04doc nonlinear mapping estimationRémi Flamary
2016-11-04doc linear mapping estimationRémi Flamary
2016-11-04add demo mappingRémi Flamary
2016-11-04add mapping estimation with kernels works!Rémi Flamary
2016-11-03add mapping estimation with kernels (smaller bugs)Rémi Flamary
2016-11-03add mapping estimation with kernels (still debugging)Rémi Flamary
2016-11-03add mapping estimation with kernels (still debugging)Rémi Flamary
2016-11-03add mapping estimation (still debugging)Rémi Flamary
2016-11-02add mapping estimation (still debugging)Rémi Flamary
2016-10-31v0.1.7Rémi Flamary
2016-10-31v0.1.7Rémi Flamary
2016-10-31add classes for entropic and group lasso regularizationRémi Flamary
2016-10-31commit docRémi Flamary
2016-10-31firt DA classRémi Flamary
2016-10-28first class for DARémi Flamary
2016-10-28update docRémi Flamary
2016-10-28doc da.pyRémi Flamary
2016-10-28relative pathRémi Flamary
2016-10-26add conditionnal gradient and demoRémi Flamary
2016-10-26add domain adaptation demoRémi Flamary
2016-10-24add domain adaptationRémi Flamary