rasmodev commited on
Commit
e6babe8
·
verified ·
1 Parent(s): f767b5a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ with col2:
40
  input_data['month'] = st.slider("Month", 1, 12, value=6)
41
  input_data['year'] = st.number_input("Year", 2018, 2020, value=2020)
42
 
43
- # Create a button to make a prediction
44
  if st.button("Predict"):
45
  # Feature Scaling
46
  numerical_cols = ['day', 'month', 'year', 'shop_id', 'item_id', 'item_price', 'item_category_id']
 
40
  input_data['month'] = st.slider("Month", 1, 12, value=6)
41
  input_data['year'] = st.number_input("Year", 2018, 2020, value=2020)
42
 
43
+ # Create a button to predict
44
  if st.button("Predict"):
45
  # Feature Scaling
46
  numerical_cols = ['day', 'month', 'year', 'shop_id', 'item_id', 'item_price', 'item_category_id']