-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
RELEASE.md
35 lines (28 loc) · 1.01 KB
/
RELEASE.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Release v2.0.0
## 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`
# 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.
## New features
## Bug fixes
* Now also support `numpy>=1.24`.