Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import tensorflow as tf
|
|
4 |
|
5 |
|
6 |
|
7 |
-
interpreter = tf.lite.Interpreter(model_path=
|
8 |
interpreter.allocate_tensors()
|
9 |
input_details = interpreter.get_input_details()
|
10 |
output_details = interpreter.get_output_details()
|
|
|
4 |
|
5 |
|
6 |
|
7 |
+
interpreter = tf.lite.Interpreter(model_path="converted_dog_model.tflite")
|
8 |
interpreter.allocate_tensors()
|
9 |
input_details = interpreter.get_input_details()
|
10 |
output_details = interpreter.get_output_details()
|