keras安装好了,tensorflow也安装好了但运行的时候出现这个问题,有人以前遇到过吗?能帮忙解决一下吗?谢谢了
业精于勤,荒于嬉;行成于思,毁于随。
This is a problem with keras, modify keras/backend/tensorflow_backend.py
try: import tf.contrib.ctc as tfctc except ImportError: import tf.core.util.ctc as tfctc
changed to
try: import tf.contrib.ctc as tfctc except ImportError: import tf.core.util.ctc as tfctc finally: tf.ctc = tfctc del tfctc
via https://github.com/fchollet/k...
Please use anaconda
This is a problem with keras, modify keras/backend/tensorflow_backend.py
changed to
via https://github.com/fchollet/k...
Please use anaconda