autokeras

AutoML library for deep learning

APACHE-2.0 License

Downloads
22.5K
Stars
9.1K
Committers
141

Bot releases are visible (Hide)

autokeras - Release v2.0.0 Latest Release

Published by haifeng-jin 7 months ago

Breaking changes

  • Requires keras>=3.0.0 instead of tf.keras.
  • Removed the structured data related tasks by removing the following public
    APIs:
    • CategoricalToNumerical
    • MultiCategoryEncoding
    • StructuredDataInput
    • StructuredDataBlock
    • StructuredDataClassifier
    • StructuredDataRegressor
  • Removed the Time series related tasks by removing the following public APIs:
    • TimeseriesInput
    • TimeseriesForecaster
  • Reduced search space of Text related tasks by removing the following blocks.
    • Embedding
    • TextToIntSequence
    • TextToNgramVector
    • Transformer

New Contributors

Full Changelog: https://github.com/keras-team/autokeras/compare/1.1.0...2.0.0

autokeras - Release v1.1.0

Published by haifeng-jin over 1 year ago

Release v1.1.0

Breaking changes

  • This only affect you if you use BertTokenizer or BertEncoder in AutoKeras explicity. You are not affected if you only use BertBlock, TextClassifier or TextRegressor. Removed the AutoKeras implementation of BertTokenizer and BertEncoder. Use keras-nlp implementation instead.

Bug fixes

  • Now also support numpy>=1.24.

New Contributors

Full Changelog: https://github.com/keras-team/autokeras/compare/1.0.20...1.1.0

autokeras - Release v1.0.20

Published by haifeng-jin about 2 years ago

Highlights

  • Minor bug fixes to prepare for new KerasTuner release.

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/autokeras/compare/1.0.19...1.0.20

autokeras - Release v1.0.19

Published by haifeng-jin over 2 years ago

What's Changed

  • Compatible with TF 2.9.0.
  • Support more hyperparameters as arguments to blocks.

New Contributors

Full Changelog: https://github.com/keras-team/autokeras/compare/1.0.18...1.0.19

autokeras - Release v1.0.18

Published by haifeng-jin over 2 years ago

Important Notice!

Please update to TensorFlow 2.8.0 and KerasTuner 1.1.0 to use this AutoKeras version.

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/autokeras/compare/1.0.17...1.0.18

autokeras - Release v1.0.17

Published by haifeng-jin over 2 years ago

What's Changed

  • Fix broken link in docs by @htbkoo
  • Adapt to tf 2.8.0
  • Adapt to KerasTuner 1.1.0

New Contributors

Full Changelog: https://github.com/keras-team/autokeras/compare/1.0.16...1.0.17

autokeras - 1.0.16.post1

Published by haifeng-jin almost 3 years ago

  • Support returning history in .fit() function if validation_data is not provided.
  • Pin the TF version to 2.5.0 or lower.
  • Pin the KerasTuner version to 1.0.x and less than 1.1.
autokeras - 1.0.17rc1

Published by haifeng-jin almost 3 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/autokeras/compare/1.0.16...1.0.17rc1

autokeras - 1.0.17rc0

Published by haifeng-jin about 3 years ago

  • Temporarily depending on tf-nightly.

What's Changed

New Contributors

Full Changelog: https://github.com/keras-team/autokeras/compare/1.0.16...1.0.17rc0

autokeras - Release v1.0.16

Published by haifeng-jin about 3 years ago

  • Support returning history in .fit() function if validation_data is not provided.
  • Pin the TF version to 2.5.0 or lower.
autokeras - v1.0.15

Published by haifeng-jin over 3 years ago

  • Adapt to KerasTuner 1.0.3.
  • Raise the minimum version requirement for KerasTuner to 1.0.3.
autokeras - v1.0.14

Published by haifeng-jin over 3 years ago

  • Support TensorFlow 2.5.0.
  • Beta release of Timeseries Forecasting. Tutorial
  • More blocks support passing hyperparameters to arguments. Including BertBlock, RNNBlock, Transformer, and Embedding. Code Example
  • Support verbose argument for AutoModel.fit, AutoModel.predict, and AutoModel.evaluate.
  • Move the download of weights of pretrained BERT to GitHub assets.
autokeras - v1.0.13 Release

Published by haifeng-jin over 3 years ago

  • Support TensorFlow 2.5.0.
  • Beta release of Timeseries Forecasting. Tutorial
  • More blocks support passing hyperparameters to arguments. Including BertBlock, RNNBlock, Transformer, and Embedding. Code Example
  • Support verbose argument for AutoModel.fit, AutoModel.predict, and AutoModel.evaluate.
autokeras - v1.0.12 Release

Published by haifeng-jin almost 4 years ago

  • Compatible with TensorFlow 2.4.
  • Support specify search space for num_units, num_layers, and dropout of DenseBlock. Code Example
  • Support specify search space for filters, num_blocks, and num_layers of ConvBlock.
  • Add Keras Tuner to dependency to be installed automatically.
  • Bug fix for multi-model data AutoModel.predict(...).
autokeras - v1.0.11 Release

Published by haifeng-jin almost 4 years ago

  • Compatible with TensorFlow 2.4.
  • Support specify search space for num_units, num_layers, and dropout of DenseBlock. Code Example
autokeras - v1.0.10 Release

Published by haifeng-jin about 4 years ago

  • Reduces batch_size by 2 when running out of memory.
  • Add pretrained EfficientNet to the search space.
  • Support load data from disk. For more details, read our tutorials on the official website.
  • Put data type casting and reshaping into the exported Keras Model.
  • Fixed the bug of breaking when validation_data is a tf.data.Dataset instance.
autokeras - v1.0.9 Release

Published by haifeng-jin about 4 years ago

  • Improved text data performance by adding pretrained BERT model to the search space.
  • Added Adam optimizer with weight decay to the search space.
autokeras - v1.0.8 Release

Published by haifeng-jin about 4 years ago

  • Performance improvements for structured data classification and regression tasks.
  • Bug fix for not using the best number of epochs for the final model training when validation data is not provided.
autokeras - v1.0.7 Release

Published by haifeng-jin about 4 years ago

  • Bug fix for using multiple GPUs.
  • Bug fix for KeyError when searching for large number of trials.
  • Grammar fixes for error messages.
autokeras - v1.0.6 Release

Published by haifeng-jin about 4 years ago

  • Reduced GPU memory consumption.
  • Optimized greedy tuning algorithm.
  • Support using multiple GPUs.