zerenkin

Results 1 issues of zerenkin

I tried to use code below to plot confusion matrix: print('Final test accuracy = %.1f%% (N=%d)' % (test_accuracy * 100, len(test_bottlenecks))) confusion = tf.confusion_matrix(labels=test_ground_truth, predictions=predictions, num_classes=class_count) confusion_matrix_np = sess.run(confusion, feed_dict={bottleneck_input:...