CBHealth
CBHealth
y_train = to_categorical(y_train-1, nb_classes) y_test = to_categorical(y_test-1, nb_classes) source: https://github.com/rstudio/keras/issues/53 Good luck :-)
The code stops at this part: # Input tensor is the image image_tensor = detection_graph.get_tensor_by_name('image_tensor:0')
Problem was solved, because the export_inference_graph.py was updated in the tensorflow model zoo. I used this code now: # Copyright 2017 The TensorFlow Authors. All Rights Reserved. # # Licensed...