rzdulc

Results 1 comments of rzdulc

I got it to work like this: ``` prediction = classifier.predict(np.array([test_data[0]], dtype=float), as_iterable=False) print("Predicted %d, Label: %d" % (prediction, test_labels[0])) ```