You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/release_notes.rst
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,15 @@
2
2
Release Notes
3
3
=============
4
4
5
+
2.8.9
6
+
-----
7
+
Release date: September 5, 2023
8
+
9
+
* Upgraded the ``scikit-learn`` dependency to ``>=1.0``.
10
+
* Upgraded the ``pandas`` dependency to ``>1.2.1,<2.1`` to allow you to use ADS with pandas 2.0.
11
+
* Fixed the "Attribute not found" error, when ``deploy()`` called twice in ``GenericModel``.
12
+
* Fixed the fetch of the security token, when the relative path for the ``security_token_file`` is provided (used in session token-bases authentication).
Copy file name to clipboardExpand all lines: docs/source/user_guide/cli/quickstart.rst
+13-19Lines changed: 13 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -57,55 +57,49 @@ Installing the ``oracle-ads`` base package
57
57
Installing extras libraries
58
58
+++++++++++++++++++++++++++
59
59
60
-
The ``all-optional`` module will install all optional dependencies.
61
-
62
-
.. code-block:: bash
63
-
64
-
$ python3 -m pip install oracle-ads[all-optional]
65
-
66
60
To work with gradient boosting models, install the ``boosted`` module. This module includes XGBoost and LightGBM model classes.
67
61
68
62
.. code-block:: bash
69
63
70
64
$ python3 -m pip install oracle-ads[boosted]
71
65
72
-
For big data use cases using Oracle Big Data Service (BDS), install the ``bds`` module. It includes the following libraries: `ibis-framework[impala]`, `hdfs[kerberos]` and `sqlalchemy`.
66
+
For big data use cases using Oracle Big Data Service (BDS), install the ``bds`` module. It includes the following libraries: ``ibis-framework[impala]``, ``hdfs[kerberos]`` and ``sqlalchemy``.
73
67
74
68
.. code-block:: bash
75
69
76
70
$ python3 -m pip install oracle-ads[bds]
77
71
78
-
To work with a broad set of data formats (for example, Excel, Avro, etc.) install the ``data`` module. It includes the following libraries: `fastavro`, `openpyxl`, `pandavro`, `asteval`, `datefinder`, `htmllistparse`, and `sqlalchemy`.
72
+
To work with a broad set of data formats (for example, Excel, Avro, etc.) install the ``data`` module. It includes the following libraries: ``fastavro``, ``openpyxl``, ``pandavro``, ``asteval``, ``datefinder``, ``htmllistparse``, and ``sqlalchemy``.
79
73
80
74
.. code-block:: bash
81
75
82
76
$ python3 -m pip install oracle-ads[data]
83
77
84
-
To work with geospatial data install the ``geo`` module. It includes the `geopandas` and libraries from the `viz` module.
78
+
To work with geospatial data install the ``geo`` module. It includes the ``geopandas`` and libraries from the ``viz`` module.
85
79
86
80
.. code-block:: bash
87
81
88
82
$ python3 -m pip install oracle-ads[geo]
89
83
90
-
Install the ``notebook`` module to use ADS within the Oracle Cloud Infrastructure Data Science service `Notebook Session <https://docs.oracle.com/en-us/iaas/data-science/using/manage-notebook-sessions.htm>`_. This module installs `ipywidgets` and `ipython` libraries.
84
+
Install the ``notebook`` module to use ADS within the Oracle Cloud Infrastructure Data Science service `Notebook Session <https://docs.oracle.com/en-us/iaas/data-science/using/manage-notebook-sessions.htm>`_. This module installs ``ipywidgets`` and ``ipython`` libraries.
91
85
92
86
.. code-block:: bash
93
87
94
88
$ python3 -m pip install oracle-ads[notebook]
95
89
96
-
To work with ONNX-compatible run times and libraries designed to maximize performance and model portability, install the ``onnx`` module. It includes the following libraries, `onnx`, `onnxruntime`, `onnxmltools`, `skl2onnx`, `xgboost`, `lightgbm` and libraries from the `viz` module.
90
+
To work with ONNX-compatible run times and libraries designed to maximize performance and model portability, install the ``onnx`` module. It includes the following libraries, ``onnx``, ``onnxruntime``, ``onnxmltools``, ``skl2onnx``, ``xgboost``, ``lightgbm`` and libraries from the ``viz`` module.
97
91
98
92
.. code-block:: bash
99
93
100
94
$ python3 -m pip install oracle-ads[onnx]
101
95
102
-
For infrastructure tasks, install the ``opctl`` module. It includes the following libraries, `oci-cli`, `docker`, `conda-pack`, `nbconvert`, `nbformat`, and `inflection`.
96
+
For infrastructure tasks, install the ``opctl`` module. It includes the following libraries, ``oci-cli``, ``docker``, ``conda-pack``, ``nbconvert``, ``nbformat``, and ``inflection``.
103
97
104
98
.. code-block:: bash
105
99
106
100
$ python3 -m pip install oracle-ads[opctl]
107
101
108
-
For hyperparameter optimization tasks install the ``optuna`` module. It includes the `optuna` and libraries from the `viz` module.
102
+
For hyperparameter optimization tasks install the ``optuna`` module. It includes the ``optuna`` and libraries from the ``viz`` module.
109
103
110
104
.. code-block:: bash
111
105
@@ -117,36 +111,36 @@ For Spark tasks install the ``spark`` module.
117
111
118
112
$ python3 -m pip install oracle-ads[spark]
119
113
120
-
Install the ``tensorflow`` module to include `tensorflow` and libraries from the ``viz`` module.
114
+
Install the ``tensorflow`` module to include ``tensorflow`` and libraries from the ``viz`` module.
121
115
122
116
.. code-block:: bash
123
117
124
118
$ python3 -m pip install oracle-ads[tensorflow]
125
119
126
-
For text related tasks, install the ``text`` module. This will include the `wordcloud`, `spacy` libraries.
120
+
For text related tasks, install the ``text`` module. This will include the ``wordcloud``, ``spacy`` libraries.
127
121
128
122
.. code-block:: bash
129
123
130
124
$ python3 -m pip install oracle-ads[text]
131
125
132
-
Install the ``torch`` module to include `pytorch` and libraries from the ``viz`` module.
126
+
Install the ``torch`` module to include ``pytorch`` and libraries from the ``viz`` module.
133
127
134
128
.. code-block:: bash
135
129
136
130
$ python3 -m pip install oracle-ads[torch]
137
131
138
-
Install the ``viz`` module to include libraries for visualization tasks. Some of the key packages are `bokeh`, `folium`, `seaborn` and related packages.
132
+
Install the ``viz`` module to include libraries for visualization tasks. Some of the key packages are ``bokeh``, ``folium``, ``seaborn`` and related packages.
139
133
140
134
.. code-block:: bash
141
135
142
136
$ python3 -m pip install oracle-ads[viz]
143
137
138
+
See ``pyproject.toml`` file ``[project.optional-dependencies]`` section for full list of modules and its list of extra libraries.
139
+
144
140
**Note**
145
141
146
142
Multiple extra dependencies can be installed together. For example:
0 commit comments