天蓬老师2017-04-18 10:33:47
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...