You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for the great work. I am trying to run the code available, I setup the environment and installed the necessary models but I have the following error:
KeyError: "The name 'input_images_1:0' refers to a Tensor which does not exist. The operation, 'input_images_1', does not exist in the graph."
Thank you for the great work. I am trying to run the code available, I setup the environment and installed the necessary models but I have the following error:
KeyError: "The name 'input_images_1:0' refers to a Tensor which does not exist. The operation, 'input_images_1', does not exist in the graph."
For this part of the file run_RingNet.py
def predict_dict(self, images): """ Runs the model with images. """ images_ip = self.graph.get_tensor_by_name(u'input_images_1:0') params = self.graph.get_tensor_by_name(u'add_2:0') verts = self.graph.get_tensor_by_name(u'Flamenetnormal_2/Add_9:0') feed_dict = { images_ip: images, } fetch_dict = { 'vertices': verts, 'parameters': params, } results = self.run(fetch_dict, feed_dict) tf.reset_default_graph() return
results``The text was updated successfully, but these errors were encountered: