diff --git a/.github/.licenserc.yaml b/.github/.licenserc.yaml new file mode 100644 index 00000000000..92966ae84bb --- /dev/null +++ b/.github/.licenserc.yaml @@ -0,0 +1,84 @@ +# Copyright contributors to the oneDAL project +# +# 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. + +header: + license: + spdx-id: Apache-2.0 + copyright-owner: contributors to the oneDAL project + pattern: | + (Copyright \d{4} Intel Corporation|Copyright contributors to the oneDAL project) + + 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\. + + paths: + - '**' + + paths-ignore: + - '.gitignore' + - '.gitattributes' + # Bazel related files + - '.bazelrc' + - '.bazelversion' + - 'BUILD' + - 'WORKSPACE' + - 'MODULE.bazel' + - '**/*.tpl.BUILD' + # Clang-format config + - '.clang-format' + # Editorconfig configs + - '.ecrc' + - '.editorconfig' + # Samples READMEs and licenses: + - 'samples/daal/cpp/mpi/README.md' + - 'samples/daal/cpp/mysql/README.md' + - 'samples/daal/cpp/mpi/license.txt' + - 'samples/daal/cpp/mysql/license.txt' + # All .csv files + - '**/*.csv' + # All Doxygen files and something from docs/ + - 'docs/doxygen/**' + - 'docs/requirements.txt' + - 'docs/source/_static/style.css' + - 'docs/source/_templates/layout.html' + - 'docs/source/substitutions_common.txt' + - 'docs/source/substitutions_specific.txt' + # Some files from .ci/.github + - '.ci/pipeline/**/*.yml' + - '.ci/env/environment.yml' + - '.ci/scripts/conformance-scripts/algorithms.txt' + - '.ci/scripts/conformance-scripts/run_tests_with_context.py' + - '.github/workflows/*.yml' + - '.github/.mergify.yml' + - '.github/CODEOWNERS' + - '.github/renovate.json' + # Specific files + - 'LICENSE' + - 'third-party-programs-mkl.txt' + - 'third-party-programs.txt' + - 'deploy/local/config.txt' + - 'deploy/nuget/inteldal.nuspec.tpl' + + comment: on-failure + + license-location-threshold: 111 # specifies the index threshold where the license header can be located. diff --git a/.github/ISSUE_TEMPLATE/RFC.md b/.github/ISSUE_TEMPLATE/RFC.md index 1a6440b89d1..2477f295a28 100644 --- a/.github/ISSUE_TEMPLATE/RFC.md +++ b/.github/ISSUE_TEMPLATE/RFC.md @@ -1,3 +1,19 @@ + + --- name: RFC for new interface about: Use this template to request new functionality or change the behavior of the library @@ -8,7 +24,7 @@ assignees: '' **Summary** Include a short summary of the request. Sections below provide guidance on -what factors are considered important. +what factors are considered important. **Problem statement** Describe the problem you are trying to solve with a reasonable level of detail. diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 5691352fcb4..235e5f197a4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,3 +1,19 @@ + + --- name: Bug report about: Create a report to help us improve diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index 093f63c4752..9686cc18dbc 100644 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -1,3 +1,19 @@ + + --- name: Request a documentation change about: Use this template to report documentation issue or request documentation changes diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 4c52336018c..84e38926ffb 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,3 +1,19 @@ + + --- name: Request a feature about: Use this template to request new functionality or change the behavior of the library @@ -7,7 +23,7 @@ assignees: '' --- **Summary** -Include a short summary of the request. +Include a short summary of the request. See the sections below for factors important for a feature request. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 8d554abb771..fc3ba304ac2 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,3 +1,19 @@ + + ## Description _Add a comprehensive description of proposed changes_ diff --git a/.github/workflows/skywalking-eyes.yml b/.github/workflows/skywalking-eyes.yml new file mode 100644 index 00000000000..64d58f4da6f --- /dev/null +++ b/.github/workflows/skywalking-eyes.yml @@ -0,0 +1,25 @@ +name: Check License Header + +on: + pull_request: + branches: + - main + push: + branches: + - main + +permissions: read-all + +jobs: + check-license-header: + name: Check License Header + if: github.repository == 'oneapi-src/oneDAL' + runs-on: ubuntu-latest + steps: + - name: "Checkout code" + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - name: Check License Header + uses: apache/skywalking-eyes/header@cd7b195c51fd3d6ad52afceb760719ddc6b3ee91 # always prefer to use a revision instead of `main`. + with: + config: ".github/.licenserc.yaml" + mode: "check" diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 6ffa9221d87..9e036a278e2 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,3 +1,19 @@ + + # Contributor Covenant Code of Conduct ## Our Pledge diff --git a/cpp/daal/src/externals/service_math_ref.h b/cpp/daal/src/externals/service_math_ref.h index 07062c1ba2f..6d6cd76448a 100644 --- a/cpp/daal/src/externals/service_math_ref.h +++ b/cpp/daal/src/externals/service_math_ref.h @@ -1,6 +1,6 @@ /* file: service_math_ref.h */ /******************************************************************************* -* Copyright 2014-2023 Intel Corporation +* Copyright 2014 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_kernel_hist_impl.hpp b/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_kernel_hist_impl.hpp index 6d1c4362309..9dfe252e849 100644 --- a/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_kernel_hist_impl.hpp +++ b/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_kernel_hist_impl.hpp @@ -1,5 +1,5 @@ /******************************************************************************* -* Copyright 2021-2022 Intel Corporation +* Copyright 2021 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_kernel_hist_impl_dpc.cpp b/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_kernel_hist_impl_dpc.cpp index 9fac38d25b0..fc875683784 100644 --- a/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_kernel_hist_impl_dpc.cpp +++ b/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_kernel_hist_impl_dpc.cpp @@ -1,5 +1,5 @@ /******************************************************************************* -* Copyright 2021-2022 Intel Corporation +* Copyright 2021 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_service_kernels.hpp b/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_service_kernels.hpp index ba9e5a93d72..c832a4fd1ac 100644 --- a/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_service_kernels.hpp +++ b/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_service_kernels.hpp @@ -1,5 +1,5 @@ /******************************************************************************* -* Copyright 2021-2022 Intel Corporation +* Copyright 2021 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_service_kernels_dpc.cpp b/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_service_kernels_dpc.cpp index 9130e22f8ca..11549f3d62d 100644 --- a/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_service_kernels_dpc.cpp +++ b/cpp/oneapi/dal/algo/decision_forest/backend/gpu/train_service_kernels_dpc.cpp @@ -1,5 +1,5 @@ /******************************************************************************* -* Copyright 2021-2022 Intel Corporation +* Copyright 2021 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/docs/source/404.rst b/docs/source/404.rst index e88dd8b559a..f3c25e329e0 100644 --- a/docs/source/404.rst +++ b/docs/source/404.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2022 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. -.. *******************************************************************************/ +.. Copyright 2022 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. :orphan: :nosearch: diff --git a/docs/source/api/algorithms/clustering/dbscan.rst b/docs/source/api/algorithms/clustering/dbscan.rst index 8fcd29983c9..3bfbd823070 100644 --- a/docs/source/api/algorithms/clustering/dbscan.rst +++ b/docs/source/api/algorithms/clustering/dbscan.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/api/algorithms/clustering/index.rst b/docs/source/api/algorithms/clustering/index.rst index c09bd00c387..02ab510dc0a 100644 --- a/docs/source/api/algorithms/clustering/index.rst +++ b/docs/source/api/algorithms/clustering/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ========== Clustering diff --git a/docs/source/api/algorithms/clustering/kmeans-init.rst b/docs/source/api/algorithms/clustering/kmeans-init.rst index ed4fdfd6cb2..4a31864453e 100644 --- a/docs/source/api/algorithms/clustering/kmeans-init.rst +++ b/docs/source/api/algorithms/clustering/kmeans-init.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/api/algorithms/clustering/kmeans.rst b/docs/source/api/algorithms/clustering/kmeans.rst index c1df6b4ca5e..f971f12ec1c 100644 --- a/docs/source/api/algorithms/clustering/kmeans.rst +++ b/docs/source/api/algorithms/clustering/kmeans.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/api/algorithms/covariance/covariance.rst b/docs/source/api/algorithms/covariance/covariance.rst index 664df2de0e5..2abc47e48a3 100644 --- a/docs/source/api/algorithms/covariance/covariance.rst +++ b/docs/source/api/algorithms/covariance/covariance.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/covariance/index.rst b/docs/source/api/algorithms/covariance/index.rst index fa26708bba0..d5d4da4737b 100644 --- a/docs/source/api/algorithms/covariance/index.rst +++ b/docs/source/api/algorithms/covariance/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ============= Covariance diff --git a/docs/source/api/algorithms/decomposition/index.rst b/docs/source/api/algorithms/decomposition/index.rst index 31e4a86d031..af1817f1005 100644 --- a/docs/source/api/algorithms/decomposition/index.rst +++ b/docs/source/api/algorithms/decomposition/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ============= Decomposition diff --git a/docs/source/api/algorithms/decomposition/pca.rst b/docs/source/api/algorithms/decomposition/pca.rst index 7a32447288f..1a17d642613 100644 --- a/docs/source/api/algorithms/decomposition/pca.rst +++ b/docs/source/api/algorithms/decomposition/pca.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/api/algorithms/ensembles/decision-forest.rst b/docs/source/api/algorithms/ensembles/decision-forest.rst index 4c2dd42aa9b..ef6a7338af5 100644 --- a/docs/source/api/algorithms/ensembles/decision-forest.rst +++ b/docs/source/api/algorithms/ensembles/decision-forest.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp @@ -96,7 +94,7 @@ voting_mode::unweighted ~~~~~~~~~~~~~~~ splitter_mode::best - The best splitting strategy chooses the best threshold for each feature while building trees + The best splitting strategy chooses the best threshold for each feature while building trees in terms of impurity among all histogram bins and feature subsets. splitter_mode::random diff --git a/docs/source/api/algorithms/ensembles/index.rst b/docs/source/api/algorithms/ensembles/index.rst index dc98fc0f50b..90078b9384b 100644 --- a/docs/source/api/algorithms/ensembles/index.rst +++ b/docs/source/api/algorithms/ensembles/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ========= Ensembles diff --git a/docs/source/api/algorithms/graph/connected-components.rst b/docs/source/api/algorithms/graph/connected-components.rst index f6dcf1de87a..c58dc412060 100644 --- a/docs/source/api/algorithms/graph/connected-components.rst +++ b/docs/source/api/algorithms/graph/connected-components.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/graph/index.rst b/docs/source/api/algorithms/graph/index.rst index 1f276e5097e..abd077064d0 100755 --- a/docs/source/api/algorithms/graph/index.rst +++ b/docs/source/api/algorithms/graph/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ===== Graph diff --git a/docs/source/api/algorithms/graph/subgraph-isomorphism.rst b/docs/source/api/algorithms/graph/subgraph-isomorphism.rst index 0e0b7670569..9d522b8de41 100755 --- a/docs/source/api/algorithms/graph/subgraph-isomorphism.rst +++ b/docs/source/api/algorithms/graph/subgraph-isomorphism.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/index.rst b/docs/source/api/algorithms/index.rst index 4f760a5bc99..b6dcb979266 100644 --- a/docs/source/api/algorithms/index.rst +++ b/docs/source/api/algorithms/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. api_algorithms: diff --git a/docs/source/api/algorithms/kernel-functions/index.rst b/docs/source/api/algorithms/kernel-functions/index.rst index 9fce86a995b..4baa57ff397 100644 --- a/docs/source/api/algorithms/kernel-functions/index.rst +++ b/docs/source/api/algorithms/kernel-functions/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ================ Kernel Functions diff --git a/docs/source/api/algorithms/kernel-functions/linear-kernel.rst b/docs/source/api/algorithms/kernel-functions/linear-kernel.rst index a2ec07904fa..bb183adb57c 100644 --- a/docs/source/api/algorithms/kernel-functions/linear-kernel.rst +++ b/docs/source/api/algorithms/kernel-functions/linear-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/kernel-functions/polynomial-kernel.rst b/docs/source/api/algorithms/kernel-functions/polynomial-kernel.rst index 23e112020ba..ec6206c0b98 100644 --- a/docs/source/api/algorithms/kernel-functions/polynomial-kernel.rst +++ b/docs/source/api/algorithms/kernel-functions/polynomial-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/kernel-functions/rbf-kernel.rst b/docs/source/api/algorithms/kernel-functions/rbf-kernel.rst index 2bd32fd3c72..c2589b44c2b 100644 --- a/docs/source/api/algorithms/kernel-functions/rbf-kernel.rst +++ b/docs/source/api/algorithms/kernel-functions/rbf-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/kernel-functions/sigmoid-kernel.rst b/docs/source/api/algorithms/kernel-functions/sigmoid-kernel.rst index f8cb1897d5b..e54733232dd 100644 --- a/docs/source/api/algorithms/kernel-functions/sigmoid-kernel.rst +++ b/docs/source/api/algorithms/kernel-functions/sigmoid-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/linear-regression/index.rst b/docs/source/api/algorithms/linear-regression/index.rst index 4f0bf9c63f7..4d3db79a4fd 100644 --- a/docs/source/api/algorithms/linear-regression/index.rst +++ b/docs/source/api/algorithms/linear-regression/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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 diff --git a/docs/source/api/algorithms/linear-regression/linear-regression.rst b/docs/source/api/algorithms/linear-regression/linear-regression.rst index bb8a2525385..34625df5baa 100644 --- a/docs/source/api/algorithms/linear-regression/linear-regression.rst +++ b/docs/source/api/algorithms/linear-regression/linear-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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 diff --git a/docs/source/api/algorithms/logistic-regression/index.rst b/docs/source/api/algorithms/logistic-regression/index.rst index 56430e14bc8..014bf79190b 100644 --- a/docs/source/api/algorithms/logistic-regression/index.rst +++ b/docs/source/api/algorithms/logistic-regression/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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 diff --git a/docs/source/api/algorithms/logistic-regression/logistic-regression.rst b/docs/source/api/algorithms/logistic-regression/logistic-regression.rst index f6fe55233a7..f1e76f46560 100644 --- a/docs/source/api/algorithms/logistic-regression/logistic-regression.rst +++ b/docs/source/api/algorithms/logistic-regression/logistic-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. highlight:: cpp .. default-domain:: cpp diff --git a/docs/source/api/algorithms/nearest-neighbors/index.rst b/docs/source/api/algorithms/nearest-neighbors/index.rst index 5e8333b2f2c..8df478fefa5 100644 --- a/docs/source/api/algorithms/nearest-neighbors/index.rst +++ b/docs/source/api/algorithms/nearest-neighbors/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ======================= Nearest Neighbors (kNN) diff --git a/docs/source/api/algorithms/nearest-neighbors/knn-classification.rst b/docs/source/api/algorithms/nearest-neighbors/knn-classification.rst index ccee061bf68..947840ac6e7 100644 --- a/docs/source/api/algorithms/nearest-neighbors/knn-classification.rst +++ b/docs/source/api/algorithms/nearest-neighbors/knn-classification.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/api/algorithms/objective-function/index.rst b/docs/source/api/algorithms/objective-function/index.rst index 36b3ab84176..4c52ed90b6e 100644 --- a/docs/source/api/algorithms/objective-function/index.rst +++ b/docs/source/api/algorithms/objective-function/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. ================== Objective function diff --git a/docs/source/api/algorithms/objective-function/logloss.rst b/docs/source/api/algorithms/objective-function/logloss.rst index 280981a9da9..8d608625869 100644 --- a/docs/source/api/algorithms/objective-function/logloss.rst +++ b/docs/source/api/algorithms/objective-function/logloss.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. highlight:: cpp .. default-domain:: cpp diff --git a/docs/source/api/algorithms/objective-function/objective-function.rst b/docs/source/api/algorithms/objective-function/objective-function.rst index d818d28c05d..377b829f19c 100644 --- a/docs/source/api/algorithms/objective-function/objective-function.rst +++ b/docs/source/api/algorithms/objective-function/objective-function.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. highlight:: cpp .. default-domain:: cpp diff --git a/docs/source/api/algorithms/optimizers/index.rst b/docs/source/api/algorithms/optimizers/index.rst index aaa57f3531e..248ed1f532b 100644 --- a/docs/source/api/algorithms/optimizers/index.rst +++ b/docs/source/api/algorithms/optimizers/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. ========== Optimizers diff --git a/docs/source/api/algorithms/optimizers/newton-cg.rst b/docs/source/api/algorithms/optimizers/newton-cg.rst index 3b38097a400..c8d077f9116 100644 --- a/docs/source/api/algorithms/optimizers/newton-cg.rst +++ b/docs/source/api/algorithms/optimizers/newton-cg.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/pairwise-distances/chebyshev-distance.rst b/docs/source/api/algorithms/pairwise-distances/chebyshev-distance.rst index 23d338dea97..cdff09977ee 100755 --- a/docs/source/api/algorithms/pairwise-distances/chebyshev-distance.rst +++ b/docs/source/api/algorithms/pairwise-distances/chebyshev-distance.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/pairwise-distances/cosine-distance.rst b/docs/source/api/algorithms/pairwise-distances/cosine-distance.rst index 993108bf566..07d166cc80f 100755 --- a/docs/source/api/algorithms/pairwise-distances/cosine-distance.rst +++ b/docs/source/api/algorithms/pairwise-distances/cosine-distance.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/pairwise-distances/index.rst b/docs/source/api/algorithms/pairwise-distances/index.rst index fc2da090f14..cff9472cf3a 100755 --- a/docs/source/api/algorithms/pairwise-distances/index.rst +++ b/docs/source/api/algorithms/pairwise-distances/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ================== Pairwise Distances diff --git a/docs/source/api/algorithms/pairwise-distances/minkowski-distance.rst b/docs/source/api/algorithms/pairwise-distances/minkowski-distance.rst index 14c92c12335..52009044385 100755 --- a/docs/source/api/algorithms/pairwise-distances/minkowski-distance.rst +++ b/docs/source/api/algorithms/pairwise-distances/minkowski-distance.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/statistics/basic-statistics.rst b/docs/source/api/algorithms/statistics/basic-statistics.rst index 547b3713758..83268b062e8 100644 --- a/docs/source/api/algorithms/statistics/basic-statistics.rst +++ b/docs/source/api/algorithms/statistics/basic-statistics.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/algorithms/statistics/index.rst b/docs/source/api/algorithms/statistics/index.rst index 8f0b52daa43..7c607c7f6e3 100644 --- a/docs/source/api/algorithms/statistics/index.rst +++ b/docs/source/api/algorithms/statistics/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ========== Statistics diff --git a/docs/source/api/algorithms/svm/index.rst b/docs/source/api/algorithms/svm/index.rst index f61c46d8d6b..dc08dab8d58 100644 --- a/docs/source/api/algorithms/svm/index.rst +++ b/docs/source/api/algorithms/svm/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ======================= Support Vector Machines diff --git a/docs/source/api/algorithms/svm/svm.rst b/docs/source/api/algorithms/svm/svm.rst index 970300ea540..543967b3659 100644 --- a/docs/source/api/algorithms/svm/svm.rst +++ b/docs/source/api/algorithms/svm/svm.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/api/data-management/accessor/column.rst b/docs/source/api/data-management/accessor/column.rst index 5189363606b..127a5ac93dc 100644 --- a/docs/source/api/data-management/accessor/column.rst +++ b/docs/source/api/data-management/accessor/column.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/api/data-management/accessor/csr.rst b/docs/source/api/data-management/accessor/csr.rst index 0b142f7fc9e..bd00a658a3c 100644 --- a/docs/source/api/data-management/accessor/csr.rst +++ b/docs/source/api/data-management/accessor/csr.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. highlight:: cpp .. default-domain:: cpp diff --git a/docs/source/api/data-management/accessor/row.rst b/docs/source/api/data-management/accessor/row.rst index b4c61be32a8..5b96b61598a 100644 --- a/docs/source/api/data-management/accessor/row.rst +++ b/docs/source/api/data-management/accessor/row.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/api/data-management/accessors.rst b/docs/source/api/data-management/accessors.rst index 1bbeb243136..b886fbfe210 100644 --- a/docs/source/api/data-management/accessors.rst +++ b/docs/source/api/data-management/accessors.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/api/data-management/array.rst b/docs/source/api/data-management/array.rst index 28f79111c87..ca05b643649 100644 --- a/docs/source/api/data-management/array.rst +++ b/docs/source/api/data-management/array.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/api/data-management/data-source/csv.rst b/docs/source/api/data-management/data-source/csv.rst index 1f9ebe697ed..60f5bfb32bc 100644 --- a/docs/source/api/data-management/data-source/csv.rst +++ b/docs/source/api/data-management/data-source/csv.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/api/data-management/data-sources.rst b/docs/source/api/data-management/data-sources.rst index 185d0f7585b..a494374c2cb 100644 --- a/docs/source/api/data-management/data-sources.rst +++ b/docs/source/api/data-management/data-sources.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/api/data-management/graph-service.rst b/docs/source/api/data-management/graph-service.rst index a257bbd4afc..7f41ad49dcf 100755 --- a/docs/source/api/data-management/graph-service.rst +++ b/docs/source/api/data-management/graph-service.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/api/data-management/graph-service/directed-adjacency-vector-graph.rst b/docs/source/api/data-management/graph-service/directed-adjacency-vector-graph.rst index 6ca25f78ef4..ea237242875 100755 --- a/docs/source/api/data-management/graph-service/directed-adjacency-vector-graph.rst +++ b/docs/source/api/data-management/graph-service/directed-adjacency-vector-graph.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. _api_directed_adjacency_vector_graph_service: @@ -20,21 +18,21 @@ Directed adjacency vector graph service ======================================== -This section describes graph service functions for :ref:`api_directed_adjacency_vector_graph`. +This section describes graph service functions for :ref:`api_directed_adjacency_vector_graph`. -.. list-table:: - :widths: 30 70 +.. list-table:: + :widths: 30 70 :header-rows: 1 * - Service function - Description * - :txtref:`get_vertex_count ` - - Get the number of vertices in the graph + - Get the number of vertices in the graph * - :txtref:`get_edge_count ` - - Get the number of edges in the graph + - Get the number of edges in the graph * - :txtref:`get_vertex_outward_degree ` - - Get the outward degree for the specified vertex + - Get the outward degree for the specified vertex * - :txtref:`get_vertex_outward_neighbors ` - - Get the range of the outward neighbors for the specified vertex + - Get the range of the outward neighbors for the specified vertex * - :txtref:`get_edge_value ` - Get the value of an edge represented as source and destination vertices diff --git a/docs/source/api/data-management/graph-service/undirected-adjacency-vector-graph.rst b/docs/source/api/data-management/graph-service/undirected-adjacency-vector-graph.rst index 64cd941e860..4902fac5aed 100755 --- a/docs/source/api/data-management/graph-service/undirected-adjacency-vector-graph.rst +++ b/docs/source/api/data-management/graph-service/undirected-adjacency-vector-graph.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. _api_undirected_adjacency_vector_graph_service: @@ -20,20 +18,20 @@ Undirected adjacency vector graph service ========================================== -This section describes graph service functions for :ref:`api_undirected_adjacency_vector_graph`. +This section describes graph service functions for :ref:`api_undirected_adjacency_vector_graph`. -.. list-table:: - :widths: 30 70 +.. list-table:: + :widths: 30 70 :header-rows: 1 * - Service function - Description * - :txtref:`get_vertex_count ` - - Get the number of vertices in the graph + - Get the number of vertices in the graph * - :txtref:`get_edge_count ` - - Get the number of edges in the graph + - Get the number of edges in the graph * - :txtref:`get_vertex_degree ` - - Get the degree for the specified vertex + - Get the degree for the specified vertex * - :txtref:`get_vertex_neighbors ` - - Get the range of the vertex neighbors for the specified vertex + - Get the range of the vertex neighbors for the specified vertex diff --git a/docs/source/api/data-management/graph/directed-adjacency-vector-graph.rst b/docs/source/api/data-management/graph/directed-adjacency-vector-graph.rst index 6d9e8f59fec..a67943a7d9b 100755 --- a/docs/source/api/data-management/graph/directed-adjacency-vector-graph.rst +++ b/docs/source/api/data-management/graph/directed-adjacency-vector-graph.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. _api_directed_adjacency_vector_graph: @@ -29,6 +27,6 @@ Programming interface All types and functions in this section are declared in the ``oneapi::dal::preview`` namespace and are available via inclusion of the -``oneapi/dal/graph/directed_adjacency_vector_graph.hpp`` header file. +``oneapi/dal/graph/directed_adjacency_vector_graph.hpp`` header file. .. onedal_class:: oneapi::dal::preview::directed_adjacency_vector_graph diff --git a/docs/source/api/data-management/graph/undirected-adjacency-vector-graph.rst b/docs/source/api/data-management/graph/undirected-adjacency-vector-graph.rst index c41f1d442c7..fcc947bf0ab 100755 --- a/docs/source/api/data-management/graph/undirected-adjacency-vector-graph.rst +++ b/docs/source/api/data-management/graph/undirected-adjacency-vector-graph.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. _api_undirected_adjacency_vector_graph: @@ -29,6 +27,6 @@ Programming interface All types and functions in this section are declared in the ``oneapi::dal::preview`` namespace and are available via inclusion of the -``oneapi/dal/graph/undirected_adjacency_vector_graph.hpp`` header file. +``oneapi/dal/graph/undirected_adjacency_vector_graph.hpp`` header file. .. onedal_class:: oneapi::dal::preview::undirected_adjacency_vector_graph diff --git a/docs/source/api/data-management/graphs.rst b/docs/source/api/data-management/graphs.rst index 7fd48ab5d2d..2f1c80e245b 100755 --- a/docs/source/api/data-management/graphs.rst +++ b/docs/source/api/data-management/graphs.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 @@ -66,8 +64,8 @@ The :txtref:`graph` types are defined as templated classes: class [graph_name]_graph; -.. list-table:: - :widths: 20 40 40 +.. list-table:: + :widths: 20 40 40 :header-rows: 1 * - Type name @@ -78,19 +76,19 @@ The :txtref:`graph` types are defined as templated classes: - :ref:`Empty value ` * - ``EdgeValue`` - The type of the edge :capterm:`attribute ` values - - ``std::int32``, ``double``, :ref:`Empty value ` + - ``std::int32``, ``double``, :ref:`Empty value ` * - ``GraphValue`` - The type of the graph :capterm:`attribute ` value - - :ref:`Empty value ` + - :ref:`Empty value ` * - ``IndexType`` - The type of the :capterm:`vertex indices ` - - ``std::int32`` + - ``std::int32`` * - ``Allocator`` - The type of a graph allocator - C++17 (ISO/IEC 14882:2017) compliant allocator -:ref:`Empty value ` tag structure is used to define +:ref:`Empty value ` tag structure is used to define the absence of a specified attribute of a graph. .. _api_empty_value: @@ -100,25 +98,25 @@ the absence of a specified attribute of a graph. Graph class contains the default and the move constructor as well as the move assignment operator. The graph is accessed using the :ref:`service functions `. -.. list-table:: - :widths: 30 70 +.. list-table:: + :widths: 30 70 :header-rows: 1 * - ``graph_type`` method - Description * - Default constructor - - Constructs an empty graph object + - Constructs an empty graph object * - Move constructor - - Creates a new graph instance and moves the implementation from another instance into this one + - Creates a new graph instance and moves the implementation from another instance into this one * - Move assignment - - Swaps the implementation of this object and another one + - Swaps the implementation of this object and another one .. _api_graph_traits: Graph traits ------------ - + Graph traits is a data type that defines the data model and a set of types associated with the graph. Graph traits are used by processing and :txtref:`service functionality `. @@ -139,7 +137,7 @@ The full list of types defined in ``graph_traits`` is in the table below: .. _graph_traits_types: -.. list-table:: +.. list-table:: :widths: 20 40 20 20 :header-rows: 1 @@ -189,63 +187,63 @@ The full list of types defined in ``graph_traits`` is in the table below: - ``std::int64_t`` * - ``edge_iterator`` - The type of the edge iterator in the graph ``G`` - - *Not available* - - *Not available* + - *Not available* + - *Not available* * - ``const_edge_iterator`` - The constant type of the edge iterator in the graph ``G`` - - *Not available* - - *Not available* + - *Not available* + - *Not available* * - ``edge_size_type`` - - The type of the edge indices in the graph ``G`` + - The type of the edge indices in the graph ``G`` - ``std::int64_t`` - ``std::int64_t`` * - ``edge_user_value_type`` - - The type of edge :capterm:`attribute ` + - The type of edge :capterm:`attribute ` + - ``EdgeValue`` :ref:`[1] ` - ``EdgeValue`` :ref:`[1] ` - - ``EdgeValue`` :ref:`[1] ` * - ``vertex_edge_size_type`` - - The type of the vertex neighbors indices + - The type of the vertex neighbors indices - ``std::int64_t`` - - *Not available* + - *Not available* * - ``vertex_outward_edge_size_type`` - - The type of the vertex outward neighbors indices + - The type of the vertex outward neighbors indices - *Not available* - ``std::int64_t`` * - ``vertex_edge_iterator_type`` - - The type of the vertex neighbors iterator + - The type of the vertex neighbors iterator - ``IndexType*`` :ref:`[1] ` - - *Not available* + - *Not available* * - ``const_vertex_edge_iterator_type`` - - The type of the vertex neighbors constant iterator + - The type of the vertex neighbors constant iterator - ``const IndexType*`` :ref:`[1] ` - - *Not available* + - *Not available* * - ``vertex_outward_edge_iterator_type`` - - The type of the vertex outward neighbors iterator + - The type of the vertex outward neighbors iterator - *Not available* - - ``IndexType*`` :ref:`[1] ` + - ``IndexType*`` :ref:`[1] ` * - ``const_vertex_outward_edge_iterator_type`` - - The type of the vertex outward neighbors constant iterator + - The type of the vertex outward neighbors constant iterator - *Not available* - ``const IndexType*`` :ref:`[1] ` * - ``vertex_edge_range`` - - The type of the range of vertex neighbors + - The type of the range of vertex neighbors - ``std::pair`` :ref:`[1] ` - - *Not available* + - *Not available* * - ``const_vertex_edge_range`` - - The type of the constant range of vertex neighbors + - The type of the constant range of vertex neighbors - ``std::pair`` :ref:`[1] ` - - *Not available* + - *Not available* * - ``vertex_outward_edge_range`` - - The type of the range of vertex outward neighbors + - The type of the range of vertex outward neighbors - *Not available* - - ``std::pair`` :ref:`[1] ` + - ``std::pair`` :ref:`[1] ` * - ``const_vertex_outward_edge_range`` - - The type of the constant range of vertex outward neighbors + - The type of the constant range of vertex outward neighbors - *Not available* - ``std::pair`` :ref:`[1] ` - -.. _GraphTemplateTypes: + +.. _GraphTemplateTypes: [1] ``VertexValue``, ``EdgeValue``, ``GraphValue``, ``IndexType``, ``Allocator`` -- :ref:`template parameters of graph G `. diff --git a/docs/source/api/data-management/index.rst b/docs/source/api/data-management/index.rst index 7d0513057fb..35365495798 100644 --- a/docs/source/api/data-management/index.rst +++ b/docs/source/api/data-management/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. =============== Data Management diff --git a/docs/source/api/data-management/table/csr.rst b/docs/source/api/data-management/table/csr.rst index 5283fb620ea..e2398dfe4fc 100644 --- a/docs/source/api/data-management/table/csr.rst +++ b/docs/source/api/data-management/table/csr.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. _api_csr_table: diff --git a/docs/source/api/data-management/table/homogen.rst b/docs/source/api/data-management/table/homogen.rst index ca13d5c0afb..9b535554e2a 100644 --- a/docs/source/api/data-management/table/homogen.rst +++ b/docs/source/api/data-management/table/homogen.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. _api_homogen_table: diff --git a/docs/source/api/data-management/tables.rst b/docs/source/api/data-management/tables.rst index 28d1474beae..a89d0a1e582 100644 --- a/docs/source/api/data-management/tables.rst +++ b/docs/source/api/data-management/tables.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/api/index.rst b/docs/source/api/index.rst index 64bfd5192df..07492794d12 100644 --- a/docs/source/api/index.rst +++ b/docs/source/api/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. ======= C++ API diff --git a/docs/source/api/spmd/communicator.rst b/docs/source/api/spmd/communicator.rst index 64d9a96656d..0c6f97c87ab 100644 --- a/docs/source/api/spmd/communicator.rst +++ b/docs/source/api/spmd/communicator.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 @@ -64,7 +62,7 @@ device_memory_access::none Assumes only non-USM pointers are used for a collective operation. device_memory_access::usm - Both USM and non-USM can be used. Pointer type is controlled by + Both USM and non-USM can be used. Pointer type is controlled by the use of ``sycl::queue`` object as a first parameter for collective operations. The use of ``sycl::queue`` object is obligatory for USM pointers. diff --git a/docs/source/api/spmd/index.rst b/docs/source/api/spmd/index.rst index f74833382fe..4a385f4ee59 100644 --- a/docs/source/api/spmd/index.rst +++ b/docs/source/api/spmd/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. =============================================== Distributed Model: Single Process Multiple Data diff --git a/docs/source/api/spmd/overview.rst b/docs/source/api/spmd/overview.rst index 0f9e3d28054..a8a142e7b36 100644 --- a/docs/source/api/spmd/overview.rst +++ b/docs/source/api/spmd/overview.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/bibliography.rst b/docs/source/bibliography.rst index c54946c27ee..f2aa6edae3a 100644 --- a/docs/source/bibliography.rst +++ b/docs/source/bibliography.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _dg_bibliography: @@ -94,9 +92,9 @@ For more information about algorithms implemented in |short_name|, refer to the Conference on Knowledge Discovery and Data Mining. .. [Carletti2021] - Carletti, Vincenzo, et al. *Parallel Subgraph Isomorphism on Multi-core Architectures: - A Comparison of Four Strategies Based on Tree Search.* Joint IAPR International Workshops - on Statistical Techniques in Pattern Recognition (SPR) and Structural and + Carletti, Vincenzo, et al. *Parallel Subgraph Isomorphism on Multi-core Architectures: + A Comparison of Four Strategies Based on Tree Search.* Joint IAPR International Workshops + on Statistical Techniques in Pattern Recognition (SPR) and Structural and Syntactic Pattern Recognition (SSPR). Springer, Cham, 2021. .. [Defazio2014] diff --git a/docs/source/contribution/coding_guide.rst b/docs/source/contribution/coding_guide.rst index d78a97f7ab5..dbcc0575f2f 100644 --- a/docs/source/contribution/coding_guide.rst +++ b/docs/source/contribution/coding_guide.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2014 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. -.. *******************************************************************************/ +.. Copyright 2014 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 diff --git a/docs/source/contribution/cpu_features.rst b/docs/source/contribution/cpu_features.rst index e328bb80f47..19ba3f8eb33 100644 --- a/docs/source/contribution/cpu_features.rst +++ b/docs/source/contribution/cpu_features.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. .. |32e_make| replace:: 32e.mk .. _32e_make: https://github.com/oneapi-src/oneDAL/blob/main/dev/make/function_definitions/32e.mk diff --git a/docs/source/contribution/threading.rst b/docs/source/contribution/threading.rst index 0cf8740d0f4..ad6d63cbba7 100644 --- a/docs/source/contribution/threading.rst +++ b/docs/source/contribution/threading.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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 diff --git a/docs/source/daal-interfaces.rst b/docs/source/daal-interfaces.rst index cfdb54ee859..0b9219daf69 100644 --- a/docs/source/daal-interfaces.rst +++ b/docs/source/daal-interfaces.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _daal_guide: diff --git a/docs/source/daal/algorithms/association_rules/association-rules.rst b/docs/source/daal/algorithms/association_rules/association-rules.rst index 26714d092fc..54b760bf764 100644 --- a/docs/source/daal/algorithms/association_rules/association-rules.rst +++ b/docs/source/daal/algorithms/association_rules/association-rules.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Association Rules ================= diff --git a/docs/source/daal/algorithms/boosting/adaboost-multiclass.rst b/docs/source/daal/algorithms/boosting/adaboost-multiclass.rst index 69a4904d58c..a86bbac84df 100644 --- a/docs/source/daal/algorithms/boosting/adaboost-multiclass.rst +++ b/docs/source/daal/algorithms/boosting/adaboost-multiclass.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. AdaBoost Multiclass Classifier ============================== diff --git a/docs/source/daal/algorithms/boosting/adaboost.rst b/docs/source/daal/algorithms/boosting/adaboost.rst index 0a20f221006..d612d9f17a5 100644 --- a/docs/source/daal/algorithms/boosting/adaboost.rst +++ b/docs/source/daal/algorithms/boosting/adaboost.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. AdaBoost Classifier =================== @@ -138,7 +136,7 @@ Examples Batch Processing: - :cpp_example:`adaboost_dense_batch.cpp ` - + .. tab:: Python* - :daal4py_example:`adaboost.py` diff --git a/docs/source/daal/algorithms/boosting/brownboost.rst b/docs/source/daal/algorithms/boosting/brownboost.rst index 75d4b6da0cb..00034990286 100644 --- a/docs/source/daal/algorithms/boosting/brownboost.rst +++ b/docs/source/daal/algorithms/boosting/brownboost.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. BrownBoost Classifier ===================== diff --git a/docs/source/daal/algorithms/boosting/index.rst b/docs/source/daal/algorithms/boosting/index.rst index 4f4e632be5d..938d869c2ab 100644 --- a/docs/source/daal/algorithms/boosting/index.rst +++ b/docs/source/daal/algorithms/boosting/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Boosting ======== diff --git a/docs/source/daal/algorithms/boosting/logitboost.rst b/docs/source/daal/algorithms/boosting/logitboost.rst index 06dec03a048..e08657776f3 100644 --- a/docs/source/daal/algorithms/boosting/logitboost.rst +++ b/docs/source/daal/algorithms/boosting/logitboost.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. LogitBoost Classifier ===================== diff --git a/docs/source/daal/algorithms/cholesky/cholesky.rst b/docs/source/daal/algorithms/cholesky/cholesky.rst index 2cff2d92bbc..d136273afa5 100644 --- a/docs/source/daal/algorithms/cholesky/cholesky.rst +++ b/docs/source/daal/algorithms/cholesky/cholesky.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Cholesky Decomposition ====================== diff --git a/docs/source/daal/algorithms/covariance/computation-batch.rst b/docs/source/daal/algorithms/covariance/computation-batch.rst index 164e2748255..fd9fd9452ba 100644 --- a/docs/source/daal/algorithms/covariance/computation-batch.rst +++ b/docs/source/daal/algorithms/covariance/computation-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Batch Processing ================ diff --git a/docs/source/daal/algorithms/covariance/computation-distributed.rst b/docs/source/daal/algorithms/covariance/computation-distributed.rst index 35986693990..7d5efad0c96 100644 --- a/docs/source/daal/algorithms/covariance/computation-distributed.rst +++ b/docs/source/daal/algorithms/covariance/computation-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _cor_cov_distributed: diff --git a/docs/source/daal/algorithms/covariance/computation-online.rst b/docs/source/daal/algorithms/covariance/computation-online.rst index 5747ae1e0fa..09fd0a3e08e 100644 --- a/docs/source/daal/algorithms/covariance/computation-online.rst +++ b/docs/source/daal/algorithms/covariance/computation-online.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _cor_cov_online: diff --git a/docs/source/daal/algorithms/covariance/correlation-and-variance-covariance-matrices.rst b/docs/source/daal/algorithms/covariance/correlation-and-variance-covariance-matrices.rst index 759e3e9829e..5825ed84982 100644 --- a/docs/source/daal/algorithms/covariance/correlation-and-variance-covariance-matrices.rst +++ b/docs/source/daal/algorithms/covariance/correlation-and-variance-covariance-matrices.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _cor_cov: diff --git a/docs/source/daal/algorithms/dbscan/computation-batch.rst b/docs/source/daal/algorithms/dbscan/computation-batch.rst index 5799b1b9a69..c816b8ed355 100644 --- a/docs/source/daal/algorithms/dbscan/computation-batch.rst +++ b/docs/source/daal/algorithms/dbscan/computation-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Batch Processing ================ diff --git a/docs/source/daal/algorithms/dbscan/computation-distributed.rst b/docs/source/daal/algorithms/dbscan/computation-distributed.rst index 05638264ac4..482a430bbf5 100644 --- a/docs/source/daal/algorithms/dbscan/computation-distributed.rst +++ b/docs/source/daal/algorithms/dbscan/computation-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ====================== diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters.rst index eb6f213f6fa..dc5c002d67d 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabularcolumns:: |\Y{0.15}|\Y{0.15}|\Y{0.7}| diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters_blocks.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters_blocks.rst index 7c273f83527..cc5896a4b3c 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters_blocks.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters_blocks.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabularcolumns:: |\Y{0.15}|\Y{0.15}|\Y{0.7}| diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters_blocks_left_right.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters_blocks_left_right.rst index d79101db077..05f314b0444 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters_blocks_left_right.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/includes/parameters_blocks_left_right.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabularcolumns:: |\Y{0.15}|\Y{0.15}|\Y{0.7}| diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-1.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-1.rst index a27b459cd3b..bdca5ba9a4c 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-1.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-1.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-10.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-10.rst index 543d908f8b5..07810914b8b 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-10.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-10.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-11.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-11.rst index 6416e7fc7fe..d2ff5c5f574 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-11.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-11.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-12.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-12.rst index 544ea0d0ed3..f64901d735b 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-12.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-12.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-13.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-13.rst index 00a63f74aee..d65f3a0870f 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-13.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-13.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-2.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-2.rst index 5a8bebcf9fa..51410da64db 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-2.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-2.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-3.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-3.rst index 973fa86b4e5..fd50b29091b 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-3.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-3.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-4.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-4.rst index 9be1b570500..a82c9424abd 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-4.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-4.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-5.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-5.rst index 802501b8c47..18373dac742 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-5.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-5.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-6.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-6.rst index 19615f7f24c..a835b7fca57 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-6.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-6.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-7.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-7.rst index b5e23b560ea..e88476854f6 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-7.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-7.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-8.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-8.rst index d3a3c10ad86..aee58398c54 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-8.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-8.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/distributed-steps/step-9.rst b/docs/source/daal/algorithms/dbscan/distributed-steps/step-9.rst index abd85329002..735f62af055 100644 --- a/docs/source/daal/algorithms/dbscan/distributed-steps/step-9.rst +++ b/docs/source/daal/algorithms/dbscan/distributed-steps/step-9.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. In this step, the DBSCAN algorithm has the following parameters: diff --git a/docs/source/daal/algorithms/dbscan/index.rst b/docs/source/daal/algorithms/dbscan/index.rst index 82a3ff22dd5..8f188302709 100644 --- a/docs/source/daal/algorithms/dbscan/index.rst +++ b/docs/source/daal/algorithms/dbscan/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. re-use for math equations: .. |x| replace:: :math:`x` diff --git a/docs/source/daal/algorithms/decision_forest/decision-forest-classification.rst b/docs/source/daal/algorithms/decision_forest/decision-forest-classification.rst index 521010667fc..372cc0140d9 100644 --- a/docs/source/daal/algorithms/decision_forest/decision-forest-classification.rst +++ b/docs/source/daal/algorithms/decision_forest/decision-forest-classification.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _df_classification: diff --git a/docs/source/daal/algorithms/decision_forest/decision-forest-regression.rst b/docs/source/daal/algorithms/decision_forest/decision-forest-regression.rst index db3077f023b..b9f229614de 100644 --- a/docs/source/daal/algorithms/decision_forest/decision-forest-regression.rst +++ b/docs/source/daal/algorithms/decision_forest/decision-forest-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _df_regression: diff --git a/docs/source/daal/algorithms/decision_forest/decision-forest.rst b/docs/source/daal/algorithms/decision_forest/decision-forest.rst index 1953e29b155..7a915316f26 100644 --- a/docs/source/daal/algorithms/decision_forest/decision-forest.rst +++ b/docs/source/daal/algorithms/decision_forest/decision-forest.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _decision_forest: diff --git a/docs/source/daal/algorithms/decision_forest/index.rst b/docs/source/daal/algorithms/decision_forest/index.rst index ff710131923..18794f783f0 100644 --- a/docs/source/daal/algorithms/decision_forest/index.rst +++ b/docs/source/daal/algorithms/decision_forest/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Decision Forest --------------- diff --git a/docs/source/daal/algorithms/decision_tree/decision-tree-classification.rst b/docs/source/daal/algorithms/decision_tree/decision-tree-classification.rst index 4087dd407df..37223465e03 100644 --- a/docs/source/daal/algorithms/decision_tree/decision-tree-classification.rst +++ b/docs/source/daal/algorithms/decision_tree/decision-tree-classification.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _dt_classification: diff --git a/docs/source/daal/algorithms/decision_tree/decision-tree-regression.rst b/docs/source/daal/algorithms/decision_tree/decision-tree-regression.rst index bbf1d36d63d..b1cd27fcc09 100644 --- a/docs/source/daal/algorithms/decision_tree/decision-tree-regression.rst +++ b/docs/source/daal/algorithms/decision_tree/decision-tree-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _dt_regression: diff --git a/docs/source/daal/algorithms/decision_tree/decision-tree.rst b/docs/source/daal/algorithms/decision_tree/decision-tree.rst index 15a401bdeaa..be1629bcfd9 100644 --- a/docs/source/daal/algorithms/decision_tree/decision-tree.rst +++ b/docs/source/daal/algorithms/decision_tree/decision-tree.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _decision_tree: diff --git a/docs/source/daal/algorithms/decision_tree/index.rst b/docs/source/daal/algorithms/decision_tree/index.rst index a17f12070ef..9dec5d77914 100644 --- a/docs/source/daal/algorithms/decision_tree/index.rst +++ b/docs/source/daal/algorithms/decision_tree/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Decision Trees ++++++++++++++ diff --git a/docs/source/daal/algorithms/distance/correlation.rst b/docs/source/daal/algorithms/distance/correlation.rst index 469e02e7f8b..afdab258939 100644 --- a/docs/source/daal/algorithms/distance/correlation.rst +++ b/docs/source/daal/algorithms/distance/correlation.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Correlation Distance Matrix =========================== diff --git a/docs/source/daal/algorithms/distance/cosine.rst b/docs/source/daal/algorithms/distance/cosine.rst index d3ea497e95b..52f9e287a3c 100644 --- a/docs/source/daal/algorithms/distance/cosine.rst +++ b/docs/source/daal/algorithms/distance/cosine.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Cosine Distance Matrix ====================== diff --git a/docs/source/daal/algorithms/distance/index.rst b/docs/source/daal/algorithms/distance/index.rst index 08dd332e4b4..efbd08c515d 100644 --- a/docs/source/daal/algorithms/distance/index.rst +++ b/docs/source/daal/algorithms/distance/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distance Matrix =============== diff --git a/docs/source/daal/algorithms/distributions/bernoulli.rst b/docs/source/daal/algorithms/distributions/bernoulli.rst index b21332635ec..cc3d5444a82 100644 --- a/docs/source/daal/algorithms/distributions/bernoulli.rst +++ b/docs/source/daal/algorithms/distributions/bernoulli.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Bernoulli Distribution ====================== diff --git a/docs/source/daal/algorithms/distributions/index.rst b/docs/source/daal/algorithms/distributions/index.rst index 273c542b2d8..dbd2137e20a 100644 --- a/docs/source/daal/algorithms/distributions/index.rst +++ b/docs/source/daal/algorithms/distributions/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _distributions: diff --git a/docs/source/daal/algorithms/distributions/normal.rst b/docs/source/daal/algorithms/distributions/normal.rst index e0da45b632d..92c049c6f48 100644 --- a/docs/source/daal/algorithms/distributions/normal.rst +++ b/docs/source/daal/algorithms/distributions/normal.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Normal Distribution =================== diff --git a/docs/source/daal/algorithms/distributions/uniform.rst b/docs/source/daal/algorithms/distributions/uniform.rst index c795ee56d68..dc2b0dde826 100644 --- a/docs/source/daal/algorithms/distributions/uniform.rst +++ b/docs/source/daal/algorithms/distributions/uniform.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Uniform Distribution ==================== diff --git a/docs/source/daal/algorithms/em/expectation-maximization.rst b/docs/source/daal/algorithms/em/expectation-maximization.rst index f20a5a207d2..188c71dc237 100644 --- a/docs/source/daal/algorithms/em/expectation-maximization.rst +++ b/docs/source/daal/algorithms/em/expectation-maximization.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Expectation-Maximization ************************ diff --git a/docs/source/daal/algorithms/engines/index.rst b/docs/source/daal/algorithms/engines/index.rst index e73aef6d991..9def0af4c81 100644 --- a/docs/source/daal/algorithms/engines/index.rst +++ b/docs/source/daal/algorithms/engines/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Engines ======= diff --git a/docs/source/daal/algorithms/engines/mcg59.rst b/docs/source/daal/algorithms/engines/mcg59.rst index b52ea82eae7..ef288d289dc 100644 --- a/docs/source/daal/algorithms/engines/mcg59.rst +++ b/docs/source/daal/algorithms/engines/mcg59.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. mcg59 ===== diff --git a/docs/source/daal/algorithms/engines/mt19937.rst b/docs/source/daal/algorithms/engines/mt19937.rst index ed005fb48ad..bdf1f19ee37 100644 --- a/docs/source/daal/algorithms/engines/mt19937.rst +++ b/docs/source/daal/algorithms/engines/mt19937.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. mt19937 ======= diff --git a/docs/source/daal/algorithms/engines/mt2203.rst b/docs/source/daal/algorithms/engines/mt2203.rst index f231e34b1d7..48ff2e8ea7e 100644 --- a/docs/source/daal/algorithms/engines/mt2203.rst +++ b/docs/source/daal/algorithms/engines/mt2203.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. mt2203 ====== diff --git a/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees-classification.rst b/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees-classification.rst index d3a9e84de47..408d4b084d3 100644 --- a/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees-classification.rst +++ b/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees-classification.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _gbt_classification: diff --git a/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees-regression.rst b/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees-regression.rst index 491b78998ec..4bbed6401b7 100644 --- a/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees-regression.rst +++ b/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _gbt_regression: diff --git a/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees.rst b/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees.rst index 57d59809ec4..ffb3e7f09d0 100644 --- a/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees.rst +++ b/docs/source/daal/algorithms/gradient_boosted_trees/gradient-boosted-trees.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _gb_trees: diff --git a/docs/source/daal/algorithms/gradient_boosted_trees/index.rst b/docs/source/daal/algorithms/gradient_boosted_trees/index.rst index 79ad868e1ec..405f50961ff 100644 --- a/docs/source/daal/algorithms/gradient_boosted_trees/index.rst +++ b/docs/source/daal/algorithms/gradient_boosted_trees/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Gradient Boosted Trees ====================== diff --git a/docs/source/daal/algorithms/implicit_als/computation-batch.rst b/docs/source/daal/algorithms/implicit_als/computation-batch.rst index 36fe00ae3e9..e49142a1bfb 100644 --- a/docs/source/daal/algorithms/implicit_als/computation-batch.rst +++ b/docs/source/daal/algorithms/implicit_als/computation-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _implicit_als_batch_computation: diff --git a/docs/source/daal/algorithms/implicit_als/computation-distributed-prediction.rst b/docs/source/daal/algorithms/implicit_als/computation-distributed-prediction.rst index 445eaba7004..67f8de499ed 100644 --- a/docs/source/daal/algorithms/implicit_als/computation-distributed-prediction.rst +++ b/docs/source/daal/algorithms/implicit_als/computation-distributed-prediction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _implicit_als_distributed_prediction: diff --git a/docs/source/daal/algorithms/implicit_als/computation-distributed-training.rst b/docs/source/daal/algorithms/implicit_als/computation-distributed-training.rst index e6fa820e310..97825d9c84b 100644 --- a/docs/source/daal/algorithms/implicit_als/computation-distributed-training.rst +++ b/docs/source/daal/algorithms/implicit_als/computation-distributed-training.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _implicit_als_distributed_training: diff --git a/docs/source/daal/algorithms/implicit_als/implicit-alternating-least-squares.rst b/docs/source/daal/algorithms/implicit_als/implicit-alternating-least-squares.rst index 7d4d109ed25..6328a6be4be 100644 --- a/docs/source/daal/algorithms/implicit_als/implicit-alternating-least-squares.rst +++ b/docs/source/daal/algorithms/implicit_als/implicit-alternating-least-squares.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Implicit Alternating Least Squares ================================== diff --git a/docs/source/daal/algorithms/implicit_als/initialization-batch.rst b/docs/source/daal/algorithms/implicit_als/initialization-batch.rst index f9975746474..6a2bbcc421d 100644 --- a/docs/source/daal/algorithms/implicit_als/initialization-batch.rst +++ b/docs/source/daal/algorithms/implicit_als/initialization-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Batch Processing ================ diff --git a/docs/source/daal/algorithms/implicit_als/initialization-distributed.rst b/docs/source/daal/algorithms/implicit_als/initialization-distributed.rst index 0b21f0067e9..d64bdb4321f 100644 --- a/docs/source/daal/algorithms/implicit_als/initialization-distributed.rst +++ b/docs/source/daal/algorithms/implicit_als/initialization-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ====================== @@ -206,4 +204,3 @@ For more details, see :ref:`algorithms`. - A key-value data collection that maps components of the partial model to the local nodes. * - ``offsets`` - A key-value data collection of size ``nblocks`` that holds the starting offsets of the factor indices on each node. - \ No newline at end of file diff --git a/docs/source/daal/algorithms/k_nearest_neighbors/k-nearest-neighbors-knn-classifier.rst b/docs/source/daal/algorithms/k_nearest_neighbors/k-nearest-neighbors-knn-classifier.rst index a871d0a6e3d..91988ae679d 100644 --- a/docs/source/daal/algorithms/k_nearest_neighbors/k-nearest-neighbors-knn-classifier.rst +++ b/docs/source/daal/algorithms/k_nearest_neighbors/k-nearest-neighbors-knn-classifier.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _knn: diff --git a/docs/source/daal/algorithms/kernel_function/kernel-functions.rst b/docs/source/daal/algorithms/kernel_function/kernel-functions.rst index 956249b797c..2d1e85e933a 100644 --- a/docs/source/daal/algorithms/kernel_function/kernel-functions.rst +++ b/docs/source/daal/algorithms/kernel_function/kernel-functions.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _kernel: diff --git a/docs/source/daal/algorithms/kmeans/computation-batch.rst b/docs/source/daal/algorithms/kmeans/computation-batch.rst index 9e6eb866026..a0e01e17b7f 100644 --- a/docs/source/daal/algorithms/kmeans/computation-batch.rst +++ b/docs/source/daal/algorithms/kmeans/computation-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _kmeans_computation_batch: diff --git a/docs/source/daal/algorithms/kmeans/computation-distributed.rst b/docs/source/daal/algorithms/kmeans/computation-distributed.rst index 5be127b9e85..455a2155855 100644 --- a/docs/source/daal/algorithms/kmeans/computation-distributed.rst +++ b/docs/source/daal/algorithms/kmeans/computation-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ********************** diff --git a/docs/source/daal/algorithms/kmeans/initialization-batch.rst b/docs/source/daal/algorithms/kmeans/initialization-batch.rst index bc8baa4196b..a38ceeed75f 100644 --- a/docs/source/daal/algorithms/kmeans/initialization-batch.rst +++ b/docs/source/daal/algorithms/kmeans/initialization-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Batch Processing **************** diff --git a/docs/source/daal/algorithms/kmeans/initialization-distributed.rst b/docs/source/daal/algorithms/kmeans/initialization-distributed.rst index c289f069f2e..ec0ca7abdfb 100644 --- a/docs/source/daal/algorithms/kmeans/initialization-distributed.rst +++ b/docs/source/daal/algorithms/kmeans/initialization-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ********************** diff --git a/docs/source/daal/algorithms/kmeans/k-means-clustering.rst b/docs/source/daal/algorithms/kmeans/k-means-clustering.rst index ba0df9b4f1e..28865f74057 100644 --- a/docs/source/daal/algorithms/kmeans/k-means-clustering.rst +++ b/docs/source/daal/algorithms/kmeans/k-means-clustering.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _kmeans: diff --git a/docs/source/daal/algorithms/lasso_elastic_net/elastic-net.rst b/docs/source/daal/algorithms/lasso_elastic_net/elastic-net.rst index 5bcdbe48be8..da07ba536fc 100644 --- a/docs/source/daal/algorithms/lasso_elastic_net/elastic-net.rst +++ b/docs/source/daal/algorithms/lasso_elastic_net/elastic-net.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. re-use for math equations: .. |x_vector| replace:: :math:`(x_1, \ldots, x_p)` diff --git a/docs/source/daal/algorithms/lasso_elastic_net/index.rst b/docs/source/daal/algorithms/lasso_elastic_net/index.rst index 1edf6dd4597..9dee498b69d 100644 --- a/docs/source/daal/algorithms/lasso_elastic_net/index.rst +++ b/docs/source/daal/algorithms/lasso_elastic_net/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. LASSO and Elastic Net Regressions ================================= diff --git a/docs/source/daal/algorithms/lasso_elastic_net/lasso-elasticnet-computation.rst b/docs/source/daal/algorithms/lasso_elastic_net/lasso-elasticnet-computation.rst index 42f52f85374..6d7ab886e1b 100644 --- a/docs/source/daal/algorithms/lasso_elastic_net/lasso-elasticnet-computation.rst +++ b/docs/source/daal/algorithms/lasso_elastic_net/lasso-elasticnet-computation.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. LASSO and Elastic Net Computation ================================= diff --git a/docs/source/daal/algorithms/lasso_elastic_net/lasso.rst b/docs/source/daal/algorithms/lasso_elastic_net/lasso.rst index 9a27244f597..546df3c4140 100644 --- a/docs/source/daal/algorithms/lasso_elastic_net/lasso.rst +++ b/docs/source/daal/algorithms/lasso_elastic_net/lasso.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. re-use for math equations: .. |x_vector| replace:: :math:`(x_1, \ldots, x_p)` diff --git a/docs/source/daal/algorithms/linear_ridge_regression/index.rst b/docs/source/daal/algorithms/linear_ridge_regression/index.rst index ca8fbb7050b..b691f8077ae 100644 --- a/docs/source/daal/algorithms/linear_ridge_regression/index.rst +++ b/docs/source/daal/algorithms/linear_ridge_regression/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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 and Ridge Regressions ++++++++++++++++++++++++++++ diff --git a/docs/source/daal/algorithms/linear_ridge_regression/linear-regression.rst b/docs/source/daal/algorithms/linear_ridge_regression/linear-regression.rst index 8b6be6b9ec2..a832da8be4c 100644 --- a/docs/source/daal/algorithms/linear_ridge_regression/linear-regression.rst +++ b/docs/source/daal/algorithms/linear_ridge_regression/linear-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. re-use for math equations: .. |x_vector| replace:: :math:`(x_1, \ldots, x_p)` diff --git a/docs/source/daal/algorithms/linear_ridge_regression/linear-ridge-regression-computation.rst b/docs/source/daal/algorithms/linear_ridge_regression/linear-ridge-regression-computation.rst index 1a9351afc4b..f0f01223d90 100644 --- a/docs/source/daal/algorithms/linear_ridge_regression/linear-ridge-regression-computation.rst +++ b/docs/source/daal/algorithms/linear_ridge_regression/linear-ridge-regression-computation.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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 and Ridge Regressions Computation **************************************** diff --git a/docs/source/daal/algorithms/linear_ridge_regression/ridge-regression.rst b/docs/source/daal/algorithms/linear_ridge_regression/ridge-regression.rst index d381a39f888..136b9154625 100644 --- a/docs/source/daal/algorithms/linear_ridge_regression/ridge-regression.rst +++ b/docs/source/daal/algorithms/linear_ridge_regression/ridge-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. re-use for math equations: .. |x_vector| replace:: :math:`(x_1, \ldots, x_p)` diff --git a/docs/source/daal/algorithms/logistic_regression/logistic-regression.rst b/docs/source/daal/algorithms/logistic_regression/logistic-regression.rst index d370fd28eaf..be4b7b11357 100644 --- a/docs/source/daal/algorithms/logistic_regression/logistic-regression.rst +++ b/docs/source/daal/algorithms/logistic_regression/logistic-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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: diff --git a/docs/source/daal/algorithms/moments/computation-batch.rst b/docs/source/daal/algorithms/moments/computation-batch.rst index 5b3c07f2a5f..76a432fe945 100644 --- a/docs/source/daal/algorithms/moments/computation-batch.rst +++ b/docs/source/daal/algorithms/moments/computation-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _moments_batch: diff --git a/docs/source/daal/algorithms/moments/computation-distributed.rst b/docs/source/daal/algorithms/moments/computation-distributed.rst index 16cd65a6245..21eea3cff2c 100644 --- a/docs/source/daal/algorithms/moments/computation-distributed.rst +++ b/docs/source/daal/algorithms/moments/computation-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ====================== diff --git a/docs/source/daal/algorithms/moments/computation-online.rst b/docs/source/daal/algorithms/moments/computation-online.rst index c26ad45fa8f..0dd4f73c390 100644 --- a/docs/source/daal/algorithms/moments/computation-online.rst +++ b/docs/source/daal/algorithms/moments/computation-online.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Online Processing ================= diff --git a/docs/source/daal/algorithms/moments/moments-of-low-order.rst b/docs/source/daal/algorithms/moments/moments-of-low-order.rst index 70ac92e0b20..1e802a72bff 100644 --- a/docs/source/daal/algorithms/moments/moments-of-low-order.rst +++ b/docs/source/daal/algorithms/moments/moments-of-low-order.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _moments_low_order: diff --git a/docs/source/daal/algorithms/naive_bayes/computation-batch.rst b/docs/source/daal/algorithms/naive_bayes/computation-batch.rst index a1e1f4f40ed..50daa8f856f 100644 --- a/docs/source/daal/algorithms/naive_bayes/computation-batch.rst +++ b/docs/source/daal/algorithms/naive_bayes/computation-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Batch Processing **************** diff --git a/docs/source/daal/algorithms/naive_bayes/computation-distributed.rst b/docs/source/daal/algorithms/naive_bayes/computation-distributed.rst index abe76bcf126..2aeef89b35e 100644 --- a/docs/source/daal/algorithms/naive_bayes/computation-distributed.rst +++ b/docs/source/daal/algorithms/naive_bayes/computation-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ====================== diff --git a/docs/source/daal/algorithms/naive_bayes/computation-online.rst b/docs/source/daal/algorithms/naive_bayes/computation-online.rst index 5d959b65098..988aca9def9 100644 --- a/docs/source/daal/algorithms/naive_bayes/computation-online.rst +++ b/docs/source/daal/algorithms/naive_bayes/computation-online.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Online Processing ***************** diff --git a/docs/source/daal/algorithms/naive_bayes/naive-bayes-classifier.rst b/docs/source/daal/algorithms/naive_bayes/naive-bayes-classifier.rst index 3bc7a604307..dfb8e84be25 100644 --- a/docs/source/daal/algorithms/naive_bayes/naive-bayes-classifier.rst +++ b/docs/source/daal/algorithms/naive_bayes/naive-bayes-classifier.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Naïve Bayes Classifier ====================== diff --git a/docs/source/daal/algorithms/normalization/index.rst b/docs/source/daal/algorithms/normalization/index.rst index ab131aba10a..db698c3fa04 100644 --- a/docs/source/daal/algorithms/normalization/index.rst +++ b/docs/source/daal/algorithms/normalization/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Normalization ============= diff --git a/docs/source/daal/algorithms/normalization/min-max.rst b/docs/source/daal/algorithms/normalization/min-max.rst index 68058fb48ee..84da328e176 100644 --- a/docs/source/daal/algorithms/normalization/min-max.rst +++ b/docs/source/daal/algorithms/normalization/min-max.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Min-max ======= diff --git a/docs/source/daal/algorithms/normalization/z-score.rst b/docs/source/daal/algorithms/normalization/z-score.rst index cfa8324aebf..ecb7d365aaf 100644 --- a/docs/source/daal/algorithms/normalization/z-score.rst +++ b/docs/source/daal/algorithms/normalization/z-score.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Z-score ======= diff --git a/docs/source/daal/algorithms/optimization-solvers/iterative-solver.rst b/docs/source/daal/algorithms/optimization-solvers/iterative-solver.rst index c2f7b8822d0..a27ae8ed568 100644 --- a/docs/source/daal/algorithms/optimization-solvers/iterative-solver.rst +++ b/docs/source/daal/algorithms/optimization-solvers/iterative-solver.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _iterative_solver: diff --git a/docs/source/daal/algorithms/optimization-solvers/objective-function.rst b/docs/source/daal/algorithms/optimization-solvers/objective-function.rst index 81d37f6a957..235d56d8da5 100644 --- a/docs/source/daal/algorithms/optimization-solvers/objective-function.rst +++ b/docs/source/daal/algorithms/optimization-solvers/objective-function.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _objective_function: diff --git a/docs/source/daal/algorithms/optimization-solvers/objective-functions/computation.rst b/docs/source/daal/algorithms/optimization-solvers/objective-functions/computation.rst index 5357eb4bf98..56ffbf7c17c 100644 --- a/docs/source/daal/algorithms/optimization-solvers/objective-functions/computation.rst +++ b/docs/source/daal/algorithms/optimization-solvers/objective-functions/computation.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Computation =========== diff --git a/docs/source/daal/algorithms/optimization-solvers/objective-functions/cross-entropy.rst b/docs/source/daal/algorithms/optimization-solvers/objective-functions/cross-entropy.rst index 06e398be40e..27400131f42 100644 --- a/docs/source/daal/algorithms/optimization-solvers/objective-functions/cross-entropy.rst +++ b/docs/source/daal/algorithms/optimization-solvers/objective-functions/cross-entropy.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _cross_entropy_loss: diff --git a/docs/source/daal/algorithms/optimization-solvers/objective-functions/logistic-loss.rst b/docs/source/daal/algorithms/optimization-solvers/objective-functions/logistic-loss.rst index bf8b6efe571..8cb317c027c 100644 --- a/docs/source/daal/algorithms/optimization-solvers/objective-functions/logistic-loss.rst +++ b/docs/source/daal/algorithms/optimization-solvers/objective-functions/logistic-loss.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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_loss: diff --git a/docs/source/daal/algorithms/optimization-solvers/objective-functions/mse.rst b/docs/source/daal/algorithms/optimization-solvers/objective-functions/mse.rst index 47ba31ccabc..17e4516b0b8 100644 --- a/docs/source/daal/algorithms/optimization-solvers/objective-functions/mse.rst +++ b/docs/source/daal/algorithms/optimization-solvers/objective-functions/mse.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _mse: diff --git a/docs/source/daal/algorithms/optimization-solvers/objective-functions/sum-of-functions.rst b/docs/source/daal/algorithms/optimization-solvers/objective-functions/sum-of-functions.rst index abae80c81f7..d4f6d024141 100644 --- a/docs/source/daal/algorithms/optimization-solvers/objective-functions/sum-of-functions.rst +++ b/docs/source/daal/algorithms/optimization-solvers/objective-functions/sum-of-functions.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Sum of Functions ================ diff --git a/docs/source/daal/algorithms/optimization-solvers/objective-functions/with-precomputed-characteristics.rst b/docs/source/daal/algorithms/optimization-solvers/objective-functions/with-precomputed-characteristics.rst index b831c2b6b79..a3e8191050d 100644 --- a/docs/source/daal/algorithms/optimization-solvers/objective-functions/with-precomputed-characteristics.rst +++ b/docs/source/daal/algorithms/optimization-solvers/objective-functions/with-precomputed-characteristics.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _objective_function_precomputed_characteristics: diff --git a/docs/source/daal/algorithms/optimization-solvers/optimization-solvers.rst b/docs/source/daal/algorithms/optimization-solvers/optimization-solvers.rst index 8d47a152a4e..9838c583772 100644 --- a/docs/source/daal/algorithms/optimization-solvers/optimization-solvers.rst +++ b/docs/source/daal/algorithms/optimization-solvers/optimization-solvers.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Optimization Solvers ==================== diff --git a/docs/source/daal/algorithms/optimization-solvers/solvers/adaptive-subgradient-method.rst b/docs/source/daal/algorithms/optimization-solvers/solvers/adaptive-subgradient-method.rst index ae7f0946a9e..965a1d418c5 100644 --- a/docs/source/daal/algorithms/optimization-solvers/solvers/adaptive-subgradient-method.rst +++ b/docs/source/daal/algorithms/optimization-solvers/solvers/adaptive-subgradient-method.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _adagrad_solver: diff --git a/docs/source/daal/algorithms/optimization-solvers/solvers/computation.rst b/docs/source/daal/algorithms/optimization-solvers/solvers/computation.rst index 1f261259d2d..ff12c66ad61 100644 --- a/docs/source/daal/algorithms/optimization-solvers/solvers/computation.rst +++ b/docs/source/daal/algorithms/optimization-solvers/solvers/computation.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _iterative_solver_computation: diff --git a/docs/source/daal/algorithms/optimization-solvers/solvers/coordinate-descent.rst b/docs/source/daal/algorithms/optimization-solvers/solvers/coordinate-descent.rst index ceec18fd30e..0ba15e5ec54 100644 --- a/docs/source/daal/algorithms/optimization-solvers/solvers/coordinate-descent.rst +++ b/docs/source/daal/algorithms/optimization-solvers/solvers/coordinate-descent.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _cda_solver: diff --git a/docs/source/daal/algorithms/optimization-solvers/solvers/lbfgs.rst b/docs/source/daal/algorithms/optimization-solvers/solvers/lbfgs.rst index aad70393c8b..47fdcc8b74b 100644 --- a/docs/source/daal/algorithms/optimization-solvers/solvers/lbfgs.rst +++ b/docs/source/daal/algorithms/optimization-solvers/solvers/lbfgs.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _lbfgs_solver: diff --git a/docs/source/daal/algorithms/optimization-solvers/solvers/stochastic-average-gradient-accelerated-method.rst b/docs/source/daal/algorithms/optimization-solvers/solvers/stochastic-average-gradient-accelerated-method.rst index 8cadad8915c..e231676e944 100644 --- a/docs/source/daal/algorithms/optimization-solvers/solvers/stochastic-average-gradient-accelerated-method.rst +++ b/docs/source/daal/algorithms/optimization-solvers/solvers/stochastic-average-gradient-accelerated-method.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _saga_solver: diff --git a/docs/source/daal/algorithms/optimization-solvers/solvers/stochastic-gradient-descent-algorithm.rst b/docs/source/daal/algorithms/optimization-solvers/solvers/stochastic-gradient-descent-algorithm.rst index 41fcb76b236..9b6d6db84bc 100644 --- a/docs/source/daal/algorithms/optimization-solvers/solvers/stochastic-gradient-descent-algorithm.rst +++ b/docs/source/daal/algorithms/optimization-solvers/solvers/stochastic-gradient-descent-algorithm.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _sgd_solver: diff --git a/docs/source/daal/algorithms/outlier_detection/index.rst b/docs/source/daal/algorithms/outlier_detection/index.rst index 2fdc619a8b7..0c916b77b43 100644 --- a/docs/source/daal/algorithms/outlier_detection/index.rst +++ b/docs/source/daal/algorithms/outlier_detection/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Outlier Detection ================= diff --git a/docs/source/daal/algorithms/outlier_detection/multivariate-bacon.rst b/docs/source/daal/algorithms/outlier_detection/multivariate-bacon.rst index d611040849b..c5a3a3ce157 100644 --- a/docs/source/daal/algorithms/outlier_detection/multivariate-bacon.rst +++ b/docs/source/daal/algorithms/outlier_detection/multivariate-bacon.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Multivariate BACON Outlier Detection ==================================== diff --git a/docs/source/daal/algorithms/outlier_detection/multivariate.rst b/docs/source/daal/algorithms/outlier_detection/multivariate.rst index 73f090e69c7..3217b38bbb8 100644 --- a/docs/source/daal/algorithms/outlier_detection/multivariate.rst +++ b/docs/source/daal/algorithms/outlier_detection/multivariate.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Multivariate Outlier Detection ============================== diff --git a/docs/source/daal/algorithms/outlier_detection/univariate.rst b/docs/source/daal/algorithms/outlier_detection/univariate.rst index b0335e24656..596847b2e2b 100644 --- a/docs/source/daal/algorithms/outlier_detection/univariate.rst +++ b/docs/source/daal/algorithms/outlier_detection/univariate.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Univariate Outlier Detection ============================ diff --git a/docs/source/daal/algorithms/pca/computation-batch.rst b/docs/source/daal/algorithms/pca/computation-batch.rst index 29134c08255..e0195879028 100644 --- a/docs/source/daal/algorithms/pca/computation-batch.rst +++ b/docs/source/daal/algorithms/pca/computation-batch.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Batch Processing **************** diff --git a/docs/source/daal/algorithms/pca/computation-distributed.rst b/docs/source/daal/algorithms/pca/computation-distributed.rst index 4468c0ad829..fcdf6eabba3 100644 --- a/docs/source/daal/algorithms/pca/computation-distributed.rst +++ b/docs/source/daal/algorithms/pca/computation-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ********************** diff --git a/docs/source/daal/algorithms/pca/computation-online.rst b/docs/source/daal/algorithms/pca/computation-online.rst index c17fe02b8fc..616daf3dac2 100644 --- a/docs/source/daal/algorithms/pca/computation-online.rst +++ b/docs/source/daal/algorithms/pca/computation-online.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Online Processing ***************** diff --git a/docs/source/daal/algorithms/pca/principal-component-analysis.rst b/docs/source/daal/algorithms/pca/principal-component-analysis.rst index c03ddb97061..a640feb1a19 100644 --- a/docs/source/daal/algorithms/pca/principal-component-analysis.rst +++ b/docs/source/daal/algorithms/pca/principal-component-analysis.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _pca: diff --git a/docs/source/daal/algorithms/pca/transform.rst b/docs/source/daal/algorithms/pca/transform.rst index d680773ec19..4463dd88b8e 100644 --- a/docs/source/daal/algorithms/pca/transform.rst +++ b/docs/source/daal/algorithms/pca/transform.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Principal Components Analysis Transform ======================================= diff --git a/docs/source/daal/algorithms/qr/qr-decomposition.rst b/docs/source/daal/algorithms/qr/qr-decomposition.rst index c726a1c0611..c0e583e69ee 100644 --- a/docs/source/daal/algorithms/qr/qr-decomposition.rst +++ b/docs/source/daal/algorithms/qr/qr-decomposition.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. QR Decomposition ================ diff --git a/docs/source/daal/algorithms/qr/qr-pivoted.rst b/docs/source/daal/algorithms/qr/qr-pivoted.rst index 35aef56d166..7d83af85126 100644 --- a/docs/source/daal/algorithms/qr/qr-pivoted.rst +++ b/docs/source/daal/algorithms/qr/qr-pivoted.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Pivoted QR Decomposition ======================== diff --git a/docs/source/daal/algorithms/qr/qr-without-pivoting.rst b/docs/source/daal/algorithms/qr/qr-without-pivoting.rst index bec3b9405a3..cf75b1f3738 100644 --- a/docs/source/daal/algorithms/qr/qr-without-pivoting.rst +++ b/docs/source/daal/algorithms/qr/qr-without-pivoting.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. QR Decomposition without Pivoting ================================= diff --git a/docs/source/daal/algorithms/qr/without-pivoting/computation-batch-online.rst b/docs/source/daal/algorithms/qr/without-pivoting/computation-batch-online.rst index 2d13e416182..8ab71e59632 100644 --- a/docs/source/daal/algorithms/qr/without-pivoting/computation-batch-online.rst +++ b/docs/source/daal/algorithms/qr/without-pivoting/computation-batch-online.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Batch and Online Processing =========================== diff --git a/docs/source/daal/algorithms/qr/without-pivoting/computation-distributed.rst b/docs/source/daal/algorithms/qr/without-pivoting/computation-distributed.rst index 1f8f094a3ed..9618bd67dcd 100644 --- a/docs/source/daal/algorithms/qr/without-pivoting/computation-distributed.rst +++ b/docs/source/daal/algorithms/qr/without-pivoting/computation-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ====================== diff --git a/docs/source/daal/algorithms/quality_metrics/default-metric-set.rst b/docs/source/daal/algorithms/quality_metrics/default-metric-set.rst index 3a3b21a5947..bdd3d54f85e 100644 --- a/docs/source/daal/algorithms/quality_metrics/default-metric-set.rst +++ b/docs/source/daal/algorithms/quality_metrics/default-metric-set.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Working with the Default Metric Set =================================== diff --git a/docs/source/daal/algorithms/quality_metrics/default/for-binary-classification.rst b/docs/source/daal/algorithms/quality_metrics/default/for-binary-classification.rst index 66d18ccc5a1..fec3cea09c7 100644 --- a/docs/source/daal/algorithms/quality_metrics/default/for-binary-classification.rst +++ b/docs/source/daal/algorithms/quality_metrics/default/for-binary-classification.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _quality_metrics_for_binary_classification: @@ -84,7 +82,7 @@ The confusion matrix is defined as follows: :header-rows: 1 :stub-columns: 1 - * - + * - - Classified as Class :math:`C_1` - Classified as Class :math:`C_2` * - Actual Class :math:`C_1` diff --git a/docs/source/daal/algorithms/quality_metrics/default/for-linear-regression.rst b/docs/source/daal/algorithms/quality_metrics/default/for-linear-regression.rst index 84a85f8a8e3..0ead9b1d9b2 100644 --- a/docs/source/daal/algorithms/quality_metrics/default/for-linear-regression.rst +++ b/docs/source/daal/algorithms/quality_metrics/default/for-linear-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Quality Metrics for Linear Regression ===================================== diff --git a/docs/source/daal/algorithms/quality_metrics/default/for-multi-class-classification.rst b/docs/source/daal/algorithms/quality_metrics/default/for-multi-class-classification.rst index 58d5157d3c4..1d3e9c971ad 100644 --- a/docs/source/daal/algorithms/quality_metrics/default/for-multi-class-classification.rst +++ b/docs/source/daal/algorithms/quality_metrics/default/for-multi-class-classification.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _quality_metrics_for_multi_class_classification: diff --git a/docs/source/daal/algorithms/quality_metrics/default/for-pca.rst b/docs/source/daal/algorithms/quality_metrics/default/for-pca.rst index 02623f6b3ed..5dbd5a32326 100644 --- a/docs/source/daal/algorithms/quality_metrics/default/for-pca.rst +++ b/docs/source/daal/algorithms/quality_metrics/default/for-pca.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Quality Metrics for Principal Components Analysis ================================================= diff --git a/docs/source/daal/algorithms/quality_metrics/index.rst b/docs/source/daal/algorithms/quality_metrics/index.rst index 04fd43e6f8e..8f3e1dcbad9 100644 --- a/docs/source/daal/algorithms/quality_metrics/index.rst +++ b/docs/source/daal/algorithms/quality_metrics/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Quality Metrics =============== diff --git a/docs/source/daal/algorithms/quality_metrics/user-defined.rst b/docs/source/daal/algorithms/quality_metrics/user-defined.rst index 171b86528cd..5f819d324fd 100644 --- a/docs/source/daal/algorithms/quality_metrics/user-defined.rst +++ b/docs/source/daal/algorithms/quality_metrics/user-defined.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Working with User-defined Quality Metrics ========================================= diff --git a/docs/source/daal/algorithms/quantiles/index.rst b/docs/source/daal/algorithms/quantiles/index.rst index 487d017f417..71dad7fc213 100644 --- a/docs/source/daal/algorithms/quantiles/index.rst +++ b/docs/source/daal/algorithms/quantiles/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Quantile ======== diff --git a/docs/source/daal/algorithms/sorting/index.rst b/docs/source/daal/algorithms/sorting/index.rst index d7abb8d781d..9f684fc978a 100644 --- a/docs/source/daal/algorithms/sorting/index.rst +++ b/docs/source/daal/algorithms/sorting/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Sorting ======= diff --git a/docs/source/daal/algorithms/stump/classification.rst b/docs/source/daal/algorithms/stump/classification.rst index 610a9a61e27..30030fcae88 100644 --- a/docs/source/daal/algorithms/stump/classification.rst +++ b/docs/source/daal/algorithms/stump/classification.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Classification Stump ==================== diff --git a/docs/source/daal/algorithms/stump/index.rst b/docs/source/daal/algorithms/stump/index.rst index 10a9ede4c4d..5309bfb170b 100644 --- a/docs/source/daal/algorithms/stump/index.rst +++ b/docs/source/daal/algorithms/stump/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Stump ===== diff --git a/docs/source/daal/algorithms/stump/regression.rst b/docs/source/daal/algorithms/stump/regression.rst index bb1b6ba691d..fe2be1f25e5 100644 --- a/docs/source/daal/algorithms/stump/regression.rst +++ b/docs/source/daal/algorithms/stump/regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Regression Stump ================ diff --git a/docs/source/daal/algorithms/svd/computation-batch-online.rst b/docs/source/daal/algorithms/svd/computation-batch-online.rst index 87f422f3b92..4fa88341cc4 100644 --- a/docs/source/daal/algorithms/svd/computation-batch-online.rst +++ b/docs/source/daal/algorithms/svd/computation-batch-online.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Batch and Online Processing =========================== diff --git a/docs/source/daal/algorithms/svd/computation-distributed.rst b/docs/source/daal/algorithms/svd/computation-distributed.rst index 68fcca3636d..ca93ea24f2d 100644 --- a/docs/source/daal/algorithms/svd/computation-distributed.rst +++ b/docs/source/daal/algorithms/svd/computation-distributed.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Distributed Processing ====================== diff --git a/docs/source/daal/algorithms/svd/singular-value-decomposition.rst b/docs/source/daal/algorithms/svd/singular-value-decomposition.rst index ee9e24554c7..824aefcfa7d 100644 --- a/docs/source/daal/algorithms/svd/singular-value-decomposition.rst +++ b/docs/source/daal/algorithms/svd/singular-value-decomposition.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _svd: diff --git a/docs/source/daal/algorithms/svm/support-vector-machine-classifier.rst b/docs/source/daal/algorithms/svm/support-vector-machine-classifier.rst index b73f12af07a..319cfe2fdfa 100644 --- a/docs/source/daal/algorithms/svm/support-vector-machine-classifier.rst +++ b/docs/source/daal/algorithms/svm/support-vector-machine-classifier.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _svm: diff --git a/docs/source/daal/algorithms/svm_multi_class/multi-class-classifier.rst b/docs/source/daal/algorithms/svm_multi_class/multi-class-classifier.rst index 8da25c7cf70..74b9711c383 100644 --- a/docs/source/daal/algorithms/svm_multi_class/multi-class-classifier.rst +++ b/docs/source/daal/algorithms/svm_multi_class/multi-class-classifier.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _svm_multi_class: diff --git a/docs/source/daal/analysis.rst b/docs/source/daal/analysis.rst index 6bd311f3df0..9f4fff49ee5 100644 --- a/docs/source/daal/analysis.rst +++ b/docs/source/daal/analysis.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _analysis: diff --git a/docs/source/daal/cpu-vs-gpu.rst b/docs/source/daal/cpu-vs-gpu.rst index 2696f9d3141..a0dd9fd8c34 100644 --- a/docs/source/daal/cpu-vs-gpu.rst +++ b/docs/source/daal/cpu-vs-gpu.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _cpu_vs_gpu: diff --git a/docs/source/daal/data-management/data-dictionaries.rst b/docs/source/daal/data-management/data-dictionaries.rst index 00443aa93ec..c367baa93f9 100644 --- a/docs/source/daal/data-management/data-dictionaries.rst +++ b/docs/source/daal/data-management/data-dictionaries.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Data Dictionaries ================= diff --git a/docs/source/daal/data-management/data-management.rst b/docs/source/daal/data-management/data-management.rst index 87f64b83ff6..1278b27314a 100644 --- a/docs/source/daal/data-management/data-management.rst +++ b/docs/source/daal/data-management/data-management.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Data Management =============== diff --git a/docs/source/daal/data-management/data-model.rst b/docs/source/daal/data-management/data-model.rst index 57dcb184ebe..ad75ae8d01e 100644 --- a/docs/source/daal/data-management/data-model.rst +++ b/docs/source/daal/data-management/data-model.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Data Model ========== diff --git a/docs/source/daal/data-management/data-serialization-and-deserialization.rst b/docs/source/daal/data-management/data-serialization-and-deserialization.rst index 41fb24ffceb..39f78948a50 100644 --- a/docs/source/daal/data-management/data-serialization-and-deserialization.rst +++ b/docs/source/daal/data-management/data-serialization-and-deserialization.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Data Serialization and Deserialization ====================================== diff --git a/docs/source/daal/data-management/data-sources.rst b/docs/source/daal/data-management/data-sources.rst index 2f07c4c1c79..b3725128ccf 100644 --- a/docs/source/daal/data-management/data-sources.rst +++ b/docs/source/daal/data-management/data-sources.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Data Sources ============ diff --git a/docs/source/daal/data-management/essential-interfaces.rst b/docs/source/daal/data-management/essential-interfaces.rst index f6ed0a6d1c5..c0c66a434ab 100644 --- a/docs/source/daal/data-management/essential-interfaces.rst +++ b/docs/source/daal/data-management/essential-interfaces.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Essential Interfaces for Algorithms =================================== diff --git a/docs/source/daal/data-management/generic-interfaces.rst b/docs/source/daal/data-management/generic-interfaces.rst index b1f6e81bb91..f62955e03ab 100644 --- a/docs/source/daal/data-management/generic-interfaces.rst +++ b/docs/source/daal/data-management/generic-interfaces.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Generic Interfaces ================== diff --git a/docs/source/daal/data-management/numeric-tables-types.rst b/docs/source/daal/data-management/numeric-tables-types.rst index c53e6e212d1..3c2e2a01a84 100644 --- a/docs/source/daal/data-management/numeric-tables-types.rst +++ b/docs/source/daal/data-management/numeric-tables-types.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Types of Numeric Tables ~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/source/daal/data-management/numeric-tables.rst b/docs/source/daal/data-management/numeric-tables.rst index 07857501ed4..ef015ddd09d 100644 --- a/docs/source/daal/data-management/numeric-tables.rst +++ b/docs/source/daal/data-management/numeric-tables.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Numeric Tables ============== diff --git a/docs/source/daal/data-management/numeric-tables/csr-numeric-table.rst b/docs/source/daal/data-management/numeric-tables/csr-numeric-table.rst index 524c650010b..0c24e5b4804 100644 --- a/docs/source/daal/data-management/numeric-tables/csr-numeric-table.rst +++ b/docs/source/daal/data-management/numeric-tables/csr-numeric-table.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. CSR Numeric Table ================= diff --git a/docs/source/daal/data-management/numeric-tables/heterogen-numeric-tables.rst b/docs/source/daal/data-management/numeric-tables/heterogen-numeric-tables.rst index 78693d55192..8ebb126a7ef 100644 --- a/docs/source/daal/data-management/numeric-tables/heterogen-numeric-tables.rst +++ b/docs/source/daal/data-management/numeric-tables/heterogen-numeric-tables.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Heterogeneous Numeric Tables ============================ diff --git a/docs/source/daal/data-management/numeric-tables/homogen-numeric-tables.rst b/docs/source/daal/data-management/numeric-tables/homogen-numeric-tables.rst index 6932fd9790c..7db6e67e4a6 100644 --- a/docs/source/daal/data-management/numeric-tables/homogen-numeric-tables.rst +++ b/docs/source/daal/data-management/numeric-tables/homogen-numeric-tables.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _homogeneous_numeric_table: diff --git a/docs/source/daal/data-management/numeric-tables/merged-numeric-table.rst b/docs/source/daal/data-management/numeric-tables/merged-numeric-table.rst index 4fa0f64342e..b4daf46dccb 100644 --- a/docs/source/daal/data-management/numeric-tables/merged-numeric-table.rst +++ b/docs/source/daal/data-management/numeric-tables/merged-numeric-table.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Merged Numeric Table ==================== diff --git a/docs/source/daal/includes/default_result_data_collection.rst b/docs/source/daal/includes/default_result_data_collection.rst index ba4da969655..bac057394ec 100644 --- a/docs/source/daal/includes/default_result_data_collection.rst +++ b/docs/source/daal/includes/default_result_data_collection.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. note:: diff --git a/docs/source/daal/includes/default_result_numeric_table.rst b/docs/source/daal/includes/default_result_numeric_table.rst index e34419f4074..1b6e62a6b7b 100644 --- a/docs/source/daal/includes/default_result_numeric_table.rst +++ b/docs/source/daal/includes/default_result_numeric_table.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. note:: diff --git a/docs/source/daal/includes/input_data_collection.rst b/docs/source/daal/includes/input_data_collection.rst index fbec88781ad..0e7afd0c0df 100644 --- a/docs/source/daal/includes/input_data_collection.rst +++ b/docs/source/daal/includes/input_data_collection.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. note:: diff --git a/docs/source/daal/includes/input_data_collection_with_exceptions.rst b/docs/source/daal/includes/input_data_collection_with_exceptions.rst index b55dce43d3e..90cb0f590e2 100644 --- a/docs/source/daal/includes/input_data_collection_with_exceptions.rst +++ b/docs/source/daal/includes/input_data_collection_with_exceptions.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. note:: diff --git a/docs/source/daal/includes/input_numeric_table.rst b/docs/source/daal/includes/input_numeric_table.rst index 88c22a9183e..3b7cb47ec9c 100644 --- a/docs/source/daal/includes/input_numeric_table.rst +++ b/docs/source/daal/includes/input_numeric_table.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. note:: diff --git a/docs/source/daal/includes/parameter_numeric_table.rst b/docs/source/daal/includes/parameter_numeric_table.rst index 2f17d6206b9..536ea9ad2e6 100644 --- a/docs/source/daal/includes/parameter_numeric_table.rst +++ b/docs/source/daal/includes/parameter_numeric_table.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. note:: diff --git a/docs/source/daal/services/callback-for-host-application.rst b/docs/source/daal/services/callback-for-host-application.rst index d2999b30398..b9e5f364bc7 100644 --- a/docs/source/daal/services/callback-for-host-application.rst +++ b/docs/source/daal/services/callback-for-host-application.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Providing a Callback for the Host Application ============================================= diff --git a/docs/source/daal/services/extracting-version-information.rst b/docs/source/daal/services/extracting-version-information.rst index 3b31e9e3efa..f022cfa5382 100644 --- a/docs/source/daal/services/extracting-version-information.rst +++ b/docs/source/daal/services/extracting-version-information.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Extracting Version Information ============================== diff --git a/docs/source/daal/services/handling-errors.rst b/docs/source/daal/services/handling-errors.rst index 5a98af48fdd..6a064f1c38c 100644 --- a/docs/source/daal/services/handling-errors.rst +++ b/docs/source/daal/services/handling-errors.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Handling Errors =============== diff --git a/docs/source/daal/services/managing-computational-environment.rst b/docs/source/daal/services/managing-computational-environment.rst index 92ea37e110d..de62f225e58 100644 --- a/docs/source/daal/services/managing-computational-environment.rst +++ b/docs/source/daal/services/managing-computational-environment.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Managing the Computational Environment ====================================== diff --git a/docs/source/daal/services/managing-memory.rst b/docs/source/daal/services/managing-memory.rst index 68b932cf4b0..3de1e3ae44a 100644 --- a/docs/source/daal/services/managing-memory.rst +++ b/docs/source/daal/services/managing-memory.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Managing Memory =============== diff --git a/docs/source/daal/services/services.rst b/docs/source/daal/services/services.rst index 9e0d6569ebe..aa15f841a55 100644 --- a/docs/source/daal/services/services.rst +++ b/docs/source/daal/services/services.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. Services ======== diff --git a/docs/source/daal/training-prediction.rst b/docs/source/daal/training-prediction.rst index a29a50f8411..e9a302ab073 100644 --- a/docs/source/daal/training-prediction.rst +++ b/docs/source/daal/training-prediction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Training and Prediction ======================= diff --git a/docs/source/daal/usage/algorithms.rst b/docs/source/daal/usage/algorithms.rst index 9cbef556671..0f1685c9a85 100644 --- a/docs/source/daal/usage/algorithms.rst +++ b/docs/source/daal/usage/algorithms.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _algorithms: diff --git a/docs/source/daal/usage/computation-modes.rst b/docs/source/daal/usage/computation-modes.rst index e07991bb58d..08f6ce62d4e 100644 --- a/docs/source/daal/usage/computation-modes.rst +++ b/docs/source/daal/usage/computation-modes.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Computation Modes ================= diff --git a/docs/source/daal/usage/index.rst b/docs/source/daal/usage/index.rst index e6b31a97a5c..f7321be8d10 100644 --- a/docs/source/daal/usage/index.rst +++ b/docs/source/daal/usage/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Library Usage ============= diff --git a/docs/source/daal/usage/training-and-prediction/classification.rst b/docs/source/daal/usage/training-and-prediction/classification.rst index 74104feecc9..e773d564227 100644 --- a/docs/source/daal/usage/training-and-prediction/classification.rst +++ b/docs/source/daal/usage/training-and-prediction/classification.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _classification_usage_model: diff --git a/docs/source/daal/usage/training-and-prediction/index.rst b/docs/source/daal/usage/training-and-prediction/index.rst index 41ce0073658..170f9be0fb4 100644 --- a/docs/source/daal/usage/training-and-prediction/index.rst +++ b/docs/source/daal/usage/training-and-prediction/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Usage Model: Training and Prediction ==================================== diff --git a/docs/source/daal/usage/training-and-prediction/recommendation-systems.rst b/docs/source/daal/usage/training-and-prediction/recommendation-systems.rst index 4d7afe9e59e..5e885d6d1e2 100644 --- a/docs/source/daal/usage/training-and-prediction/recommendation-systems.rst +++ b/docs/source/daal/usage/training-and-prediction/recommendation-systems.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _recommendation_system_usage_model: diff --git a/docs/source/daal/usage/training-and-prediction/regression.rst b/docs/source/daal/usage/training-and-prediction/regression.rst index ebdf61c894a..0ffa52bf8ef 100644 --- a/docs/source/daal/usage/training-and-prediction/regression.rst +++ b/docs/source/daal/usage/training-and-prediction/regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _regression_usage_model: diff --git a/docs/source/data-analytics-pipeline.rst b/docs/source/data-analytics-pipeline.rst index 4cd9f32845e..41707ff2495 100644 --- a/docs/source/data-analytics-pipeline.rst +++ b/docs/source/data-analytics-pipeline.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Introduction ============ diff --git a/docs/source/deprecation.rst b/docs/source/deprecation.rst index cfafc7fed69..dfe13ebc24d 100644 --- a/docs/source/deprecation.rst +++ b/docs/source/deprecation.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. Deprecation Notice diff --git a/docs/source/examples.rst b/docs/source/examples.rst index 6d9df315bc1..4fec63131a6 100644 --- a/docs/source/examples.rst +++ b/docs/source/examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _oneapi_dal_examples: @@ -26,4 +24,4 @@ oneAPI Examples DPC++ C++ -.. note:: Explore the complete list of oneAPI code samples in the `oneAPI Samples Catalog `_. These samples were designed to help you develop, offload, and optimize multiarchitecture applications targeting CPUs, GPUs, and FPGAs. +.. note:: Explore the complete list of oneAPI code samples in the `oneAPI Samples Catalog `_. These samples were designed to help you develop, offload, and optimize multiarchitecture applications targeting CPUs, GPUs, and FPGAs. diff --git a/docs/source/examples/cpp.rst b/docs/source/examples/cpp.rst index 9e1848121eb..135125f7069 100644 --- a/docs/source/examples/cpp.rst +++ b/docs/source/examples/cpp.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. oneAPI C++ Examples =================== diff --git a/docs/source/examples/dpc.rst b/docs/source/examples/dpc.rst index f52299a77b6..529acae9497 100644 --- a/docs/source/examples/dpc.rst +++ b/docs/source/examples/dpc.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. oneAPI DPC++ examples ===================== diff --git a/docs/source/get-started/build-and-run-examples.rst b/docs/source/get-started/build-and-run-examples.rst index aef14141ea9..9645d68ac39 100644 --- a/docs/source/get-started/build-and-run-examples.rst +++ b/docs/source/get-started/build-and-run-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. |dpcpp_gsg| replace:: Get Started with Intel\ |reg|\ oneAPI DPC++/C++ Compiler .. _dpcpp_gsg: https://www.intel.com/content/www/us/en/docs/dpcpp-cpp-compiler/get-started-guide/current/overview.html @@ -39,8 +37,8 @@ basic usage scenarios of |short_name| with DPCPP. Go to On Linux, there are two possible ways to set up the required environment: via ``vars.sh`` script or via ``modulefiles``. - * To set up |short_name| environment via ``vars.sh`` script, run ``source ./env/vars.sh``. - * To set up |short_name| environment via ``setvars.sh`` script, run ``source ./setvars.sh``. + * To set up |short_name| environment via ``vars.sh`` script, run ``source ./env/vars.sh``. + * To set up |short_name| environment via ``setvars.sh`` script, run ``source ./setvars.sh``. * To set up |short_name| environment via ``modulefiles``: #. Initialize ``modules``: @@ -65,7 +63,7 @@ basic usage scenarios of |short_name| with DPCPP. Go to .. group-tab:: Windows - To set up |short_name| environment, run ``source /env/vars.bat`` or ``source setvars.bat``. + To set up |short_name| environment, run ``source /env/vars.bat`` or ``source setvars.bat``. #. Copy ``./examples/oneapi/dpc`` to a writable directory if necessary (since it creates temporary files): diff --git a/docs/source/get-started/end-to-end-example.rst b/docs/source/get-started/end-to-end-example.rst index 63b3389d24e..e5aad636168 100644 --- a/docs/source/get-started/end-to-end-example.rst +++ b/docs/source/get-started/end-to-end-example.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. End-to-end Example ~~~~~~~~~~~~~~~~~~ diff --git a/docs/source/get-started/prerequisites.rst b/docs/source/get-started/prerequisites.rst index 8acc5a77d62..ebd05354e33 100644 --- a/docs/source/get-started/prerequisites.rst +++ b/docs/source/get-started/prerequisites.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. |dpcpp_comp| replace:: Intel\ |reg|\ oneAPI DPC++/C++ Compiler .. _dpcpp_comp: https://www.intel.com/content/www/us/en/developer/tools/oneapi/dpc-compiler.html diff --git a/docs/source/includes/clustering/dbscan-examples.rst b/docs/source/includes/clustering/dbscan-examples.rst index fb423a9cf6f..64ec36bf166 100644 --- a/docs/source/includes/clustering/dbscan-examples.rst +++ b/docs/source/includes/clustering/dbscan-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. tabs:: diff --git a/docs/source/includes/clustering/dbscan-introduction.rst b/docs/source/includes/clustering/dbscan-introduction.rst index d19e8129a0d..dced94cd41a 100644 --- a/docs/source/includes/clustering/dbscan-introduction.rst +++ b/docs/source/includes/clustering/dbscan-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Density-based spatial clustering of applications with noise (DBSCAN) is a data clustering algorithm proposed in [Ester96]_. It is a density-based clustering non-parametric algorithm: given a set of observations in some space, diff --git a/docs/source/includes/clustering/dbscan-usage-examples.rst b/docs/source/includes/clustering/dbscan-usage-examples.rst index af6be8ecbe3..a98afd84f98 100644 --- a/docs/source/includes/clustering/dbscan-usage-examples.rst +++ b/docs/source/includes/clustering/dbscan-usage-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Compute ------- diff --git a/docs/source/includes/clustering/kmeans-examples.rst b/docs/source/includes/clustering/kmeans-examples.rst index df90709a166..ecc4b70c17c 100644 --- a/docs/source/includes/clustering/kmeans-examples.rst +++ b/docs/source/includes/clustering/kmeans-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/clustering/kmeans-init-examples.rst b/docs/source/includes/clustering/kmeans-init-examples.rst index 6ff226dc6fd..90eca28b232 100644 --- a/docs/source/includes/clustering/kmeans-init-examples.rst +++ b/docs/source/includes/clustering/kmeans-init-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/clustering/kmeans-init-introduction.rst b/docs/source/includes/clustering/kmeans-init-introduction.rst index bf8e912ed5d..32d91b4504f 100644 --- a/docs/source/includes/clustering/kmeans-init-introduction.rst +++ b/docs/source/includes/clustering/kmeans-init-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The K-Means initialization algorithm receives :math:`n` feature vectors as input and chooses :math:`k` initial centroids. After initialization, K-Means algorithm @@ -22,7 +20,7 @@ uses the initialization result to partition input data into :math:`k` clusters. .. |c_dense| replace:: :ref:`Dense ` .. |c_random_dense| replace:: :ref:`Random dense ` .. |c_plus_plus_dense| replace:: :ref:`K-Means++ ` -.. |c_parallel_plus_dense| replace:: :ref:`K-Means++ parallel ` +.. |c_parallel_plus_dense| replace:: :ref:`K-Means++ parallel ` .. |c_input| replace:: :ref:`compute_input(...) ` .. |c_result| replace:: :ref:`compute_result(...) ` .. |c_op| replace:: :ref:`compute(...) ` diff --git a/docs/source/includes/clustering/kmeans-init-usage-examples.rst b/docs/source/includes/clustering/kmeans-init-usage-examples.rst index 803e287f33e..ca1bbb7431b 100644 --- a/docs/source/includes/clustering/kmeans-init-usage-examples.rst +++ b/docs/source/includes/clustering/kmeans-init-usage-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Computing --------- diff --git a/docs/source/includes/clustering/kmeans-introduction.rst b/docs/source/includes/clustering/kmeans-introduction.rst index 563dee3f9ae..a635f3bfe06 100644 --- a/docs/source/includes/clustering/kmeans-introduction.rst +++ b/docs/source/includes/clustering/kmeans-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The K-Means algorithm solves :capterm:`clustering` problem by partitioning :math:`n` feature vectors into :math:`k` clusters minimizing some criterion. diff --git a/docs/source/includes/clustering/kmeans-usage-examples.rst b/docs/source/includes/clustering/kmeans-usage-examples.rst index 77f9e7f235a..1dfb4fd56db 100644 --- a/docs/source/includes/clustering/kmeans-usage-examples.rst +++ b/docs/source/includes/clustering/kmeans-usage-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Training -------- diff --git a/docs/source/includes/covariance/covariance-examples.rst b/docs/source/includes/covariance/covariance-examples.rst index 20cc4e3a796..e314435ec1e 100644 --- a/docs/source/includes/covariance/covariance-examples.rst +++ b/docs/source/includes/covariance/covariance-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. tabs:: diff --git a/docs/source/includes/covariance/covariance-introduction.rst b/docs/source/includes/covariance/covariance-introduction.rst index 28e86481bfc..57e24471111 100644 --- a/docs/source/includes/covariance/covariance-introduction.rst +++ b/docs/source/includes/covariance/covariance-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. In statistics, covariance and correlation are two of the most fundamental measures of linear dependence between two random variables. The covariance and the correlation represent the joint variability of any two features. diff --git a/docs/source/includes/covariance/covariance-usage-examples.rst b/docs/source/includes/covariance/covariance-usage-examples.rst index b5c36cd18fd..b99e70ff6a1 100644 --- a/docs/source/includes/covariance/covariance-usage-examples.rst +++ b/docs/source/includes/covariance/covariance-usage-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. Computing --------- diff --git a/docs/source/includes/cpu_features/abc-classification-train-kernel.rst b/docs/source/includes/cpu_features/abc-classification-train-kernel.rst index 0d0f369ffc3..59f0b47b91a 100644 --- a/docs/source/includes/cpu_features/abc-classification-train-kernel.rst +++ b/docs/source/includes/cpu_features/abc-classification-train-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/cpu_features/abc-classification-train-method1-fpt-cpu.rst b/docs/source/includes/cpu_features/abc-classification-train-method1-fpt-cpu.rst index c4d3facd090..2a92b89c3f1 100644 --- a/docs/source/includes/cpu_features/abc-classification-train-method1-fpt-cpu.rst +++ b/docs/source/includes/cpu_features/abc-classification-train-method1-fpt-cpu.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/cpu_features/abc-classification-train-method1-impl.rst b/docs/source/includes/cpu_features/abc-classification-train-method1-impl.rst index 53368f595c9..fc8b53ef026 100644 --- a/docs/source/includes/cpu_features/abc-classification-train-method1-impl.rst +++ b/docs/source/includes/cpu_features/abc-classification-train-method1-impl.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/cpu_features/abc-classification-train-method2-impl.rst b/docs/source/includes/cpu_features/abc-classification-train-method2-impl.rst index 36df55ce56e..4643425cb15 100644 --- a/docs/source/includes/cpu_features/abc-classification-train-method2-impl.rst +++ b/docs/source/includes/cpu_features/abc-classification-train-method2-impl.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/data-management/array-usage-example.rst b/docs/source/includes/data-management/array-usage-example.rst index 9b17073ef39..9b3e9ea0eaf 100644 --- a/docs/source/includes/data-management/array-usage-example.rst +++ b/docs/source/includes/data-management/array-usage-example.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/includes/data-management/column-accessor-usage-example.rst b/docs/source/includes/data-management/column-accessor-usage-example.rst index ba1566a8539..f0974809039 100644 --- a/docs/source/includes/data-management/column-accessor-usage-example.rst +++ b/docs/source/includes/data-management/column-accessor-usage-example.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/includes/data-management/csr-accessor-usage-example.rst b/docs/source/includes/data-management/csr-accessor-usage-example.rst index 2fc7219b771..ba88ba11975 100644 --- a/docs/source/includes/data-management/csr-accessor-usage-example.rst +++ b/docs/source/includes/data-management/csr-accessor-usage-example.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. highlight:: cpp diff --git a/docs/source/includes/data-management/csv-data-source-usage-example.rst b/docs/source/includes/data-management/csv-data-source-usage-example.rst index aa8c9712630..06759bdb202 100644 --- a/docs/source/includes/data-management/csv-data-source-usage-example.rst +++ b/docs/source/includes/data-management/csv-data-source-usage-example.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/includes/data-management/row-accessor-usage-example.rst b/docs/source/includes/data-management/row-accessor-usage-example.rst index 138a314bb34..95813454836 100644 --- a/docs/source/includes/data-management/row-accessor-usage-example.rst +++ b/docs/source/includes/data-management/row-accessor-usage-example.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/includes/decomposition/pca-examples.rst b/docs/source/includes/decomposition/pca-examples.rst index d759a93df18..8e06f12fd7e 100644 --- a/docs/source/includes/decomposition/pca-examples.rst +++ b/docs/source/includes/decomposition/pca-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/decomposition/pca-introduction.rst b/docs/source/includes/decomposition/pca-introduction.rst index d57ed34d974..e03aae7c312 100644 --- a/docs/source/includes/decomposition/pca-introduction.rst +++ b/docs/source/includes/decomposition/pca-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Principal Component Analysis (PCA) is an algorithm for exploratory data analysis and :capterm:`dimensionality reduction`. PCA transforms a set of feature vectors diff --git a/docs/source/includes/decomposition/pca-usage-examples.rst b/docs/source/includes/decomposition/pca-usage-examples.rst index 8df53c7a9e7..ecf470a70c5 100644 --- a/docs/source/includes/decomposition/pca-usage-examples.rst +++ b/docs/source/includes/decomposition/pca-usage-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Training -------- diff --git a/docs/source/includes/ensembles/df-classification-examples.rst b/docs/source/includes/ensembles/df-classification-examples.rst index 7e1271240fc..fd5aba2c543 100644 --- a/docs/source/includes/ensembles/df-classification-examples.rst +++ b/docs/source/includes/ensembles/df-classification-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/ensembles/df-introduction.rst b/docs/source/includes/ensembles/df-introduction.rst index 634c7965732..ec1b2e7bd60 100644 --- a/docs/source/includes/ensembles/df-introduction.rst +++ b/docs/source/includes/ensembles/df-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Decision Forest (DF) :capterm:`classification` and :capterm:`regression` algorithms are based on an ensemble of tree-structured classifiers, which are known as :ref:`decision trees
`. Decision forest is built diff --git a/docs/source/includes/ensembles/df-regression-examples.rst b/docs/source/includes/ensembles/df-regression-examples.rst index f9765368a1d..0fbc63ea52b 100644 --- a/docs/source/includes/ensembles/df-regression-examples.rst +++ b/docs/source/includes/ensembles/df-regression-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/graph/connected-components-examples.rst b/docs/source/includes/graph/connected-components-examples.rst index 2a48fc156f7..462dfc39dc9 100644 --- a/docs/source/includes/graph/connected-components-examples.rst +++ b/docs/source/includes/graph/connected-components-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/graph/connected-components-introduction.rst b/docs/source/includes/graph/connected-components-introduction.rst index 6cb3873bac6..d197bfd4e1e 100644 --- a/docs/source/includes/graph/connected-components-introduction.rst +++ b/docs/source/includes/graph/connected-components-introduction.rst @@ -1,21 +1,19 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Connected components algorithm receives an undirected graph :math:`G` as an input and searches for connected components in :math:`G`. -For each vertex in :math:`G`, the algorithm returns the label of the component this vertex belongs to. +For each vertex in :math:`G`, the algorithm returns the label of the component this vertex belongs to. The result of the algorithm is a set of labels for all vertices in :math:`G`. .. |cc_compute| replace:: :ref:`Computing ` diff --git a/docs/source/includes/graph/subgraph-isomorphism-examples.rst b/docs/source/includes/graph/subgraph-isomorphism-examples.rst index 0e73e6dd3cc..839b97394d9 100644 --- a/docs/source/includes/graph/subgraph-isomorphism-examples.rst +++ b/docs/source/includes/graph/subgraph-isomorphism-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/graph/subgraph-isomorphism-introduction.rst b/docs/source/includes/graph/subgraph-isomorphism-introduction.rst index 1e61482f9d5..8c8a97bba53 100644 --- a/docs/source/includes/graph/subgraph-isomorphism-introduction.rst +++ b/docs/source/includes/graph/subgraph-isomorphism-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Subgraph Isomorphism algorithm receives a target graph :math:`G` and a pattern graph :math:`H` as input and searches the target graph for subgraphs that are isomorphic to the pattern graph. The algorithm returns diff --git a/docs/source/includes/kernel-functions/linear-kernel-examples.rst b/docs/source/includes/kernel-functions/linear-kernel-examples.rst index 8fd1070e237..616db02c201 100644 --- a/docs/source/includes/kernel-functions/linear-kernel-examples.rst +++ b/docs/source/includes/kernel-functions/linear-kernel-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/kernel-functions/linear-kernel-introduction.rst b/docs/source/includes/kernel-functions/linear-kernel-introduction.rst index 2cfbb836985..5c8e9d1ef4a 100644 --- a/docs/source/includes/kernel-functions/linear-kernel-introduction.rst +++ b/docs/source/includes/kernel-functions/linear-kernel-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The linear kernel is the simplest kernel function for pattern analysis. diff --git a/docs/source/includes/kernel-functions/polynomial-kernel-examples.rst b/docs/source/includes/kernel-functions/polynomial-kernel-examples.rst index 40fa7a74a24..dd25a8eb5ae 100644 --- a/docs/source/includes/kernel-functions/polynomial-kernel-examples.rst +++ b/docs/source/includes/kernel-functions/polynomial-kernel-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. tabs:: diff --git a/docs/source/includes/kernel-functions/polynomial-kernel-introduction.rst b/docs/source/includes/kernel-functions/polynomial-kernel-introduction.rst index 7fd81b4a291..82e431216e4 100644 --- a/docs/source/includes/kernel-functions/polynomial-kernel-introduction.rst +++ b/docs/source/includes/kernel-functions/polynomial-kernel-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The Polynomial kernel is a popular kernel function used in kernelized learning algorithms. It represents diff --git a/docs/source/includes/kernel-functions/rbf-kernel-examples.rst b/docs/source/includes/kernel-functions/rbf-kernel-examples.rst index f815e93367a..f5e9e6540f7 100644 --- a/docs/source/includes/kernel-functions/rbf-kernel-examples.rst +++ b/docs/source/includes/kernel-functions/rbf-kernel-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/kernel-functions/rbf-kernel-introduction.rst b/docs/source/includes/kernel-functions/rbf-kernel-introduction.rst index 70a83ba47f4..888e6c903c7 100644 --- a/docs/source/includes/kernel-functions/rbf-kernel-introduction.rst +++ b/docs/source/includes/kernel-functions/rbf-kernel-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The Radial Basis Function (RBF) kernel is a popular kernel function used in kernelized learning algorithms. diff --git a/docs/source/includes/kernel-functions/sigmoid-kernel-examples.rst b/docs/source/includes/kernel-functions/sigmoid-kernel-examples.rst index a9b2ece8152..2967f51514e 100644 --- a/docs/source/includes/kernel-functions/sigmoid-kernel-examples.rst +++ b/docs/source/includes/kernel-functions/sigmoid-kernel-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. tabs:: diff --git a/docs/source/includes/kernel-functions/sigmoid-kernel-introduction.rst b/docs/source/includes/kernel-functions/sigmoid-kernel-introduction.rst index 360d7394db6..1c9376596a1 100644 --- a/docs/source/includes/kernel-functions/sigmoid-kernel-introduction.rst +++ b/docs/source/includes/kernel-functions/sigmoid-kernel-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The Sigmoid kernel is a popular kernel function used in kernelized learning algorithms. diff --git a/docs/source/includes/linear-regression/linear-regression-examples.rst b/docs/source/includes/linear-regression/linear-regression-examples.rst index e2581e613c3..a24a276f8a3 100644 --- a/docs/source/includes/linear-regression/linear-regression-examples.rst +++ b/docs/source/includes/linear-regression/linear-regression-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. tabs:: diff --git a/docs/source/includes/linear-regression/linear-regression-introduction.rst b/docs/source/includes/linear-regression/linear-regression-introduction.rst index e8d4582fe67..ea1c956a8be 100644 --- a/docs/source/includes/linear-regression/linear-regression-introduction.rst +++ b/docs/source/includes/linear-regression/linear-regression-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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 is a method to model the connection between a dependent variable, which can be a vector, and one or more explanatory variables. This is done by fitting the linear equations to the observed data. diff --git a/docs/source/includes/logistic-regression/logistic-regression-examples.rst b/docs/source/includes/logistic-regression/logistic-regression-examples.rst index c754e292645..13d77464b7e 100644 --- a/docs/source/includes/logistic-regression/logistic-regression-examples.rst +++ b/docs/source/includes/logistic-regression/logistic-regression-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. oneAPI DPC++ ------------ diff --git a/docs/source/includes/logistic-regression/logistic-regression-introduction.rst b/docs/source/includes/logistic-regression/logistic-regression-introduction.rst index 3503c893685..9678773a39a 100644 --- a/docs/source/includes/logistic-regression/logistic-regression-introduction.rst +++ b/docs/source/includes/logistic-regression/logistic-regression-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. The Logistic Regression algorithm solves the :capterm:`classification` problem and predicts class labels and probabilities of objects belonging to each class. diff --git a/docs/source/includes/nearest-neighbors/knn-examples.rst b/docs/source/includes/nearest-neighbors/knn-examples.rst index 02835e02009..c0a720bc5ef 100644 --- a/docs/source/includes/nearest-neighbors/knn-examples.rst +++ b/docs/source/includes/nearest-neighbors/knn-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/nearest-neighbors/knn-introduction.rst b/docs/source/includes/nearest-neighbors/knn-introduction.rst index 7693d294ba5..c63d3f9afff 100644 --- a/docs/source/includes/nearest-neighbors/knn-introduction.rst +++ b/docs/source/includes/nearest-neighbors/knn-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. :math:`k`-NN :capterm:`classification`, :capterm:`regression`, and :capterm:`search` algorithms are based on finding the :math:`k` nearest observations to the training set. For :capterm:`classification`, diff --git a/docs/source/includes/nearest-neighbors/knn-usage-examples.rst b/docs/source/includes/nearest-neighbors/knn-usage-examples.rst index a53b40da304..25e892c978e 100644 --- a/docs/source/includes/nearest-neighbors/knn-usage-examples.rst +++ b/docs/source/includes/nearest-neighbors/knn-usage-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Training -------- diff --git a/docs/source/includes/objective-function/logloss-examples.rst b/docs/source/includes/objective-function/logloss-examples.rst index 48d075f4a52..0d45c08b203 100644 --- a/docs/source/includes/objective-function/logloss-examples.rst +++ b/docs/source/includes/objective-function/logloss-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. tabs:: diff --git a/docs/source/includes/objective-function/logloss-introduction.rst b/docs/source/includes/objective-function/logloss-introduction.rst index 3889e488876..a0f7448ac2d 100644 --- a/docs/source/includes/objective-function/logloss-introduction.rst +++ b/docs/source/includes/objective-function/logloss-introduction.rst @@ -1,23 +1,21 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. -LogisticLoss is a common objective function used for binary classification. +LogisticLoss is a common objective function used for binary classification. .. |c_math| replace:: :ref:`dense_batch ` diff --git a/docs/source/includes/objective-function/objective-function-introduction.rst b/docs/source/includes/objective-function/objective-function-introduction.rst index 5493e3e950e..ce7ceae6572 100644 --- a/docs/source/includes/objective-function/objective-function-introduction.rst +++ b/docs/source/includes/objective-function/objective-function-introduction.rst @@ -1,21 +1,19 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. -Some classification algorithms are designed to minimize the +Some classification algorithms are designed to minimize the selected objective function. On each iteration its' gradient and sometimes hessian is calculated and model weights are updated using this information. diff --git a/docs/source/includes/optimizers/newton-cg-introduction.rst b/docs/source/includes/optimizers/newton-cg-introduction.rst index 436ec75802a..49d96788c55 100644 --- a/docs/source/includes/optimizers/newton-cg-introduction.rst +++ b/docs/source/includes/optimizers/newton-cg-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. The Newton-CG optimizer minimizes the convex function iteratively using its gradient and hessian-product operator. diff --git a/docs/source/includes/pairwise-distances/chebyshev-distance-introduction.rst b/docs/source/includes/pairwise-distances/chebyshev-distance-introduction.rst index ce6a8bea890..1810a37585d 100755 --- a/docs/source/includes/pairwise-distances/chebyshev-distance-introduction.rst +++ b/docs/source/includes/pairwise-distances/chebyshev-distance-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The Chebyshev distance equals the limit of Minkowski distance metric with :math:`p \to \infty`. diff --git a/docs/source/includes/pairwise-distances/cosine-distance-introduction.rst b/docs/source/includes/pairwise-distances/cosine-distance-introduction.rst index f9503d4af58..d847949f413 100755 --- a/docs/source/includes/pairwise-distances/cosine-distance-introduction.rst +++ b/docs/source/includes/pairwise-distances/cosine-distance-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The Cosine distance is a measure of distance between two non-zero vectors of an inner product space. diff --git a/docs/source/includes/pairwise-distances/minkowski-distance-introduction.rst b/docs/source/includes/pairwise-distances/minkowski-distance-introduction.rst index 09244e12c93..1661d87b9c3 100755 --- a/docs/source/includes/pairwise-distances/minkowski-distance-introduction.rst +++ b/docs/source/includes/pairwise-distances/minkowski-distance-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. The Minkowski distances are the set of distance metrics with different degree :math:`(p > 0)` and are widely used for distance computation in different algorithms. diff --git a/docs/source/includes/spmd/ccl-comm-usage-example.rst b/docs/source/includes/spmd/ccl-comm-usage-example.rst index dc5464e1387..1e8fcab7bca 100644 --- a/docs/source/includes/spmd/ccl-comm-usage-example.rst +++ b/docs/source/includes/spmd/ccl-comm-usage-example.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/includes/spmd/mpi-comm-usage-example.rst b/docs/source/includes/spmd/mpi-comm-usage-example.rst index ca1cc197dc6..70dfca5e8b7 100644 --- a/docs/source/includes/spmd/mpi-comm-usage-example.rst +++ b/docs/source/includes/spmd/mpi-comm-usage-example.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/includes/statistics/basic-statistics-examples.rst b/docs/source/includes/statistics/basic-statistics-examples.rst index fa689bb528d..2d361cd67ab 100644 --- a/docs/source/includes/statistics/basic-statistics-examples.rst +++ b/docs/source/includes/statistics/basic-statistics-examples.rst @@ -1,29 +1,27 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. tabs:: .. group-tab:: oneAPI DPC++ Batch Processing: - + - :ref:`dpc_basic_statistics_dense_batch.cpp` Online Processing: - + - :ref:`dpc_basic_statistics_dense_online.cpp` .. group-tab:: oneAPI C++ diff --git a/docs/source/includes/statistics/basic-statistics-introduction.rst b/docs/source/includes/statistics/basic-statistics-introduction.rst index cb799d1da95..dc0e2777025 100644 --- a/docs/source/includes/statistics/basic-statistics-introduction.rst +++ b/docs/source/includes/statistics/basic-statistics-introduction.rst @@ -1,20 +1,18 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. -Basic statistics algorithm computes the following set of quantitative dataset characteristics: +Basic statistics algorithm computes the following set of quantitative dataset characteristics: - minimums/maximums - sums diff --git a/docs/source/includes/statistics/basic-statistics-usage-examples.rst b/docs/source/includes/statistics/basic-statistics-usage-examples.rst index 0e998bf2edf..ffcb415f76a 100644 --- a/docs/source/includes/statistics/basic-statistics-usage-examples.rst +++ b/docs/source/includes/statistics/basic-statistics-usage-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Computing --------- diff --git a/docs/source/includes/svm/svm-examples.rst b/docs/source/includes/svm/svm-examples.rst index 9443a599567..2b3a59652b0 100644 --- a/docs/source/includes/svm/svm-examples.rst +++ b/docs/source/includes/svm/svm-examples.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. tabs:: diff --git a/docs/source/includes/svm/svm-introduction.rst b/docs/source/includes/svm/svm-introduction.rst index 417389bf88d..f5a0a4c703e 100644 --- a/docs/source/includes/svm/svm-introduction.rst +++ b/docs/source/includes/svm/svm-introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. Support Vector Machine (SVM) :capterm:`classification` and :capterm:`regression` are among popular algorithms. It belongs to a family of generalized linear classification problems. diff --git a/docs/source/includes/threading/dot-parallel-init-tls.rst b/docs/source/includes/threading/dot-parallel-init-tls.rst index 8e72646a7ca..fbca6f2803a 100644 --- a/docs/source/includes/threading/dot-parallel-init-tls.rst +++ b/docs/source/includes/threading/dot-parallel-init-tls.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/dot-parallel-partial-compute.rst b/docs/source/includes/threading/dot-parallel-partial-compute.rst index 0521e4bb2cf..5dae88cecd5 100644 --- a/docs/source/includes/threading/dot-parallel-partial-compute.rst +++ b/docs/source/includes/threading/dot-parallel-partial-compute.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/dot-parallel-reduction.rst b/docs/source/includes/threading/dot-parallel-reduction.rst index e86ca030246..6a70d6bdc9b 100644 --- a/docs/source/includes/threading/dot-parallel-reduction.rst +++ b/docs/source/includes/threading/dot-parallel-reduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/dot-parallel.rst b/docs/source/includes/threading/dot-parallel.rst index d0230715a01..528f893f621 100644 --- a/docs/source/includes/threading/dot-parallel.rst +++ b/docs/source/includes/threading/dot-parallel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/dot-sequential.rst b/docs/source/includes/threading/dot-sequential.rst index 93300053c32..ddbcde5d3ee 100644 --- a/docs/source/includes/threading/dot-sequential.rst +++ b/docs/source/includes/threading/dot-sequential.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/dot-static-parallel.rst b/docs/source/includes/threading/dot-static-parallel.rst index dfec18b6d21..d509dea18a1 100644 --- a/docs/source/includes/threading/dot-static-parallel.rst +++ b/docs/source/includes/threading/dot-static-parallel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/nested-parallel-ls.rst b/docs/source/includes/threading/nested-parallel-ls.rst index 1ceb0414c0b..e3a52598682 100644 --- a/docs/source/includes/threading/nested-parallel-ls.rst +++ b/docs/source/includes/threading/nested-parallel-ls.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/nested-parallel.rst b/docs/source/includes/threading/nested-parallel.rst index fc41f70398b..f9ee240d6d8 100644 --- a/docs/source/includes/threading/nested-parallel.rst +++ b/docs/source/includes/threading/nested-parallel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/sum-parallel-by-blocks.rst b/docs/source/includes/threading/sum-parallel-by-blocks.rst index 0e05cae1008..decdaf5b051 100644 --- a/docs/source/includes/threading/sum-parallel-by-blocks.rst +++ b/docs/source/includes/threading/sum-parallel-by-blocks.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/sum-parallel.rst b/docs/source/includes/threading/sum-parallel.rst index ba4ee4ae591..f8a0317dc8e 100644 --- a/docs/source/includes/threading/sum-parallel.rst +++ b/docs/source/includes/threading/sum-parallel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/includes/threading/sum-sequential.rst b/docs/source/includes/threading/sum-sequential.rst index b91c7c2d836..13972e53f93 100644 --- a/docs/source/includes/threading/sum-sequential.rst +++ b/docs/source/includes/threading/sum-sequential.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright contributors to the oneDAL project -.. * -.. * 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. -.. *******************************************************************************/ +.. Copyright contributors to the oneDAL project +.. +.. 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. :: diff --git a/docs/source/index-toc.rst b/docs/source/index-toc.rst index 89fd7600762..d32d8c3cf1d 100644 --- a/docs/source/index-toc.rst +++ b/docs/source/index-toc.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2022 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. -.. *******************************************************************************/ +.. Copyright 2022 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. .. toctree:: diff --git a/docs/source/index.rst b/docs/source/index.rst index a1a6362f1ab..41151d61d12 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. daal_rst documentation master file, created by sphinx-quickstart on Mon May 20 15:10:10 2019. diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 562b7cc2eb8..dd5a61e4755 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. |github_rls| replace:: Download a binary file with the specific version of |short_name| diff --git a/docs/source/oneapi-interfaces.rst b/docs/source/oneapi-interfaces.rst index 3862dfc96aa..6719e60e959 100644 --- a/docs/source/oneapi-interfaces.rst +++ b/docs/source/oneapi-interfaces.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _oneapi_dal_guide: diff --git a/docs/source/onedal/algorithms/clustering/dbscan.rst b/docs/source/onedal/algorithms/clustering/dbscan.rst index 9e38f2f3768..5e9464fecf4 100644 --- a/docs/source/onedal/algorithms/clustering/dbscan.rst +++ b/docs/source/onedal/algorithms/clustering/dbscan.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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 diff --git a/docs/source/onedal/algorithms/clustering/index.rst b/docs/source/onedal/algorithms/clustering/index.rst index b008ea2a532..3edb0c94bc3 100644 --- a/docs/source/onedal/algorithms/clustering/index.rst +++ b/docs/source/onedal/algorithms/clustering/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. ========== Clustering diff --git a/docs/source/onedal/algorithms/clustering/kmeans-init.rst b/docs/source/onedal/algorithms/clustering/kmeans-init.rst index 06b99540754..ec413cbaada 100644 --- a/docs/source/onedal/algorithms/clustering/kmeans-init.rst +++ b/docs/source/onedal/algorithms/clustering/kmeans-init.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/algorithms/clustering/kmeans.rst b/docs/source/onedal/algorithms/clustering/kmeans.rst index 5edf072ece5..92b1b210765 100644 --- a/docs/source/onedal/algorithms/clustering/kmeans.rst +++ b/docs/source/onedal/algorithms/clustering/kmeans.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/algorithms/covariance/covariance.rst b/docs/source/onedal/algorithms/covariance/covariance.rst index e3ea9ef8b5e..d9c4b70bc84 100644 --- a/docs/source/onedal/algorithms/covariance/covariance.rst +++ b/docs/source/onedal/algorithms/covariance/covariance.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/covariance/index.rst b/docs/source/onedal/algorithms/covariance/index.rst index d49ddf421ad..8c7466bf762 100644 --- a/docs/source/onedal/algorithms/covariance/index.rst +++ b/docs/source/onedal/algorithms/covariance/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ========== Covariance diff --git a/docs/source/onedal/algorithms/decomposition/index.rst b/docs/source/onedal/algorithms/decomposition/index.rst index bf78b1761be..721792cc69a 100644 --- a/docs/source/onedal/algorithms/decomposition/index.rst +++ b/docs/source/onedal/algorithms/decomposition/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. ============= Decomposition diff --git a/docs/source/onedal/algorithms/decomposition/pca.rst b/docs/source/onedal/algorithms/decomposition/pca.rst index fe631273d56..776aa440dda 100644 --- a/docs/source/onedal/algorithms/decomposition/pca.rst +++ b/docs/source/onedal/algorithms/decomposition/pca.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/algorithms/ensembles/decision-forest.rst b/docs/source/onedal/algorithms/ensembles/decision-forest.rst index 09d5adef06f..cd69a0f1529 100644 --- a/docs/source/onedal/algorithms/ensembles/decision-forest.rst +++ b/docs/source/onedal/algorithms/ensembles/decision-forest.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. default-domain:: cpp @@ -73,7 +71,7 @@ corresponding to their children, :math:`t_L` and :math:`t_R`. Training method: *Dense* ++++++++++++++++++++++++ -In the *dense* training method, all possible data points for each feature are considered as possible splits for the current node +In the *dense* training method, all possible data points for each feature are considered as possible splits for the current node and evaluated best-split computation. .. _df_t_math_hist: @@ -87,8 +85,8 @@ They are computed for each feature during the initialization stage of the algori Each value from the initially provided data is substituted with the value of the corresponding bin. It decreases the computational time complexity from :math:`O(n_r \cdot n_f)` to :math:`O(n_b \cdot n_f)`, -but decreases algorithm accuracy, where :math:`n_r` is number of rows, :math:`n_b` is number of bins, -and :math:`n_f` is number of selected features. +but decreases algorithm accuracy, where :math:`n_r` is number of rows, :math:`n_b` is number of bins, +and :math:`n_f` is number of selected features. Split strategy ++++++++++++++ diff --git a/docs/source/onedal/algorithms/ensembles/index.rst b/docs/source/onedal/algorithms/ensembles/index.rst index 0fea8babf64..55013317604 100644 --- a/docs/source/onedal/algorithms/ensembles/index.rst +++ b/docs/source/onedal/algorithms/ensembles/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. ========= Ensembles diff --git a/docs/source/onedal/algorithms/graph/connected-components.rst b/docs/source/onedal/algorithms/graph/connected-components.rst index 76648244dbb..83664759158 100644 --- a/docs/source/onedal/algorithms/graph/connected-components.rst +++ b/docs/source/onedal/algorithms/graph/connected-components.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp @@ -33,7 +31,7 @@ Mathematical formulation Computing --------- -Given an :capterm:`undirected graph` :math:`G`, the problem is to find :capterm:`connected components` in :math:`G`, +Given an :capterm:`undirected graph` :math:`G`, the problem is to find :capterm:`connected components` in :math:`G`, determine their quantity, and label vertices so that vertices from the same component have the same label. .. rubric:: Example @@ -42,17 +40,17 @@ determine their quantity, and label vertices so that vertices from the same comp :width: 600 :align: center :alt: - + Сomponents are labeled from :math:`0` to :math:`k-1`, where :math:`k` is the number of components. For the example above, the labels for vertices are [0, 1, 1, 1, 2, 0, 1, 3, 4, 4, 4, 4, 4]. This notation means that: -* vertices with ids 0 and 5 belong to the connected component with id 0 -* vertices with ids 1, 2, 3, and 6 belong to the connected component with id 1 -* vertex with id 4 belongs to the connected component with id 2 -* vertex with id 7 belongs to the connected component with id 3 -* vertices with ids 8, 9, 10, 11, and 12 belong to the connected component with id 4 +* vertices with ids 0 and 5 belong to the connected component with id 0 +* vertices with ids 1, 2, 3, and 6 belong to the connected component with id 1 +* vertex with id 4 belongs to the connected component with id 2 +* vertex with id 7 belongs to the connected component with id 3 +* vertices with ids 8, 9, 10, 11, and 12 belong to the connected component with id 4 .. _connected_components_afforest: diff --git a/docs/source/onedal/algorithms/graph/index.rst b/docs/source/onedal/algorithms/graph/index.rst index d7cd9eeb1d7..e7c55174a76 100644 --- a/docs/source/onedal/algorithms/graph/index.rst +++ b/docs/source/onedal/algorithms/graph/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. ===== Graph diff --git a/docs/source/onedal/algorithms/graph/subgraph-isomorphism.rst b/docs/source/onedal/algorithms/graph/subgraph-isomorphism.rst index 4512bf54df7..680b833c3e3 100755 --- a/docs/source/onedal/algorithms/graph/subgraph-isomorphism.rst +++ b/docs/source/onedal/algorithms/graph/subgraph-isomorphism.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp @@ -33,11 +31,11 @@ Mathematical formulation Subgraphs definition -------------------- -A graph :math:`H = (V'; E')` is called a subgraph of graph :math:`G = (V; E)` if -:math:`V' \subseteq V; E' \subseteq E` and :math:`V'` contains all the endpoints of all the +A graph :math:`H = (V'; E')` is called a subgraph of graph :math:`G = (V; E)` if +:math:`V' \subseteq V; E' \subseteq E` and :math:`V'` contains all the endpoints of all the edges in :math:`E'` [Gross2014]_. -Further we denote the :capterm:`induced subgraph on the vertex set` +Further we denote the :capterm:`induced subgraph on the vertex set` as **induced** subgraph, the :capterm:`induced subgraph on the edge set` as **non-induced** subgraph. @@ -50,7 +48,7 @@ graph :math:`G`. :math:`G` is called **target** graph, :math:`H` is called **pattern** graph. -Mapping is a bijection or one-to-one correspondence between vertices of :math:`H` and a subgraph of +Mapping is a bijection or one-to-one correspondence between vertices of :math:`H` and a subgraph of graph :math:`G`. Two vertices are adjacent if there is an existing edge between them, and non-adjacent otherwise. Induced subgraph isomorphism preserves both adjacency and non-adjacency relationships between vertices, while non-induced subgraph isomorphism preserves only adjacency relationship. diff --git a/docs/source/onedal/algorithms/index.rst b/docs/source/onedal/algorithms/index.rst index bd5f4414d99..125d5f8ec8c 100644 --- a/docs/source/onedal/algorithms/index.rst +++ b/docs/source/onedal/algorithms/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _dg_algorithms: diff --git a/docs/source/onedal/algorithms/kernel-functions/index.rst b/docs/source/onedal/algorithms/kernel-functions/index.rst index 2a33ae79b80..acfb030c7a2 100644 --- a/docs/source/onedal/algorithms/kernel-functions/index.rst +++ b/docs/source/onedal/algorithms/kernel-functions/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. ================ Kernel Functions diff --git a/docs/source/onedal/algorithms/kernel-functions/linear-kernel.rst b/docs/source/onedal/algorithms/kernel-functions/linear-kernel.rst index c0430c01c73..0a8647e3835 100644 --- a/docs/source/onedal/algorithms/kernel-functions/linear-kernel.rst +++ b/docs/source/onedal/algorithms/kernel-functions/linear-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/kernel-functions/polynomial-kernel.rst b/docs/source/onedal/algorithms/kernel-functions/polynomial-kernel.rst index f8ff9e788e4..1cf4ead1967 100644 --- a/docs/source/onedal/algorithms/kernel-functions/polynomial-kernel.rst +++ b/docs/source/onedal/algorithms/kernel-functions/polynomial-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/kernel-functions/rbf-kernel.rst b/docs/source/onedal/algorithms/kernel-functions/rbf-kernel.rst index 74ae7886f8d..4e592b318e9 100644 --- a/docs/source/onedal/algorithms/kernel-functions/rbf-kernel.rst +++ b/docs/source/onedal/algorithms/kernel-functions/rbf-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/kernel-functions/sigmoid-kernel.rst b/docs/source/onedal/algorithms/kernel-functions/sigmoid-kernel.rst index 36d9c4244d7..8436aac69a4 100644 --- a/docs/source/onedal/algorithms/kernel-functions/sigmoid-kernel.rst +++ b/docs/source/onedal/algorithms/kernel-functions/sigmoid-kernel.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/linear-regression/index.rst b/docs/source/onedal/algorithms/linear-regression/index.rst index 195ad20829a..dd15c90adc0 100644 --- a/docs/source/onedal/algorithms/linear-regression/index.rst +++ b/docs/source/onedal/algorithms/linear-regression/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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 diff --git a/docs/source/onedal/algorithms/linear-regression/linear-regression.rst b/docs/source/onedal/algorithms/linear-regression/linear-regression.rst index dced547788d..1fe1cf93179 100644 --- a/docs/source/onedal/algorithms/linear-regression/linear-regression.rst +++ b/docs/source/onedal/algorithms/linear-regression/linear-regression.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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 diff --git a/docs/source/onedal/algorithms/logistic-regression/index.rst b/docs/source/onedal/algorithms/logistic-regression/index.rst index 7c6dff57a3d..011b06c5868 100644 --- a/docs/source/onedal/algorithms/logistic-regression/index.rst +++ b/docs/source/onedal/algorithms/logistic-regression/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. highlight:: cpp .. default-domain:: cpp @@ -37,17 +35,17 @@ Training -------- Given :math:`n` feature vectors :math:`X=\{x_1=(x_{11},\ldots,x_{1p}),\ldots, -x_n=(x_{n1},\ldots,x_{np})\}` of size :math:`p` +x_n=(x_{n1},\ldots,x_{np})\}` of size :math:`p` and :math:`n` responses :math:`Y=\{y_1,\ldots,y_n\} \in \{0,1\}`, the problem is to fit the model weights :math:`w=\{w_0, \ldots, w_p\}` to minimize Logistic Loss :math:`L(X, w, y) = \sum_{i = 1}^{n} -y_i \log(prob_i) - (1 - y_i) \log(prob_i)`. -Where -* :math:`prob_i = \sigma(w_0 + \sum_{j=1}^{p} w_j x_{i, j})` - predicted probabilities, -* :math:`\sigma(x) = \frac{1}{1 + \exp(-x)}` - a sigmoid function. -Note that probabilities are binded to interval :math:`[\epsilon, 1 - \epsilon]` to avoid problems with +Where +* :math:`prob_i = \sigma(w_0 + \sum_{j=1}^{p} w_j x_{i, j})` - predicted probabilities, +* :math:`\sigma(x) = \frac{1}{1 + \exp(-x)}` - a sigmoid function. +Note that probabilities are binded to interval :math:`[\epsilon, 1 - \epsilon]` to avoid problems with computing log function (:math:`\epsilon=10^{-7}` if float type is used and :math:`10^{-15}` otherwise) -.. note:: The probabilities are constrained to the interval :math:`[\epsilon, 1 - \epsilon]` to prevent issues +.. note:: The probabilities are constrained to the interval :math:`[\epsilon, 1 - \epsilon]` to prevent issues when computing the logarithm function. Where :math:`\epsilon=10^{-7}` for float type and :math:`10^{-15}` otherwise. .. _logreg_t_math_dense_batch: @@ -55,7 +53,7 @@ computing log function (:math:`\epsilon=10^{-7}` if float type is used and :math Training Method: *dense_batch* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Since Logistic Loss is a convex function, you can use one of the iterative solvers designed for convex problems for minimization. +Since Logistic Loss is a convex function, you can use one of the iterative solvers designed for convex problems for minimization. During training, the data is divided into batches, and the gradients from each batch are summed up. Refer to :ref:`Mathematical formulation: Newton-CG `. @@ -65,7 +63,7 @@ Refer to :ref:`Mathematical formulation: Newton-CG `. Training Method: *sparse* ~~~~~~~~~~~~~~~~~~~~~~~~~ -Using this method you can train Logistic Regression model on sparse data. All you need is to provide matrix with feature vectors as +Using this method you can train Logistic Regression model on sparse data. All you need is to provide matrix with feature vectors as sparse table. Find more info about sparse tables here :ref:`Compressed Sparse Rows (CSR) Table: `. .. _logreg_i_math: @@ -74,15 +72,15 @@ Inference --------- Given :math:`r` feature vectors :math:`X=\{x_1=(x_{11},\ldots,x_{1p}),\ldots, -x_r=(x_{r1},\ldots,x_{rp})\}` of size :math:`p`, the problem is to calculate the probabilities of -associated with these feature vectors belonging to each class and determine the most probable class +x_r=(x_{r1},\ldots,x_{rp})\}` of size :math:`p`, the problem is to calculate the probabilities of +associated with these feature vectors belonging to each class and determine the most probable class label for each object. .. _logreg_i_math_dense_batch: -The probabilities are calculated using this formula +The probabilities are calculated using this formula :math:`prob_i = \sigma(w_0 + \sum_{j=1}^{p} w_j x_{i, j})`. -Where :math:`\sigma(x) = \frac{1}{1 + \exp(-x)}` is a sigmoid function. +Where :math:`\sigma(x) = \frac{1}{1 + \exp(-x)}` is a sigmoid function. If the probability is bigger than :math:`0.5` then class label is set to :math:`1`, otherwise to :math:`0`. diff --git a/docs/source/onedal/algorithms/nearest-neighbors/index.rst b/docs/source/onedal/algorithms/nearest-neighbors/index.rst index 3bc60d8bb8d..11b9b06744c 100644 --- a/docs/source/onedal/algorithms/nearest-neighbors/index.rst +++ b/docs/source/onedal/algorithms/nearest-neighbors/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. ======================= Nearest Neighbors (kNN) diff --git a/docs/source/onedal/algorithms/nearest-neighbors/knn.rst b/docs/source/onedal/algorithms/nearest-neighbors/knn.rst index 171a8f9170b..58f9e4ede00 100755 --- a/docs/source/onedal/algorithms/nearest-neighbors/knn.rst +++ b/docs/source/onedal/algorithms/nearest-neighbors/knn.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/algorithms/objective-function/index.rst b/docs/source/onedal/algorithms/objective-function/index.rst index b221c6f8f84..7a08a016bb4 100644 --- a/docs/source/onedal/algorithms/objective-function/index.rst +++ b/docs/source/onedal/algorithms/objective-function/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. ================== Objective function @@ -43,14 +41,14 @@ Computing --------- Algorithm takes dataset :math:`X = \{ x_1, \ldots, x_n \}` with :math:`n` feature vectors of dimension :math:`p`, vector with correct class labels -:math:`y = \{ y_1, \ldots, y_n \}` and coefficients vector `w = \{ w_0, \ldots, w_p \}`of size :math:`p + 1` as input. Then it calculates +:math:`y = \{ y_1, \ldots, y_n \}` and coefficients vector `w = \{ w_0, \ldots, w_p \}`of size :math:`p + 1` as input. Then it calculates logistic loss, its gradient or hessian. ##### -Value +Value ##### -:math:`L(X, w, y)` - value of objective function. +:math:`L(X, w, y)` - value of objective function. ######## Gradient diff --git a/docs/source/onedal/algorithms/objective-function/logloss.rst b/docs/source/onedal/algorithms/objective-function/logloss.rst index d139e960431..5f9c45f9f2c 100644 --- a/docs/source/onedal/algorithms/objective-function/logloss.rst +++ b/docs/source/onedal/algorithms/objective-function/logloss.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. default-domain:: cpp @@ -34,31 +32,31 @@ Computing --------- Algorithm takes dataset :math:`X = \{ x_1, \ldots, x_n \}` with :math:`n` feature vectors of dimension :math:`p`, vector with correct class labels -:math:`y = \{ y_1, \ldots, y_n \}` and coefficients vector :math:`w = \{ w_0, \ldots, w_p \}` of size :math:`p + 1` as input. Then it calculates +:math:`y = \{ y_1, \ldots, y_n \}` and coefficients vector :math:`w = \{ w_0, \ldots, w_p \}` of size :math:`p + 1` as input. Then it calculates logistic loss, its gradient or gradient using the following formulas. ##### -Value +Value ##### -:math:`L(X, w, y) = \sum_{i = 1}^{n} -y_i \log(prob_i) - (1 - y_i) \log(prob_i)`, where :math:`prob_i = \sigma(w_0 + \sum_{j=1}^{p} w_j x_{i, j})` - predicted probabilities, -:math:`\sigma(x) = \frac{1}{1 + \exp(-x)}` - sigmoid function. Note that probabilities are binded to interval :math:`[\epsilon, 1 - \epsilon]` to avoid problems with +:math:`L(X, w, y) = \sum_{i = 1}^{n} -y_i \log(prob_i) - (1 - y_i) \log(prob_i)`, where :math:`prob_i = \sigma(w_0 + \sum_{j=1}^{p} w_j x_{i, j})` - predicted probabilities, +:math:`\sigma(x) = \frac{1}{1 + \exp(-x)}` - sigmoid function. Note that probabilities are binded to interval :math:`[\epsilon, 1 - \epsilon]` to avoid problems with computing log function (:math:`\epsilon=10^{-7}` if float type is used and :math:`10^{-15}` otherwise) ######## Gradient ######## -:math:`\overline{grad} = \frac{\partial L}{\partial w}`, where :math:`\overline{grad}_0 = \sum_{i=1}^{n} prob_i - y_i`, +:math:`\overline{grad} = \frac{\partial L}{\partial w}`, where :math:`\overline{grad}_0 = \sum_{i=1}^{n} prob_i - y_i`, :math:`\overline{grad}_j = \sum_{i=1}^n X_{i, j} (prob_i - y_i) + L1 \cdot |w_j| + 2 \cdot L2 w_j` for :math:`1 \leq j \leq p` ####### Hessian ####### -:math:`H = (h_{ij}) = \frac{\partial L}{\partial w \partial w}`, where -:math:`h_{0,0}= \sum_{k=1}^n prob_k (1 - prob_k)`, -:math:`h_{i,0} = h_{0,i} = \sum_{k=1}^n X_{k,i} \cdot prob_k (1 - prob_k) ` for :math:`1 \leq i \leq p`, +:math:`H = (h_{ij}) = \frac{\partial L}{\partial w \partial w}`, where +:math:`h_{0,0}= \sum_{k=1}^n prob_k (1 - prob_k)`, +:math:`h_{i,0} = h_{0,i} = \sum_{k=1}^n X_{k,i} \cdot prob_k (1 - prob_k) ` for :math:`1 \leq i \leq p`, :math:`h_{i,j} = \sum_{k=1}^n X_{k,i} X_{k,j} \cdot prob_k (1 - prob_k) + [i = j] 2 \cdot L2` for :math:`1 \leq i, j \leq p` diff --git a/docs/source/onedal/algorithms/optimizers/index.rst b/docs/source/onedal/algorithms/optimizers/index.rst index 72fdab2d8d1..108861f3e42 100644 --- a/docs/source/onedal/algorithms/optimizers/index.rst +++ b/docs/source/onedal/algorithms/optimizers/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. default-domain:: cpp @@ -39,13 +37,13 @@ Mathematical Formulation Computing --------- -The Newton-CG optimizer, also known as the hessian-free optimizer, minimizes convex functions +The Newton-CG optimizer, also known as the hessian-free optimizer, minimizes convex functions without calculating the Hessian matrix. Instead, it uses a Hessian product matrix operator. In the Newton method, the descent direction is calculated using the formula :math:`d_k = -H_k^{-1} g_k`, -where :math:`g_k, H_k` are the gradient and hessian matrix of the loss function on the :math:`k`-th iteration. +where :math:`g_k, H_k` are the gradient and hessian matrix of the loss function on the :math:`k`-th iteration. The Newton-CG method uses the Conjugate Gradients solver to find the approximate solution to the equation :math:`H_k d_k = -g_k`. -This solver can find solutions to the system of linear equations :math:`Ax = b` taking -vector :math:`b` and functor :math:`f(p) = Ap` as input. +This solver can find solutions to the system of linear equations :math:`Ax = b` taking +vector :math:`b` and functor :math:`f(p) = Ap` as input. .. _newton_cg_c_math_dense: diff --git a/docs/source/onedal/algorithms/pairwise-distances/chebyshev-distance.rst b/docs/source/onedal/algorithms/pairwise-distances/chebyshev-distance.rst index bb8451a4f61..efb38a368d2 100755 --- a/docs/source/onedal/algorithms/pairwise-distances/chebyshev-distance.rst +++ b/docs/source/onedal/algorithms/pairwise-distances/chebyshev-distance.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/pairwise-distances/cosine-distance.rst b/docs/source/onedal/algorithms/pairwise-distances/cosine-distance.rst index 26a0b850fe3..fa9faaabf88 100755 --- a/docs/source/onedal/algorithms/pairwise-distances/cosine-distance.rst +++ b/docs/source/onedal/algorithms/pairwise-distances/cosine-distance.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/pairwise-distances/index.rst b/docs/source/onedal/algorithms/pairwise-distances/index.rst index 6b0173ec540..abd144812af 100755 --- a/docs/source/onedal/algorithms/pairwise-distances/index.rst +++ b/docs/source/onedal/algorithms/pairwise-distances/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ================== Pairwise Distances diff --git a/docs/source/onedal/algorithms/pairwise-distances/minkowski-distance.rst b/docs/source/onedal/algorithms/pairwise-distances/minkowski-distance.rst index cdf5adcaa41..6cb1cf01267 100755 --- a/docs/source/onedal/algorithms/pairwise-distances/minkowski-distance.rst +++ b/docs/source/onedal/algorithms/pairwise-distances/minkowski-distance.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/statistics/basic-statistics.rst b/docs/source/onedal/algorithms/statistics/basic-statistics.rst index dd76b65c85d..c6f522f9582 100755 --- a/docs/source/onedal/algorithms/statistics/basic-statistics.rst +++ b/docs/source/onedal/algorithms/statistics/basic-statistics.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. default-domain:: cpp diff --git a/docs/source/onedal/algorithms/statistics/index.rst b/docs/source/onedal/algorithms/statistics/index.rst index 2475d0bdaf5..c305e244a89 100755 --- a/docs/source/onedal/algorithms/statistics/index.rst +++ b/docs/source/onedal/algorithms/statistics/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. ========== Statistics diff --git a/docs/source/onedal/algorithms/svm/index.rst b/docs/source/onedal/algorithms/svm/index.rst index 14732e2bc73..437672943f6 100644 --- a/docs/source/onedal/algorithms/svm/index.rst +++ b/docs/source/onedal/algorithms/svm/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. ======================= Support Vector Machines diff --git a/docs/source/onedal/algorithms/svm/svm.rst b/docs/source/onedal/algorithms/svm/svm.rst index f2d9e2d4deb..97ee43d9c66 100644 --- a/docs/source/onedal/algorithms/svm/svm.rst +++ b/docs/source/onedal/algorithms/svm/svm.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. default-domain:: cpp diff --git a/docs/source/onedal/appendix/decision-tree.rst b/docs/source/onedal/appendix/decision-tree.rst index 8bed2e443da..345f29637ec 100644 --- a/docs/source/onedal/appendix/decision-tree.rst +++ b/docs/source/onedal/appendix/decision-tree.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. _dt: diff --git a/docs/source/onedal/appendix/index.rst b/docs/source/onedal/appendix/index.rst index 4c3a24e86f1..20cd45301eb 100644 --- a/docs/source/onedal/appendix/index.rst +++ b/docs/source/onedal/appendix/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. ======== Appendix diff --git a/docs/source/onedal/appendix/kd_tree.rst b/docs/source/onedal/appendix/kd_tree.rst index 9f338aa9ece..918fb167dad 100644 --- a/docs/source/onedal/appendix/kd_tree.rst +++ b/docs/source/onedal/appendix/kd_tree.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _kd_tree: diff --git a/docs/source/onedal/build_app/build-application.rst b/docs/source/onedal/build_app/build-application.rst index 4092a3256ad..7814a0994d3 100644 --- a/docs/source/onedal/build_app/build-application.rst +++ b/docs/source/onedal/build_app/build-application.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2014 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. -.. *******************************************************************************/ +.. Copyright 2014 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. Build applications with oneDAL ============================== @@ -116,11 +114,11 @@ Applications on Windows* OS :class: longtable * - Static linking - - + - | onedal_core.lib, | onedal_thread.lib * - Dynamic linking - - + - | onedal_core_dll.lib You may also add debug versions of the libraries based on the threading mode and linking method: @@ -156,14 +154,14 @@ Examples Dynamic linking |short_name| with the GPU target: * Linux* OS: - + .. code-block:: text icpx -fsycl my_first_dal_program.cpp -Wl, --start-group -L/dal/latest/lib -lonedal_core -lonedal_dpc -lonedal_parameters_dpc -lonedal_thread -lpthread -ldl -lOpenCL -L/tbb/latest/lib/ -ltbb -ltbbmalloc /dal/latest/lib/libonedal_sycl.a -Wl,--end-group * Windows* OS: - + .. code-block:: text icx-cl -fsycl my_first_dal_program.cpp -Wl, diff --git a/docs/source/onedal/data-management/accessor/column.rst b/docs/source/onedal/data-management/accessor/column.rst index 36b971416e2..63c527c5b4a 100644 --- a/docs/source/onedal/data-management/accessor/column.rst +++ b/docs/source/onedal/data-management/accessor/column.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/data-management/accessor/row.rst b/docs/source/onedal/data-management/accessor/row.rst index 4d9f7ed6657..dccb332a8fc 100644 --- a/docs/source/onedal/data-management/accessor/row.rst +++ b/docs/source/onedal/data-management/accessor/row.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/data-management/accessors.rst b/docs/source/onedal/data-management/accessors.rst index 6d272294dbd..02b36d17ef1 100644 --- a/docs/source/onedal/data-management/accessors.rst +++ b/docs/source/onedal/data-management/accessors.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/data-management/array.rst b/docs/source/onedal/data-management/array.rst index 4c8fbef20a2..c2913479e9c 100644 --- a/docs/source/onedal/data-management/array.rst +++ b/docs/source/onedal/data-management/array.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/data-management/data-source/csv.rst b/docs/source/onedal/data-management/data-source/csv.rst index 4c57e368bd5..d8713ab567e 100644 --- a/docs/source/onedal/data-management/data-source/csv.rst +++ b/docs/source/onedal/data-management/data-source/csv.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/data-management/data-sources.rst b/docs/source/onedal/data-management/data-sources.rst index 870524515b9..e7aed5e4d06 100644 --- a/docs/source/onedal/data-management/data-sources.rst +++ b/docs/source/onedal/data-management/data-sources.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/data-management/graph/directed-adjacency-vector-graph.rst b/docs/source/onedal/data-management/graph/directed-adjacency-vector-graph.rst index 28143c9b633..e58dfc5dd06 100755 --- a/docs/source/onedal/data-management/graph/directed-adjacency-vector-graph.rst +++ b/docs/source/onedal/data-management/graph/directed-adjacency-vector-graph.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _directed_adjacency_vector_graph: diff --git a/docs/source/onedal/data-management/graph/undirected-adjacency-vector-graph.rst b/docs/source/onedal/data-management/graph/undirected-adjacency-vector-graph.rst index 751d2f06375..270a05b478f 100755 --- a/docs/source/onedal/data-management/graph/undirected-adjacency-vector-graph.rst +++ b/docs/source/onedal/data-management/graph/undirected-adjacency-vector-graph.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _undirected_adjacency_vector_graph: diff --git a/docs/source/onedal/data-management/graphs.rst b/docs/source/onedal/data-management/graphs.rst index c96d0f21f26..b1601e15b3e 100755 --- a/docs/source/onedal/data-management/graphs.rst +++ b/docs/source/onedal/data-management/graphs.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 @@ -32,13 +30,13 @@ This section describes the types and functions related to the :txtref:`graph` co * - Type - Description - + * - :ref:`api_undirected_adjacency_vector_graph` - An implementation of the :capterm:`undirected graph` concept. * - :ref:`api_directed_adjacency_vector_graph` - An implementation of the :capterm:`directed graph` concept. - + * - :ref:`api_graph_traits` - A standartized way to access various properties of the :capterm:`graph`. diff --git a/docs/source/onedal/data-management/index.rst b/docs/source/onedal/data-management/index.rst index aabd23a0a6a..eaaa6395275 100644 --- a/docs/source/onedal/data-management/index.rst +++ b/docs/source/onedal/data-management/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _dg_data_management: diff --git a/docs/source/onedal/data-management/table/csr.rst b/docs/source/onedal/data-management/table/csr.rst index aa92953868f..0ba99acf2d5 100644 --- a/docs/source/onedal/data-management/table/csr.rst +++ b/docs/source/onedal/data-management/table/csr.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. _csr_table: diff --git a/docs/source/onedal/data-management/table/homogen.rst b/docs/source/onedal/data-management/table/homogen.rst index 7b38229bf46..e16ca47fa15 100644 --- a/docs/source/onedal/data-management/table/homogen.rst +++ b/docs/source/onedal/data-management/table/homogen.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. .. _homogen_table: diff --git a/docs/source/onedal/data-management/tables.rst b/docs/source/onedal/data-management/tables.rst index fc5adf29311..62c794b6b2b 100644 --- a/docs/source/onedal/data-management/tables.rst +++ b/docs/source/onedal/data-management/tables.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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 diff --git a/docs/source/onedal/glossary.rst b/docs/source/onedal/glossary.rst index f449caabd55..31b4dd8f174 100644 --- a/docs/source/onedal/glossary.rst +++ b/docs/source/onedal/glossary.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _glossary: diff --git a/docs/source/onedal/gpu_support.rst b/docs/source/onedal/gpu_support.rst index 61e9dab793d..1be767eed0f 100644 --- a/docs/source/onedal/gpu_support.rst +++ b/docs/source/onedal/gpu_support.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * 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. -.. *******************************************************************************/ +.. 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. .. _onedal_gpu_support: @@ -23,7 +21,7 @@ See the differences in CPU and GPU support below. GPU-Supported Targets ********************* -The oneAPI Data Analytics Library (oneDAL) is designed to work with Intel(R) GPUs specifically, but it could potentially +The oneAPI Data Analytics Library (oneDAL) is designed to work with Intel(R) GPUs specifically, but it could potentially run on other hardware platforms if a SYCL runtime is available. .. tabularcolumns:: |\Y{0.5}|\Y{0.5}| @@ -36,24 +34,24 @@ run on other hardware platforms if a SYCL runtime is available. * - Algorithm - GPU Support * - :ref:`alg_kmeans` - - + - * - :ref:`alg_covariance` - - + - * - :ref:`alg_pca` - - + - * - Logistic Regression - - + - * - Linear Regression - - + - * - :ref:`alg_df` - - - * - Extra Trees - - + - + * - Extra Trees + - * - :ref:`alg_knn` - - + - * - :ref:`alg_svm` - - + - * - :ref:`alg_dbscan` - - + - * - :ref:`alg_basic_statistics` - - + - diff --git a/docs/source/onedal/introduction.rst b/docs/source/onedal/introduction.rst index a63f8720539..a35303c6771 100644 --- a/docs/source/onedal/introduction.rst +++ b/docs/source/onedal/introduction.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. Introduction ************ @@ -45,7 +43,7 @@ The following algorithms are available in oneDAL: - :ref:`batch `, :ref:`online `, :ref:`distributed ` * - :ref:`alg_df` - :ref:`batch `, :ref:`distributed ` - * - Extra Trees + * - Extra Trees - :ref:`batch ` * - :ref:`alg_knn` - :ref:`batch `, :ref:`distributed ` diff --git a/docs/source/onedal/notations.rst b/docs/source/onedal/notations.rst index 8d00736e47e..edf858ab807 100755 --- a/docs/source/onedal/notations.rst +++ b/docs/source/onedal/notations.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _math_notations: diff --git a/docs/source/onedal/programming-model/computational-modes.rst b/docs/source/onedal/programming-model/computational-modes.rst index 988d373f7a1..05f673771d6 100644 --- a/docs/source/onedal/programming-model/computational-modes.rst +++ b/docs/source/onedal/programming-model/computational-modes.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2020 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. -.. *******************************************************************************/ +.. Copyright 2020 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. =================== Computational Modes diff --git a/docs/source/onedal/spmd/index.rst b/docs/source/onedal/spmd/index.rst index 5a0575c95a8..8313e3523e0 100644 --- a/docs/source/onedal/spmd/index.rst +++ b/docs/source/onedal/spmd/index.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2021 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. -.. *******************************************************************************/ +.. Copyright 2021 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. .. _dg_spmd: @@ -20,14 +18,14 @@ Single Program Multiple Data ============================ -This section includes concepts and descriptions of objects that support +This section includes concepts and descriptions of objects that support distributed computations using :capterm:`SPMD` model. Distributed computation using SPMD model ---------------------------------------- -In a typical usage scenario, a user provides a :capterm:`communicator` object as a first parameter of -a free function to indicate that the algorithm can process data simultaneously. All internal inter-process +In a typical usage scenario, a user provides a :capterm:`communicator` object as a first parameter of +a free function to indicate that the algorithm can process data simultaneously. All internal inter-process communications at sync points are hidden from the user. General expectation is that input dataset is distributed among processes. Results are distributed in diff --git a/docs/source/opt-notice.rst b/docs/source/opt-notice.rst index e02e8de57f3..d0163367a90 100644 --- a/docs/source/opt-notice.rst +++ b/docs/source/opt-notice.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. +-------------------------------------------------------------+ | Product and Performance Information | diff --git a/docs/source/quick-start.rst b/docs/source/quick-start.rst index 5cd84e37747..7c1bc44b22d 100644 --- a/docs/source/quick-start.rst +++ b/docs/source/quick-start.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2019 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. -.. *******************************************************************************/ +.. Copyright 2019 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. .. _onedal_get_started: @@ -29,5 +27,5 @@ Quick Start .. include:: ./get-started/build-and-run-examples.rst .. seealso:: - + - :ref:`oneapi_dal_examples` \ No newline at end of file diff --git a/docs/source/system-requirements.rst b/docs/source/system-requirements.rst index 5051a233769..6f15ff38250 100644 --- a/docs/source/system-requirements.rst +++ b/docs/source/system-requirements.rst @@ -1,18 +1,16 @@ -.. ****************************************************************************** -.. * Copyright 2022 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. -.. *******************************************************************************/ +.. Copyright 2022 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. System Requirements ===================