alok94 commited on
Commit
b02fda4
·
1 Parent(s): 609cc03

gradio version

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. requirements.txt +1 -1
app.py CHANGED
@@ -270,7 +270,6 @@ def predict_digit(image):
270
  img_array = tf.expand_dims(img_array, 0)
271
  print(img_array)
272
 
273
-
274
 
275
  predictions = loaded_model.predict(img_array)
276
  print(predictions)
@@ -404,5 +403,6 @@ with gr.Blocks(css=css) as demo:
404
 
405
 
406
  demo.launch(debug=True)
 
407
 
408
 
 
270
  img_array = tf.expand_dims(img_array, 0)
271
  print(img_array)
272
 
 
273
 
274
  predictions = loaded_model.predict(img_array)
275
  print(predictions)
 
403
 
404
 
405
  demo.launch(debug=True)
406
+
407
 
408
 
requirements.txt CHANGED
@@ -6,7 +6,7 @@ scikit_learn<1.3.0
6
  seaborn==0.12.2
7
 
8
 
9
- gradio==3.48
10
 
11
 
12
 
 
6
  seaborn==0.12.2
7
 
8
 
9
+ gradio==3.48.0
10
 
11
 
12