-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github pages update for 2024.1 (#2710)
* Github pages update Github pages update * Github pages update Github pages update
- Loading branch information
Showing
497 changed files
with
96,031 additions
and
32,083 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 9e0576089f1959485e798cc457d38354 | ||
tags: ecdfad4873649a72b4bd359271733676 | ||
config: c0c897ee976368f1711d3a2e5209655a | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
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,26 @@ | ||
.. ****************************************************************************** | ||
.. * 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. | ||
.. *******************************************************************************/ | ||
================= | ||
Linear Regression | ||
================= | ||
|
||
This chapter describes programming interfaces of the Linear Regression algorithm implemented in |short_name|: | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
|
||
linear-regression.rst |
105 changes: 105 additions & 0 deletions
105
_sources/api/algorithms/linear-regression/linear-regression.rst
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,105 @@ | ||
.. ****************************************************************************** | ||
.. * 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. | ||
.. *******************************************************************************/ | ||
.. highlight:: cpp | ||
.. default-domain:: cpp | ||
|
||
.. _api_linear-regression: | ||
|
||
================= | ||
Linear Regression | ||
================= | ||
|
||
.. include:: ../../../includes/linear-regression/linear-regression-introduction.rst | ||
|
||
------------------------ | ||
Mathematical Formulation | ||
------------------------ | ||
|
||
Refer to :ref:`Developer Guide: Linear Regression <alg_linear-regression>`. | ||
|
||
--------------------- | ||
Programming Interface | ||
--------------------- | ||
|
||
All types and functions from this section are declared in the | ||
``oneapi::dal::linear_regression`` namespace and available by including the | ||
``oneapi/dal/algo/linear_regression.hpp`` header file. | ||
|
||
Descriptor | ||
---------- | ||
.. onedal_class:: oneapi::dal::linear_regression::descriptor | ||
|
||
Method Tags | ||
~~~~~~~~~~~ | ||
.. onedal_tags_namespace:: oneapi::dal::linear_regression::method | ||
|
||
Task Tags | ||
~~~~~~~~~ | ||
.. onedal_tags_namespace:: oneapi::dal::linear_regression::task | ||
|
||
.. _linreg_t_api: | ||
|
||
Training | ||
-------- | ||
.. _linreg_t_api_input: | ||
|
||
Input | ||
~~~~~ | ||
.. onedal_class:: oneapi::dal::linear_regression::train_input | ||
|
||
.. _linreg_t_api_result: | ||
|
||
Result and Finalize Result | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
.. onedal_class:: oneapi::dal::linear_regression::train_result | ||
|
||
.. _linreg_p_api: | ||
|
||
Partial Training | ||
---------------- | ||
.. _linreg_p_api_input: | ||
|
||
Partial Input | ||
~~~~~~~~~~~~~ | ||
.. onedal_class:: oneapi::dal::linear_regression::partial_train_input | ||
|
||
.. _linreg_p_api_result: | ||
|
||
Partial Result and Finalize Input | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
.. onedal_class:: oneapi::dal::linear_regression::partial_train_result | ||
|
||
.. _linreg_f_api: | ||
|
||
Finalize Training | ||
----------------- | ||
|
||
.. _linreg_i_api: | ||
|
||
Inference | ||
--------- | ||
.. _linreg_i_api_input: | ||
|
||
Input | ||
~~~~~ | ||
.. onedal_class:: oneapi::dal::linear_regression::infer_input | ||
|
||
.. _linreg_i_api_result: | ||
|
||
Result | ||
~~~~~~ | ||
.. onedal_class:: oneapi::dal::linear_regression::infer_result |
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,26 @@ | ||
.. ****************************************************************************** | ||
.. * Copyright 2023 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. | ||
.. *******************************************************************************/ | ||
=================== | ||
Logistic Regression | ||
=================== | ||
|
||
This chapter describes programming interfaces of the Logistic Regression algorithm implemented in |short_name|. | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
|
||
logistic-regression.rst |
Oops, something went wrong.