Skip to content

Commit

Permalink
Rename file file of ada_svr (#154)
Browse files Browse the repository at this point in the history
* Rename file

* Fix bug

* Fix documentation

* Fix example
  • Loading branch information
lionelkusch authored Feb 20, 2025
1 parent 095dacd commit 635d003
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion doc_conf/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Functions
.. autosummary::
:toctree: generated/

ada_svr
aggregate_quantiles
clustered_inference
data_simulation
Expand Down
2 changes: 1 addition & 1 deletion examples/plot_fmri_data_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
from sklearn.svm import LinearSVR
from sklearn.utils import Bunch

from hidimstat.ada_svr import ada_svr
from hidimstat.adaptative_permutation_threshold_SVR import ada_svr
from hidimstat.clustered_inference import clustered_inference
from hidimstat.ensemble_clustered_inference import ensemble_clustered_inference
from hidimstat.permutation_test import permutation_test, permutation_test_pval
Expand Down
2 changes: 0 additions & 2 deletions src/hidimstat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from .ada_svr import ada_svr
from .clustered_inference import clustered_inference, hd_inference
from .desparsified_lasso import desparsified_group_lasso, desparsified_lasso
from .Dnn_learner_single import DnnLearnerSingle
Expand All @@ -21,7 +20,6 @@
__version__ = "0.0.0+unknown"

__all__ = [
"ada_svr",
"aggregate_quantiles",
"clustered_inference",
"dcrt_zero",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import numpy as np
from numpy.testing import assert_almost_equal

from hidimstat.ada_svr import ada_svr, ada_svr_pvalue
from hidimstat.adaptative_permutation_threshold_SVR import ada_svr, ada_svr_pvalue
from hidimstat.scenario import multivariate_1D_simulation


Expand Down

0 comments on commit 635d003

Please sign in to comment.