-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scipy: if _is_safe_size(n): #5
Comments
Hello, What version of scipy are you using, and do you have a full traceback of the issue when you run the code? |
I use scipy 1.3.0 but I had lot of problem with scipy like No module named.... |
I've been using pyfftw for the FFT backend. For scipy, if you have the full traceback of all your issues, I can take a look. Right now I'm not sure what the specific problems are. |
So at the bigging I use the last scipy (1.6.0) from . import morlet I changed in the file scipy.misc by scipy.special _from .fourier import clean_scipy_cache I changed by from scipy.fftpack import fft as sff And I saw your last message that you use pyfftw so i installed this package and it works. |
The issue with scipy is that they removed some functions in later versions. I'll get around to fixing that today so that you can still use scipy as the fft backend if you want. But in general I do prefer to use pyfftw. |
I think the two pull requests I proposed will fix these issues. But you should update the home page example to also |
@jeremyNG-lab The errors should be gone now--let us know how it looks on your system |
Without the FFT backend I have the same issu: File "....\anaconda3\lib\site-packages\ghost\sigtools\fourier.py", line 11, in clean_scipy_cache |
The master branch has been changed. Make sure you pip install it again? |
I redownload and reinstall the package. But with scipy it didn't work, the same issue. |
This might have something to do with scipy's legacy code. Try it now? EDIT: i.e. run |
INFO:ghost:'timestamps' not passed in; generating from data File "", line 2, in File "......\anaconda3\lib\site-packages\ghost\formats\preprocessing.py", line 187, in wrap_function File "......\anaconda3\lib\site-packages\ghost\wave\transforms.py", line 224, in transform File ".......\anaconda3\lib\site-packages\ghost\wave\transforms.py", line 203, in wavelet_conv File ".....\anaconda3\lib\site-packages\ghost\sigtools\convolution.py", line 81, in fastconv_scipy File ".....\anaconda3\lib\site-packages\ghost\sigtools\fourier.py", line 11, in clean_scipy_cache AttributeError: 'function' object has no attribute 'destroy_zfft_cache' |
Those two lines above no longer exist. You need to |
(base) C:....>pip3 install git+https://github.com/nelpy/ghost.git I did it I launched the script and I have the same error |
If you instead install like so:
and run your script, do you get the same error? If you still have the error, try exporting your environment by running |
Yes it works. But with pyfftw it works everytime |
Great! It should work fine on either scipy or fftw now. Let me know if you run into any further issues. If there aren't any related ones in the next couple of days, I'll close this one out. |
Hi,
This is my code with Accz and Time are array of float:
cwt = ContinuousWaveletTransform(wavelet= morse.Morse())
CPEF=cwt.transform(data =Accz, fs =1000, timestamps =Time, freq_limits =[0,300])
And the answer:
File ".......\lib\site-packages\scipy\fftpack\basic.py", line 87, in fft
if _is_safe_size(n):
TypeError: c2c() missing 1 required keyword-only argument: 'plan'
The text was updated successfully, but these errors were encountered: