Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ from tensorflow.keras.models import load_model
|
|
2 |
from tensorflow.keras.initializers import Orthogonal
|
3 |
from tensorflow.keras.utils import CustomObjectScope
|
4 |
from tensorflow.keras.layers import LSTM
|
|
|
5 |
|
6 |
lstm_layer = LSTM(64, return_sequences=True, time_major=False)
|
7 |
|
|
|
2 |
from tensorflow.keras.initializers import Orthogonal
|
3 |
from tensorflow.keras.utils import CustomObjectScope
|
4 |
from tensorflow.keras.layers import LSTM
|
5 |
+
import gradio as gr
|
6 |
|
7 |
lstm_layer = LSTM(64, return_sequences=True, time_major=False)
|
8 |
|