Skip to content

Releases: oracle/accelerated-data-science

2.7.3

19 Jan 01:54
7757da3
Compare
Choose a tag to compare

ADS

  • Added support for the model version set feature.
  • Added --job-info option to ads opctl run CLI to save job run information to a YAML file.
  • Added the AuthContext class. It supports API key configuration, resource principal, and instance principal authentication. In addition, predefined signers, callable signers, or API keys configurations from specified locations.
  • Added restart_deployment() method to the framework-specific classes. Update model deployment associated with the model.
  • Added activate() and deactivate() method to the model deployment classes.
  • Fixed a bug in to_sql(). The string length for the column created in Oracle Database table was counting characters, not bytes.
  • Fixed a bug where any exception that occurred in a notebook cell printed "ADS Exception" even if the ADS code was not responsible for the error.

2.7.2

21 Dec 00:50
020b3c9
Compare
Choose a tag to compare

2.7.2

  • Fixed a bug in ADS jobs. The job_run.watch() method sometimes threw an exception due to an unexpected logging parameter.

2.7.1

15 Dec 00:31
f36c878
Compare
Choose a tag to compare

Description

  • Fixed a bug with ads.set_auth('resource_principal') - #38

2.7.0

16 Dec 17:51
b56680b
Compare
Choose a tag to compare

ADS

  • Fixed a bug in GenericModel.prepare. The .model-ignore file was not included in the Manifest.in.

2.6.9

08 Dec 01:14
bc71036
Compare
Choose a tag to compare

ADS

  • Added compatibility with Python 3.10.
  • Added update_deployment() method to the framework-specificclasses. Update model deployment associated with the model.
  • Added from_id() method to the framework-specific classes. Load existing model by OCID directly from the model catalog and model deployment.
  • Added upload_artifact() to the framework-specific classes. Upload model artifacts to Object Storage.
  • Added update() method to the framework-specific classes. Update the model metadata for the registered model.
  • Added config, singer, signer_callable attributes to the ads.set_auth() to support additional signers.
  • Added support for Instance Principals authentication for the ads opctl conda publish and ads opctl conda install commands.
  • Added an option for PyTorchModel framework allowing to serialize model in a TorchScript format.
  • Added an option to import :doc:framework-specific <framework_specific_instruction> classes directly from the ads.model package. Example: from ads.model import LightGBMModel, AutoMLModel, GenericModel.
  • Fixed a bug in ADSDataset get_recommendations when imbalanced correction depends on classes alpha order.
  • Fixed a bug in ADS jobs. The shape configuration details were incorrectly extracted from a notebook session.
  • Fixed a bug to replace the use of a deprecated API with latest API in the Model Evaluation module.

Following modules are marked as deprecated:

  • ads.catalog.model.py.
  • ads.catalog.notebook.py
  • ads.catalog.project.py
  • ads.catalog.summary.py

2.6.8

29 Oct 20:14
1c48f93
Compare
Choose a tag to compare

ADS

  • Fixed a bug in ads.dataset.helper to support Python 3.8 and Python 3.9.

2.6.7

29 Oct 00:19
710b8fb
Compare
Choose a tag to compare

ADS

  • Fixed a bug in PyTorchModel. The score.py failed when torch.Tensor was 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_Oracle interface to the oracledb driver to connect to Oracle Databases.
  • Added support for image attribute for the PyTorchModel.predict() and TensorFlowModel.predict() methods. Images can now be directly passed to the model Deployment predict.

The following APIs are deprecated:

  • OracleAutoMLProvider

2.6.6

08 Oct 01:19
3226228
Compare
Choose a tag to compare

ADS

  • Added SparkPipelineModel model serialization class for fast and easy model deployment.
  • Added support for flexible shapes for Jobs and Model Deployments.
  • Added support for freeform_tags and defined_tags for Model Deployments.
  • Added the populate_schema() method to the GenericModel class. Populate input and output schemas for model artifacts.
  • The ADSString was 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

16 Sep 22:31
e123f56
Compare
Choose a tag to compare

ADS

  • OCI SDK updated from version 2.59.0 to version 2.82.0.

2.6.4

15 Sep 01:53
e1e64f5
Compare
Choose a tag to compare

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 the GenericModel class. Deletes models and associated model deployments.
  • The Model Input Schema is improved to return features sorted by the order attribute.
  • Added user-friendly default names for created Jobs, Model Deployments, and Models.