hwberry2 commited on
Commit
a2bf36a
·
1 Parent(s): 4f7405e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ with gr.Blocks() as demo:
40
 
41
 
42
  model.fit(x_train, y_train, epochs=5)
43
- test_loss, test_acc = model.evaluate(x_test, y_test, verbose=2)]
44
 
45
  print "Test accuracy: ", test_acc
46
 
 
40
 
41
 
42
  model.fit(x_train, y_train, epochs=5)
43
+ test_loss, test_acc = model.evaluate(x_test, y_test, verbose=2)
44
 
45
  print "Test accuracy: ", test_acc
46