Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Releases: ray-project/tune-sklearn

tune-sklearn v0.5.0

06 Nov 19:55
75e6a9d
Compare
Choose a tag to compare

⚠️ tune-sklearn is no longer being maintained

This release (0.5.0) is the last version of the library that will be released by the Ray team. It has been updated to be compatible
with ray>=2.7.x, ray<=2.9.x. The library will not be guaranteed to work with future Ray versions.

The recommended alternative to keep up with the latest features of Ray is to migrate tune-sklearn usage
to the Ray Tune APIs to accomplish the same thing.

Feel free to post an issue on the Ray Github if you run into any issues in migrating.

What's Changed

Full Changelog: v0.4.6...v0.5.0

tune-sklearn 0.4.6

30 Jun 21:38
6e813e1
Compare
Choose a tag to compare

What's Changed

  • Fix error_score argument being ignored by @Yard1 in #259
  • Import mlflow integration from new air.integrations module by @justinvyu in #264
  • [release] Bump version number to 0.4.6 by @justinvyu in #268

New Contributors

Full Changelog: v0.4.5...v0.4.6

tune-sklearn 0.4.5

14 Nov 19:24
9814762
Compare
Choose a tag to compare

What's Changed

  • Don't store fit_params, use with_parameters for it by @Yard1 in #256
  • Bump version to 0.4.5 by @Yard1 in #258

Full Changelog: v0.4.4...v0.4.5

tune-sklearn 0.4.4

05 Oct 18:20
03342e3
Compare
Choose a tag to compare

What's Changed

The minimum supported Ray version is 2.0.0 now.

New Contributors

Full Changelog: v0.4.3...v0.4.4

tune-sklearn 0.4.3

22 Apr 18:57
67af5a9
Compare
Choose a tag to compare

Changelog

Full Changelog: v0.4.2...v0.4.3

tune-sklearn 0.4.2

04 Apr 18:02
696d6b9
Compare
Choose a tag to compare

Changelog

Full Changelog: v0.4.1...v0.4.2

tune-sklearn 0.4.1 release notes

15 Sep 11:29
0b8fc83
Compare
Choose a tag to compare

Releasing a new version of tune-sklearn! This version should be compatible with both Ray master and Ray 1.6.

This is a maintenance release without any public-facing changes.

Changelog:

  • Refactor TuneBaseSearchCV.fit (#215)
  • Use Tune search spaces for Optuna (#216)

tune-sklearn 0.4.0 release notes

05 Jul 22:36
a700d39
Compare
Choose a tag to compare

Releasing a new version of tune-sklearn! This version should be compatible with both Ray master and Ray 1.4.

Changelog:

  • You can now pass any tune.run params in fit using the tune_params argument (#212)
  • Fixed an exception in _is_param_distributions_all_tune_domains (#209)

tune-sklearn 0.3.0 release notes

12 May 23:18
b618b8e
Compare
Choose a tag to compare

Releasing a new version of tune-sklearn! This version should be compatible with both Ray master and Ray 1.3.

Changelog:

  • Allow any Ray Tune searcher to be passed in (#198) (thanks @Yard1 !)
  • You can now specify a name to your run args (#200) (thanks, @rspeare!)
  • Optimization: Estimators can be passed via object store IDs (#196)
  • Change BaseEstimator to BaseSearchCV (#192) (thanks @timvink!)
  • Fix groups for cross validation (#191)
  • Random search with tune search spaces previously failed to produce multiple trials (#180)
  • Update code snippets in README to showcase ray.tune SearchSpaces (#176) (thanks @mkretsch327 !)
  • Positional arg to keyword in pipeline partial fit (#173)

tune-sklearn 0.2.1 -- patch release

23 Dec 02:20
2987093
Compare
Choose a tag to compare
  • Adds support for scikit-learn 0.24
  • Fixes an issue with gradient boosted models and pipelines