0xgaryy commited on
Commit
6c46e3c
·
1 Parent(s): 029b281

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,10 +9,10 @@ loaded_model = pickle.load(open("finalized_model.sav", 'rb'))
9
  def main():
10
  st.image('img.jpg')
11
  st.title("⚙️🔩 Engine prediction ⚙️🔩")
12
- st.warning("Our Machine Learning algorithm predicts whether the elements of a machine work consistently\n\n")
13
 
14
  with st.form(key='columns_in_form'):
15
- c1, c2, c3 = st.beta_columns(3)
16
  with c1:
17
  airTemperature = st.slider("Air temperature [K]", 0, 1500, 750)
18
  with c2:
@@ -23,7 +23,7 @@ def main():
23
  "Rotational speed [rpm]", 0, 1500, 750)
24
  submitButton1 = st.form_submit_button(label='Save')
25
  with st.form(key='columns_in_form2'):
26
- c1, c2, c3, c4 = st.beta_columns(4)
27
  with c1:
28
  toolWear = st.slider("Tool wear [min]", 0, 1500, 750)
29
  with c2:
 
9
  def main():
10
  st.image('img.jpg')
11
  st.title("⚙️🔩 Engine prediction ⚙️🔩")
12
+ # st.warning("Our Machine Learning algorithm predicts whether the elements of a machine work consistently\n\n")
13
 
14
  with st.form(key='columns_in_form'):
15
+ c1, c2, c3 = st.columns(3)
16
  with c1:
17
  airTemperature = st.slider("Air temperature [K]", 0, 1500, 750)
18
  with c2:
 
23
  "Rotational speed [rpm]", 0, 1500, 750)
24
  submitButton1 = st.form_submit_button(label='Save')
25
  with st.form(key='columns_in_form2'):
26
+ c1, c2, c3, c4 = st.columns(4)
27
  with c1:
28
  toolWear = st.slider("Tool wear [min]", 0, 1500, 750)
29
  with c2: