Skip to content

Commit

Permalink
Merge pull request #59 from antoinedemathelin/master
Browse files Browse the repository at this point in the history
Add placeholders links for missing algorithm in the flowchart
  • Loading branch information
antoinedemathelin committed Jun 22, 2022
2 parents da7560f + 831dbeb commit 4055b75
Show file tree
Hide file tree
Showing 15 changed files with 81 additions and 2 deletions.
1 change: 1 addition & 0 deletions adapt/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ def fit(self, X, y, Xt=None, yt=None, domains=None, **fit_params):
"""
Xt, yt = self._get_target_data(Xt, yt)
X, y = check_arrays(X, y)
self.n_features_in_ = X.shape[1]
if yt is not None:
Xt, yt = check_arrays(Xt, yt)
else:
Expand Down
4 changes: 2 additions & 2 deletions adapt/instance_based/_kliep.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ class KLIEP(BaseAdaptEstimator):
>>> model.fit(Xs, ys)
Fit weights...
Cross Validation process...
Parameters {'gamma': 0.1} -- J-score = 0.013 (0.003)
Parameters {'gamma': 1.0} -- J-score = 0.120 (0.026)
Parameter {'gamma': 0.1} -- J-score = 0.013 (0.003)
Parameter {'gamma': 1.0} -- J-score = 0.120 (0.026)
Fit Estimator...
>>> model.score(Xt, yt)
0.85
Expand Down
6 changes: 6 additions & 0 deletions src_docs/generated/adapt.feature_based.FADA.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.feature_based.FSDA.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.feature_based.FSSP.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.feature_based.JDA.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.feature_based.MME.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.feature_based.SSDANN.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.feature_based.TCA.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.instance_based.BalancedWeighting.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.instance_based.GDM.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.parameter_based.LinInt.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.parameter_based.NRC.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.parameter_based.PRED.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


6 changes: 6 additions & 0 deletions src_docs/generated/adapt.parameter_based.SHOT.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Not Implemented
===============

This algorithm is not implemented yet. If you are interested by its implementation, please open an Issue on GitHub: https://github.com/adapt-python/adapt/issues


0 comments on commit 4055b75

Please sign in to comment.