Releases: oracle/accelerated-data-science
2.6.8
2.6.7
ADS
- Fixed a bug in
PyTorchModel. Thescore.pyfailed whentorch.Tensorwas used as input data. - Added support for flexible shapes for Data Flow Jobs.
- Loading a model from Model Catalog (
GenericModel.from_model_catalog()) and Model Deployment (GenericModel.from_model_deployment()) no longer requires a model file name. - Switched from using
cx_Oracleinterface to theoracledbdriver to connect to Oracle Databases. - Added support for image attribute for the
PyTorchModel.predict()andTensorFlowModel.predict()methods. Images can now be directly passed to the model Deployment predict.
The following APIs are deprecated:
- OracleAutoMLProvider
2.6.6
ADS
- Added
SparkPipelineModelmodel serialization class for fast and easy model deployment. - Added support for flexible shapes for Jobs and Model Deployments.
- Added support for
freeform_tagsanddefined_tagsfor Model Deployments. - Added the
populate_schema()method to theGenericModelclass. Populate input and output schemas for model artifacts. - The
ADSStringwas added to the Feature types system. Use the enhanced string class functionalities such as regular expression (RegEx) matching and natural language parsing within Pandas dataframes and series. - Saving model does not require iPython dependencies
Following APIs are deprecated:
- DatasetFactory.open
- ADSModel.prepare
- ads.common.model_export_util.prepare_generic_model
2.6.5
2.6.4
ADS
- Added support for large models with artifact size between 2 and 6 GB. The large models can be saved to the Model Catalog, downloaded from the Model Catalog, and deployed as a Model Deployment resource.
- Added
delete()method to theGenericModelclass. Deletes models and associated model deployments. - The Model Input Schema is improved to return features sorted by the
orderattribute. - Added user-friendly default names for created Jobs, Model Deployments, and Models.
2.6.3
ADS
- Deprecated the
ads.dataflow.DataFlowclass. It has been superseded by theads.jobs.DataFlowclass. - Added
prepare_save_deploy()method to theGenericModelclass. Prepare model artifacts and deploy the model with one command. - Added support for binary payloads in model deployment.
- Updated
AutoMLModel,GenericModel,LightgbmModel,PyTorchModel,SklearnModel,TensorflowModel, andXgboostModelclasses to support binary payloads in model deployment. - The maximum runtime for a Job can be limited with the
with_maximum_runtime_in_minutes()method in theCondaRuntime,DataFlowNotebookRuntime,DataFlowRuntime,GitPythonRuntime,NotebookRuntime, andScriptRuntimeclasses. - The
ads.jobs.DataFlowclass supports Published conda environments.
2.6.2
ADS
-
Added
from_model_deployment()method to theGenericModelclass. Now you can load a model directly from an existing model deployment. -
Moved dependencies from being default into optional installation groups:
all-optionalbdsboosteddatageonotebookonnxopctloptunatensorflowtexttorchviz
Use
python3 -m pip install oracle-ads[XXX]where XXX are the group names.
2.6.1
ADS
- Added support for running a container as jobs using
ads.jobs.ContainerRuntime. - The
ModelArtifactclass is deprecated. Use the model serialization classes (GenericModel,PyTorchModel,SklearnModel, etc.).
2.5.10
ADS
- Added
BDSSecretKeeperto store and save configuration parameters to connect to Big Data service to the vault. - Added the
krbcontextandrefresh_ticketfunctions to configure Kerberos authentication for the Big Data service. - Added authentication options to logging APIs to allow you to pass in the OCI API key configuration or signer.
- Added the configuration file path option to the
set_authmethod to allow to change the path of the OCI configuration. - Fixed a bug in AutoML for Ttext datasets.
- Fixed bug in
import ads.jobsto notify users installing ADS optional dependencies. - Fixed a bug in the generated
score.pyfile, where Pandas dataframe's dtypes changed when deserializing. Now you can recover it from the input schema. - Updated requirements to oci>=2.59.0.
2.5.9
ADS
-
Added framework specific model serialization to add more inputs to the generated
score.pyfile. -
Added the following framework-specific model classes:
AutoMLModelSKlearnModelXGBoostModelLightGBMModelPyTorchModelTensorFlowModel
-
For any framework not included in the preceding list, added another class:
GenericModel
-
These model classes include methods specific to the frameworks that improve deployment speed. Some example methods are:
- Prepare (the artifacts)
- Save (metadata and model to model catalog)
- Deploy (the models quickly with this method)
- Predict (perform inference operations)
-
Added support to create jobs with managed egress.
-
Shortened the time for streaming large number of logs for job run logging.