Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,8 @@ import gradio as gr
|
|
3 |
import tensorflow as tf
|
4 |
import os
|
5 |
import numpy as np
|
|
|
|
|
6 |
|
7 |
model = tf.keras.models.load_model('model.hdf5')
|
8 |
|
|
|
3 |
import tensorflow as tf
|
4 |
import os
|
5 |
import numpy as np
|
6 |
+
import base64
|
7 |
+
from io import BytesIO
|
8 |
|
9 |
model = tf.keras.models.load_model('model.hdf5')
|
10 |
|