Update app.py
Browse files
app.py
CHANGED
|
@@ -1,8 +1,9 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
import numpy as np
|
|
|
|
| 3 |
|
| 4 |
-
|
| 5 |
-
model =
|
| 6 |
|
| 7 |
def greet(img):
|
| 8 |
img = np.expand_dims(img, axis=0)
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
import numpy as np
|
| 3 |
+
from tensorflow import keras
|
| 4 |
|
| 5 |
+
|
| 6 |
+
model = keras.models.load_model("my_model")
|
| 7 |
|
| 8 |
def greet(img):
|
| 9 |
img = np.expand_dims(img, axis=0)
|