Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,9 @@
|
|
1 |
-
import os
|
2 |
import gradio as gr
|
3 |
import matplotlib.pyplot as plt
|
4 |
import numpy as np
|
5 |
import hopsworks
|
6 |
from tensorflow.keras.models import load_model
|
7 |
-
from
|
8 |
from sklearn.preprocessing import MinMaxScaler
|
9 |
|
10 |
name_to_ticker = {
|
@@ -116,4 +115,4 @@ interface = gr.Interface(
|
|
116 |
|
117 |
# Launch the app
|
118 |
if __name__ == "__main__":
|
119 |
-
interface.launch()
|
|
|
|
|
1 |
import gradio as gr
|
2 |
import matplotlib.pyplot as plt
|
3 |
import numpy as np
|
4 |
import hopsworks
|
5 |
from tensorflow.keras.models import load_model
|
6 |
+
from inference_data_pipeline import InferenceDataPipeline
|
7 |
from sklearn.preprocessing import MinMaxScaler
|
8 |
|
9 |
name_to_ticker = {
|
|
|
115 |
|
116 |
# Launch the app
|
117 |
if __name__ == "__main__":
|
118 |
+
interface.launch()
|