Rohit001 commited on
Commit
080c0ab
1 Parent(s): db57be2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ socket = SocketIO(app,async_mode="eventlet")
15
  # load model and labels
16
  np.set_printoptions(suppress=True)
17
  model = load_model(r"keras_model.h5", compile=False)
18
- class_names = open("/labels.txt", "r").readlines()
19
 
20
  def base64_to_image(base64_string):
21
  # Extract the base64 encoded binary data from the input string
 
15
  # load model and labels
16
  np.set_printoptions(suppress=True)
17
  model = load_model(r"keras_model.h5", compile=False)
18
+ class_names = open(r"labels.txt", "r").readlines()
19
 
20
  def base64_to_image(base64_string):
21
  # Extract the base64 encoded binary data from the input string