-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* DOC: Add info about incremental algorithms and BS (#2103) - Add 'Non-Scikit algorithms' part to the docs - Add info about IncrementalPCA - Add sphinx.napoleon extension to generate docs from docstrings. - Update docstrings for non-scikit algorithms * Remove info about 2025.1 changes from BS and IncBS docstrings --------- Co-authored-by: Samir Nasibli <samir.nasibli@intel.com>
- Loading branch information
1 parent
e0535f6
commit 65afadb
Showing
8 changed files
with
186 additions
and
41 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
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,44 @@ | ||
.. ****************************************************************************** | ||
.. * Copyright 2024 Intel Corporation | ||
.. * | ||
.. * Licensed under the Apache License, Version 2.0 (the "License"); | ||
.. * you may not use this file except in compliance with the License. | ||
.. * You may obtain a copy of the License at | ||
.. * | ||
.. * http://www.apache.org/licenses/LICENSE-2.0 | ||
.. * | ||
.. * Unless required by applicable law or agreed to in writing, software | ||
.. * distributed under the License is distributed on an "AS IS" BASIS, | ||
.. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
.. * See the License for the specific language governing permissions and | ||
.. * limitations under the License. | ||
.. *******************************************************************************/ | ||
Non-Scikit-Learn Algorithms | ||
=========================== | ||
Algorithms not presented in the original scikit-learn are described here. All algorithms are | ||
available for both CPU and GPU (including distributed mode) | ||
|
||
BasicStatistics | ||
--------------- | ||
.. autoclass:: sklearnex.basic_statistics.BasicStatistics | ||
.. automethod:: sklearnex.basic_statistics.BasicStatistics.fit | ||
|
||
IncrementalBasicStatistics | ||
-------------------------- | ||
.. autoclass:: sklearnex.basic_statistics.IncrementalBasicStatistics | ||
.. automethod:: sklearnex.basic_statistics.IncrementalBasicStatistics.fit | ||
.. automethod:: sklearnex.basic_statistics.IncrementalBasicStatistics.partial_fit | ||
|
||
IncrementalEmpiricalCovariance | ||
------------------------------ | ||
.. autoclass:: sklearnex.covariance.IncrementalEmpiricalCovariance | ||
.. automethod:: sklearnex.covariance.IncrementalEmpiricalCovariance.fit | ||
.. automethod:: sklearnex.covariance.IncrementalEmpiricalCovariance.partial_fit | ||
|
||
IncrementalLinearRegression | ||
--------------------------- | ||
.. autoclass:: sklearnex.linear_model.IncrementalLinearRegression | ||
.. automethod:: sklearnex.linear_model.IncrementalLinearRegression.fit | ||
.. automethod:: sklearnex.linear_model.IncrementalLinearRegression.partial_fit | ||
.. automethod:: sklearnex.linear_model.IncrementalLinearRegression.predict |
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
Oops, something went wrong.