sahilsingla commited on
Commit
b2003ab
·
verified ·
1 Parent(s): 6f6c6f6

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. app.py +2 -0
  2. test_app.py +2 -35
app.py CHANGED
@@ -97,6 +97,8 @@ if submitted:
97
  response.raise_for_status() # Raise exception for bad status codes
98
  result = response.json()
99
  prediction = result.get("prediction", None)
 
 
100
  if prediction is not None:
101
  st.success(f"Predicted Sales: ${float(prediction):.2f}")
102
  else:
 
97
  response.raise_for_status() # Raise exception for bad status codes
98
  result = response.json()
99
  prediction = result.get("prediction", None)
100
+
101
+ st.error(payload)
102
  if prediction is not None:
103
  st.success(f"Predicted Sales: ${float(prediction):.2f}")
104
  else:
test_app.py CHANGED
@@ -1,38 +1,5 @@
1
- import altair as alt
2
- import numpy as np
3
- import pandas as pd
4
  import streamlit as st
5
 
6
- """
7
- # Welcome to test Streamlit!
8
- Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
9
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
10
- forums](https://discuss.streamlit.io).
11
- In the meantime, below is an example of what you can do with just a few lines of code:
12
- """
13
 
14
- num_points = st.slider("Number of points in spiral", 1, 20000, 1100)
15
- num_turns = st.slider("Number of turns in spiral", 1, 500, 31)
16
-
17
- indices = np.linspace(0, 1, num_points)
18
- theta = 2 * np.pi * num_turns * indices
19
- radius = indices
20
-
21
- x = radius * np.cos(theta)
22
- y = radius * np.sin(theta)
23
-
24
- df = pd.DataFrame({
25
- "x": x,
26
- "y": y,
27
- "idx": indices,
28
- "rand": np.random.randn(num_points),
29
- })
30
-
31
- st.altair_chart(alt.Chart(df, height=700, width=700)
32
- .mark_point(filled=True)
33
- .encode(
34
- x=alt.X("x", axis=None),
35
- y=alt.Y("y", axis=None),
36
- color=alt.Color("idx", legend=None, scale=alt.Scale()),
37
- size=alt.Size("rand", legend=None, scale=alt.Scale(range=[1, 150])),
38
- ))
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.title("SuperKart Sales Predictor")
 
 
 
 
 
 
4
 
5
+ st.write("This is a minimal Streamlit app deployed using Docker.")