diff options
| -rw-r--r-- | lenet.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| @@ -144,6 +144,7 @@ def train_classifier(x_train, y_train, x_val, y_val, batch_size=128, epochs=100,    return model   def plot_probas(model, x_test, y_true): +    y_true = np.argmax(y_true, axis=1)      x_test = np.pad(x_test, ((0,0),(2,2),(2,2),(0,0)), 'constant')      probas = model.predict(x_test)      skplt.metrics.plot_roc(y_true, probas) | 
