cannot import name 'conda' from 'keras.utils'
时间: 2023-09-23 13:08:41 浏览: 63
conda-forge.github.io:conda-forge网站
The error message suggests that there is an issue with importing the 'conda' module from the 'keras.utils' package. However, the 'conda' module is not part of the 'keras.utils' package, so it cannot be imported from there.
It is possible that there is a typo or incorrect path in the import statement causing this error. Double-check the import statement and make sure it is correct. It might also be helpful to check if the 'conda' module is installed and included in the Python path.
阅读全文