221 questions
0
votes
2
answers
75
views
Issues getting PyCaret/Fugue to work with DASK Backend
I am trying to use PyCaret with Fugue for a DASK backend and I'm running into an issue.
Using the following:
pycaret 3.3.2
fugue 0.9.1
dask ...
0
votes
0
answers
22
views
Issues getting PyCaret/Fugue to work with Spark Backend
I am trying to use PyCaret with Fugue for a spark backend and I'm running into some issues with getting everything to work properly.
I can run a PyCaret experiment using spark as a back end if my ...
0
votes
0
answers
50
views
Univariate forecast with 1 exogenous variable - not forecasting future values
I am trying to forecast the variable "Recieved_Qty_Component" on a monthly time scale, with 1 exogenous variable "Aggregate_FinalGoodsDemand" using pycaret.time_series
I have the ...
0
votes
0
answers
46
views
The Profile attribute does not work from the PyCaret Setup function
The Profile attribute does not work from the PyCaret Setup function. When I run the code it appears
import pycaret
pycaret.__version__
output '3.3.2'
ClassificationSetup = setup(data = data, target = ...
0
votes
0
answers
128
views
sktime and pycaret conflict: AttributeError: 'NoneType' object has no attribute 'copy'
I'm trying to make a pull-request to pycaret support the latest sktime, but I have an error that I can´t fix... I don´t know where the mistake in the code...
I tried to contact the pycaret and sktime ...
0
votes
1
answer
139
views
F2 score pycaret
I want to add the metric F2 score in pycaret but it's not working when I run the column F2 is 0 but I tried without pycaret and it worked.
from sklearn.metrics import make_scorer, fbeta_score
def ...
0
votes
0
answers
86
views
facing error: no module pycaret.utils.generic while executing pycaret.classification import *
PyCaret is having lots of issue. python 3.8 support PyCaret versions. I am using PyCaret 2.3.6.
It is compatible with numpy version lesser than 1.20 . I am using PyCaret 2.3.6. and Numpy 1.19.5 in ...
0
votes
0
answers
283
views
How should I use custom models in PyCaret?
I am a newbie in PyCaret.
When I was doing experiments on time series forecasting, the library I used to compare and create models was the latest PyCaret.
When thinking of using the LSTM algorithm for ...
1
vote
0
answers
237
views
ERROR: from pycaret.classification import * in google colab
I am trying to use pycaret in google colab.
Installed:
pip install pycaret[mlops]
But when I try to import
from pycaret.classification import *
I am getting this error:
------------------------------...
0
votes
1
answer
648
views
How to get the second best model parameter using pycaret?
This is my code on google collab
# Import library
from pycaret.classification import *
exp_clf = setup(data, target='target', normalize=True)
best_model = compare_models()
And this is the result
...
0
votes
1
answer
532
views
Pycaret 3.3.0 compare_models() show zeros for all models AUC
During evaluation of the model using compare_model(). All AUCs are zero.
This output of Pycaret 3.3.0 is weird. what's the reason for that?
[1]: https://i.sstatic.net/qm2ZT.png
0
votes
1
answer
238
views
How do I get column names of a model created in PyCaret
I am trying to create a PyCaret Model
# load dataset
from pycaret.datasets import get_data
insurance = get_data('insurance')
# init environment
from pycaret.regression import *
r1 = setup(insurance, ...
3
votes
3
answers
15k
views
ImportError - Unable to Import 'interp' from SciPy Module
I encountered an ImportError while attempting to import PyCaret's classification module:
from pycaret.classification import*
ImportError: cannot import name 'interp' from 'scipy'
This error occurs ...
0
votes
1
answer
279
views
Running setup works in jupyter lab but not in vscode debug environment, although using same python path
I am running this code in my jupyterlab and in vscode, it works in jupyterlab but does not in vscode. The error appears in the setup function of pycaret. This is my code:
from pycaret.regression(.oop) ...
1
vote
1
answer
725
views
import issue with pycaret library in juypter notebook in anaconda environment in mac OS
Encountered issue shown in the following section during pycaret library import in locally installed jupyter notebook in Anaconda Navigator 2.5.1 in Mac OS 10.13.6, python 3.8 environment. Error stack ...