You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to predict with this pipeline with new data, for instance pipeline.predict(X_test), but I get the follow error message: AttributeError: 'EstimatorTransformer' object has no attribute 'predict'. Is there any way to use predict in pipeline? This would help alot.
The text was updated successfully, but these errors were encountered:
Hey @PolarsDude thanks for the question. EstimatorTransformer turns any estimator to a transformer component, therefore you can call pipeline.transform after fitting.
If you want to use .predict, then this might not be the component you are looking for or you need to follow it with an estimator.
Hi
Consider the following pipeline (from examples)
I want to predict with this pipeline with new data, for instance pipeline.predict(X_test), but I get the follow error message: AttributeError: 'EstimatorTransformer' object has no attribute 'predict'. Is there any way to use predict in pipeline? This would help alot.
The text was updated successfully, but these errors were encountered: