-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chores/plot distance visualization (#284)
* plot distances_visualization on Ci * fix hardcoded parameter in plot_financial_data * fix label in plot_classifier_comparison * apply noplot convention * remove tight_layout (not necessary) * add alias module * add alias file * missing line at end of file * [pre-commit.ci] auto fixes from pre-commit.com hooks * fix flake8 * fix warning * remove alias module * [pre-commit.ci] auto fixes from pre-commit.com hooks * missing in previous commit --------- Co-authored-by: Gregoire Cattan <gregoire.cattan@ibm.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0d8d189
commit 28686ff
Showing
13 changed files
with
33 additions
and
19 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from pyriemann.estimation import ERPCovariances | ||
from pyriemann.classification import MDM | ||
from sklearn.pipeline import make_pipeline | ||
|
||
ERPCov_MDM = make_pipeline(ERPCovariances(estimator="lwf"), MDM()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,5 +81,4 @@ | |
axe.set_ylabel("Evaluated values (MDM)") | ||
axe.set_xlabel("Evaluations") | ||
|
||
plt.tight_layout() | ||
plt.show() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
from ._version import __version__ | ||
from . import classification, pipelines, ensemble, autoencoders | ||
|
||
__all__ = ["__version__", "classification", "pipelines", "ensemble", "autoencoders"] | ||
__all__ = [ | ||
"__version__", | ||
"classification", | ||
"pipelines", | ||
"ensemble", | ||
"autoencoders", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters