Update app.py
Browse files
app.py
CHANGED
|
@@ -6,7 +6,7 @@ import os
|
|
| 6 |
from huggingface_hub import InferenceClient
|
| 7 |
|
| 8 |
# 1. Load the TFLite Model using tensorflow's interpreter
|
| 9 |
-
interpreter = tf.lite.Interpreter(model_path="
|
| 10 |
interpreter.allocate_tensors()
|
| 11 |
input_details = interpreter.get_input_details()
|
| 12 |
output_details = interpreter.get_output_details()
|
|
|
|
| 6 |
from huggingface_hub import InferenceClient
|
| 7 |
|
| 8 |
# 1. Load the TFLite Model using tensorflow's interpreter
|
| 9 |
+
interpreter = tf.lite.Interpreter(model_path="skin_model.tflite")
|
| 10 |
interpreter.allocate_tensors()
|
| 11 |
input_details = interpreter.get_input_details()
|
| 12 |
output_details = interpreter.get_output_details()
|