Skip to content

How to replicate StructuredDataClassifier and Regressor functionality in 2.0? #1914

Answered by haifeng-jin
adunega asked this question in Q&A
Discussion options

You must be logged in to vote

Thanks, @adunega !

Yes, it is removed.
The main reason is the search space is limited to neural networks, which may not be as good as other models for structured data.
It is also adding a lot of maintenance overhead.

The feature encoding part is also not good enough since AutoML cannot understand the features but only brute-forcely search it.

I suggest you to do the feature encoding for all categorical features by yourself and use it with a normal Input() and RegressionHead() or ClassificationHead() with the IO API in AutoKeras.

Or you can just use XGBoost, which may be better for structured data tasks.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@adunega
Comment options

Answer selected by adunega
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants