Skip to content

Releases: openlayer-ai/openlayer-python

v0.3.0a0

05 Aug 03:46
Compare
Choose a tag to compare
v0.3.0a0 Pre-release
Pre-release

Added

  • A Project helper class.
  • A convenience method create_or_load_project which loads in a project in if it is already created.

Changed

  • Models and datasets must be added to projects.
  • Deprecates categorical_features_map in favor of categorical_feature_names for model and dataset uploads.
  • Moved TaskType attribute from the Model level to the Project level. Creating a Project now requires specifying the TaskType.
  • Removed name from add_dataset.
  • Changed description to commit_message from add_dataset, add_dataframe and add_model.

v0.2.0a1

15 Jun 21:15
Compare
Choose a tag to compare
v0.2.0a1 Pre-release
Pre-release

Fixed

  • Fail early if custom_model_code, dependent_dir or requirements_txt_file are None when model type is ModelType.custom.
  • Fail early if model is not None when model type is ModelType.custom.

v0.2.0a0

01 Jun 23:01
Compare
Choose a tag to compare
v0.2.0a0 Pre-release
Pre-release

Added

  • Accepts AZURE as a DeploymentType.

Changed

  • Compatibility with Unbox backend storage and data refactor.

v0.1.2

22 May 22:36
Compare
Choose a tag to compare

Fixed

v0.1.1

22 May 22:26
Compare
Choose a tag to compare

Added

  • Can specify ModelType.keras.
  • API documentation.

Changed

  • Parameter ordering for add_model, add_dataset, add_dataframe for clarity's sake.

Fixed

  • Fix bug when predict function is a list with numpy objects.
  • Better error message if return type isn't a list or numpy array.
  • Prevents dataset upload when label_column_name is also in feature_names.