Mavs
Mavs
Is there somewhere a sklearn-like transformer that implements this in Python or should it be done from scratch?
Hi, the issue is fixed in #2839. I clarified the message and changed it from error to warning. The reason it should not be an error is because users can...
> and we also have to solve this problem of having a feature with only 1 occurrence and pycaret gives an error, because this feature is not the target. Can...
I fixed this error but my app is not launching correctly. @moezali1 can you try using the [change_engine_param_name](https://github.com/pycaret/pycaret/tree/change_engine_param_name) repo? Not sure what the error is now
@moezali1 That can't be because that code is no longer there. Are you using the [change_engine_param_name](https://github.com/pycaret/pycaret/tree/change_engine_param_name) repo?
Which version of pycaret are you using? You should install the pre-release version to use this parameter: `pip install --pre pycaret`
Running your example for classification yields `ValueError: Stratified train/test split is not implemented for shuffle=False` since you can't mix stratification (True by default) with shuffling=False. However, setting `data_split_shuffle=True` worked as...
I am a bit confused here. Why are you using pycaret.classification with time series data? Is date one of your features? What are you trying to predict? Secondly, if you...
I see. If the order of the rows matter I would not recommend using classification. The majority of the models don't take that into account. What do you think @ngupta23...
I agree with @ngupta23 and @Yard1. This is quite a bigger change than it may seem. I think it would be a good enhancement to the package but let's focus...