igormq / asr-study

Implementation of all-neural speech recognition systems using Keras and Tensorflow
MIT License
144 stars 58 forks source link

Issues on checkpoint save #3

Open robmsmt opened 7 years ago

robmsmt commented 7 years ago

File "/Users/rob/py27/lib/python2.7/site-packages/keras/engine/topology.py", line 2370, in get_config new_node_index = node_conversion_map[node_key] KeyError: 'labels_ib-0'

This is the same common error that saving / loading unusual graph shapes get

robmsmt commented 7 years ago

Managed to get it to save by forcing the tf.graph to be complete. I just added a custom loss_out lambda function that included the variables that weren't being used.

but now have issues getting it to load the save due to the loss=None

igormq commented 6 years ago

Are you using the keras-2 branch?