ValueError in classification task with regression models
Created by: aPovidlo
ValueError: Operation svr can not be used as a part of TaskTypesEnum.classification
This error was raised when the pipeline contains regression models, such as SVR, catboostreg, etc. A possible solution is checking class decomposes
operation exist in the pipeline and TaskTypesEnum.classification
, then reg model can be used after this operation.