CelestinoXP

Results 112 comments of CelestinoXP

After edit file final_model_api.py, remove identation and run notebook cell to run file, i receive new error: Traceback (most recent call last): File "C:\...\final_model_api.py", line 3, in from pycaret.MLUsecase.CLASSIFICATION import...

@ngupta23 create_api maybe work on pycaret 2.3.x, however pycaret 3.x code as changed but create_api command needs changes too. Can you have a look on that? I found some issues...

I tried to test the create_app command and it also doesn't work in pycaret 3. It doesn't assume the features that pycaret itself created, like the year, month, day extracted...

Reproduced in August 15th meeting...where is the meeting? Live on Youtube?

Hi, are you using pycaret 2.3.10? i think it's problem from scikit-learn, because pycaret uses "old" 0.24.2 version of scikit-learn. Scikit-learn have a lot of bugfixes since 0.24.2. I think...

any chance "cuml" will work on windows? As i know cuml can´t be installed in windows...

I think you have an error in your reproducible code... this line: `tuned_lr = tune_model(lr1,optimize = 'F1',return_train_score=True)` you sould change "lr1" to "lr" like this `tuned_lr = tune_model(lr,optimize = 'F1',return_train_score=True)`...

You have to provide more information. Please paste the output of `from pycaret import show_versions; show_versions()` If possible, provide your code.

I found possible problem. you use python 3.7 and the problem could come from scikit-learn. You must create a new environment with python 3.8 or python 3.9.

> @celestinoxp OK. então qualquer um que esteja usando o Pycaret mais recente deve usar estritamente o python 3.8 e superior? Yes. however you should create a new clean environment...