-
Notifications
You must be signed in to change notification settings - Fork 112
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
LiCSBAS_plot_ts.py -i TS_GEOC_CACOS/cum_filt.h5 #250
Comments
That bug was already fixed in LiCSBAS2: yumorishita/LiCSBAS2@1560f38#diff-377f64b0637de03d288a5eb69290a739c2cbfb382da7a96d1d860841959567f1L773-R776 Please use LiCSBAS2 or apply the same modification to your source code in LiCSBAS. |
Hi Prof Yumorishita LiCSBAS_plot_ts.py -i TS_GEOCml1GACOSmaskclip/cum_filt.h5 Reading TS_GEOCml1GACOSmaskclip/cum_filt.h5 |
What is the version of matplotlib? Please try downgrading it to e.g. 3.3. |
I guess you have not successfully finished step16. |
Hi @yumorishita I am using this software for a long time. I did not get any error like this. Suddenly today I got this error. |
Maybe you did not downgrade the matplotlib in your "licsbas" venv. |
Hi @yumorishita |
Please see #250 (comment) |
Hi Prof Yumorishita, LiCSBAS_plot_ts.py ver1.14.0 20230219 Y. Morishita LiCSBAS_plot_ts.py -i TS_GEOCml1GACOSmaskclip/cum_filt.h5 Nothing appears. How do I resolve this? Thank you Prof. |
You should not downgrade matplotlib if you use LiCSBAS2. |
I have upgraded matplotlib again. but I found problems like the following and nothing appears: LiCSBAS_plot_ts.py ver1.14.0 20230219 Y. Morishita Reading TS_GEOCml1GACOSmaskclip/cum_filt.h5 Thank you Prof |
There is no error. |
It literally means that TS_GEOCml1clip/cum_filt.h5 does not exist. You must finish LiCSBAS processing first. |
Hello, |
Please try #40 (comment) |
It is not a problem and you can ignore it. |
But i can't plot it |
It is because of your environmental setting, not slc.mli. |
|
Have you solved it? I have the same problem as you |
Hi Prof @yumorishita Do you have any suggestions? |
I have never seen such an error. Please upload the full log of the processing. |
this the log |
It seems to be the same as DeepLabCut/DeepLabCut#2599. Please donwgrade matplotlib to <3.7.0 for the time being. |
Thank you sir for your help and suggestions |
but on this comment, if use licsbas2 should not downgrade matplotlib. |
matplotlib 3.6.0 would be acceptable. How did you install it? conda? pip? |
'Traceback (most recent call last):
File "/mnt/rfchen/licSBSA/LiCSBAS-master/bin/LiCSBAS_plot_ts.py", line 890, in
printcoords(lastevent)
File "/mnt/rfchen/licSBSA/LiCSBAS-master/bin/LiCSBAS_plot_ts.py", line 773, in printcoords
ii = np.int(np.round(event.ydata))
^^^^^^
File "/mnt/rfchen/tools/miniconda3/envs/licsbas/lib/python3.11/site-packages/numpy/init.py", line 305, in getattr
raise AttributeError(former_attrs[attr])
AttributeError: module 'numpy' has no attribute 'int'.
np.int
was a deprecated alias for the builtinint
. To avoid this error in existing code, useint
by itself. Doing this will not modify any behavior and is safe. When replacingnp.int
, you may wish to use e.g.np.int64
ornp.int32
to specify the precision. If you wish to review your current use, check the release note link for additional information.The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations. Did you mean: 'inf'? '
It prompted me to lower the version of numpy, but after I did, I found that the lower version of numpy was not compatible with many other packages in the library
'RuntimeError: module compiled against API version 0x10 but this version of numpy is 0xf . Check the section C-API incompatibility at the Troubleshooting ImportError section at https://numpy.org/devdocs/user/troubleshooting-importerror.html#c-api-incompatibility for indications on how to solve this problem '
How should I solve this problem?
The text was updated successfully, but these errors were encountered: