Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,9 @@ import streamlit as st
|
|
5 |
|
6 |
warnings.simplefilter("ignore", UserWarning)
|
7 |
|
8 |
-
|
|
|
|
|
9 |
|
10 |
st.title("Retail Anomaly")
|
11 |
st.write(""" An anomaly (also known as an outlier) is when something happens that is outside of the norm, when it stands out or deviates from what is expected.
|
|
|
5 |
|
6 |
warnings.simplefilter("ignore", UserWarning)
|
7 |
|
8 |
+
model_path = "ThirdEyeData/Retail-Anomaly"
|
9 |
+
|
10 |
+
MODEL = pickle.load(open('model_path','rb'))
|
11 |
|
12 |
st.title("Retail Anomaly")
|
13 |
st.write(""" An anomaly (also known as an outlier) is when something happens that is outside of the norm, when it stands out or deviates from what is expected.
|