-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
12 changed files
with
73 additions
and
100 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,21 +1,17 @@ | ||
Linear Models | ||
============= | ||
|
||
.. currentmodule:: skmatter.linear_model._base | ||
|
||
Orthogonal Regression | ||
##################### | ||
|
||
.. autoclass:: OrthogonalRegression | ||
--------------------- | ||
|
||
.. currentmodule:: skmatter.linear_model._ridge | ||
.. autoclass:: skmatter.linear_model.OrthogonalRegression | ||
|
||
Ridge Regression with Two-fold Cross Validation | ||
############################################### | ||
----------------------------------------------- | ||
|
||
.. autoclass:: RidgeRegression2FoldCV | ||
.. autoclass:: skmatter.linear_model.RidgeRegression2FoldCV | ||
|
||
PCovR | ||
##### | ||
----- | ||
|
||
Principal Covariates Regression is a linear model, see :ref:`PCovR-api`. |
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,45 +1,28 @@ | ||
.. _gfrm: | ||
|
||
Reconstruction Measures | ||
======================= | ||
|
||
.. marker-reconstruction-introduction-begin | ||
.. automodule:: skmatter.metrics | ||
|
||
These reconstruction measures are available: | ||
|
||
* :ref:`GRE-api` (GRE) computes the amount of linearly-decodable information | ||
recovered through a global linear reconstruction. | ||
* :ref:`GRD-api` (GRD) computes the amount of distortion contained in a global linear | ||
reconstruction. | ||
* :ref:`LRE-api` (LRE) computes the amount of decodable information recovered through | ||
a local linear reconstruction for the k-nearest neighborhood of each sample. | ||
|
||
.. marker-reconstruction-introduction-end | ||
.. currentmodule:: skmatter.metrics | ||
|
||
.. _GRE-api: | ||
|
||
Global Reconstruction Error | ||
--------------------------- | ||
|
||
.. autofunction:: pointwise_global_reconstruction_error | ||
.. autofunction:: global_reconstruction_error | ||
.. autofunction:: skmatter.metrics.pointwise_global_reconstruction_error | ||
.. autofunction:: skmatter.metrics.global_reconstruction_error | ||
|
||
.. _GRD-api: | ||
|
||
Global Reconstruction Distortion | ||
-------------------------------- | ||
|
||
.. autofunction:: pointwise_global_reconstruction_distortion | ||
.. autofunction:: global_reconstruction_distortion | ||
.. autofunction:: skmatter.metrics.pointwise_global_reconstruction_distortion | ||
.. autofunction:: skmatter.metrics.global_reconstruction_distortion | ||
|
||
.. _LRE-api: | ||
|
||
Local Reconstruction Error | ||
-------------------------- | ||
|
||
.. autofunction:: pointwise_local_reconstruction_error | ||
.. autofunction:: local_reconstruction_error | ||
.. autofunction:: skmatter.metrics.pointwise_local_reconstruction_error | ||
.. autofunction:: skmatter.metrics.local_reconstruction_error |
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,6 +1,7 @@ | ||
Preprocessing | ||
============= | ||
|
||
.. automodule:: skmatter.preprocessing | ||
|
||
KernelNormalizer | ||
---------------- | ||
|
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 |
---|---|---|
@@ -1 +1,10 @@ | ||
""" | ||
scikit-matter | ||
============= | ||
scikit-matter is a toolbox of methods developed in the computational chemical and | ||
materials science community, following the `scikit-learn <https://scikit.org/>`_ API and | ||
coding guidelines to promote usability and interoperability with existing workflows. | ||
""" | ||
|
||
__version__ = "0.1.4" |
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