- Requires
keras>=3.0.0
instead oftf.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
- This only affect you if you use
BertTokenizer
orBertEncoder
in AutoKeras explicity. You are not affected if you only useBertBlock
,TextClassifier
orTextRegressor
. Removed the AutoKeras implementation ofBertTokenizer
andBertEncoder
. Usekeras-nlp
implementation instead.
- Now also support
numpy>=1.24
.