天蓬老师2017-04-18 10:33:47
這個是keras的問題,修改keras/backend/tensorflow_backend.py
try:
import tf.contrib.ctc as tfctc
except ImportError:
import tf.core.util.ctc as tfctc
改為
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...