Alex

Results 4 comments of Alex

I get same error, could you give any solution?@AlgorithmicIntelligence @carvendy @nothinglo

I have solved this problem and run normally, but have you made this network loss converged as your process?

Hi @zhuoruiyang I changed like this: try: checkpoint=tf.train.latest_checkpoint(output_file) saver.restore(sess, checkpoint) except: variables=tf.global_variables() reader=pywrap_tensorflow.NewCheckpointReader(model_path) var_keep_dic=reader.get_variables_to_shape_map() variables_to_restore = [] for v in variables: if v.name.split(':')[0] in var_keep_dic: variables_to_restore.append(v) restorer = tf.train.Saver(variables_to_restore) restorer.restore(sess,...

@zhuoruiyang from tensorflow.python import pywrap_tensorflow