Priyanka-Kumavat-At-TE commited on
Commit
f9426a4
·
1 Parent(s): 3d06d5d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -118,19 +118,30 @@ if st.button("Predict"):
118
 
119
 
120
  st.write("""Features Used:
 
121
  The following are the input Varibles from the End user which needs to be enter, and then the application will predict whether
122
  the particular Product has the chances of having Backorder or not.
 
123
  1: Product: Name of the product.
 
124
  2: Lead_time: The average number of days taken to deliver the product after placing the order.
 
125
  3: Demand: The number of units of the product demanded during a specific time period.
 
126
  4: In_stock: The number of units of the product currently available in the inventory.
 
127
  5: Price: The selling price of the product.
 
128
  6: Advertising: The amount spent on advertising the product during a specific time period.
 
129
  7: Weather: Weather condition during a specific time period that could affect the demand for the product.
 
130
  In a retail scenario, weather could be measured in terms of temperature in Fahrenheit or Celsius,
131
  and since temperature affects the demand for products such as clothing, food, and beverages. It is also one of the important factor
132
  to be considered for causal analysis of Supply chain management.
 
133
  Target Column/Prediction:
 
134
  Backordered: A binary variable indicating whether the product was backordered (1) or not (0) during a specific
135
  time period. This is the target variable that we want to predict""")
136
 
 
118
 
119
 
120
  st.write("""Features Used:
121
+
122
  The following are the input Varibles from the End user which needs to be enter, and then the application will predict whether
123
  the particular Product has the chances of having Backorder or not.
124
+
125
  1: Product: Name of the product.
126
+
127
  2: Lead_time: The average number of days taken to deliver the product after placing the order.
128
+
129
  3: Demand: The number of units of the product demanded during a specific time period.
130
+
131
  4: In_stock: The number of units of the product currently available in the inventory.
132
+
133
  5: Price: The selling price of the product.
134
+
135
  6: Advertising: The amount spent on advertising the product during a specific time period.
136
+
137
  7: Weather: Weather condition during a specific time period that could affect the demand for the product.
138
+
139
  In a retail scenario, weather could be measured in terms of temperature in Fahrenheit or Celsius,
140
  and since temperature affects the demand for products such as clothing, food, and beverages. It is also one of the important factor
141
  to be considered for causal analysis of Supply chain management.
142
+
143
  Target Column/Prediction:
144
+
145
  Backordered: A binary variable indicating whether the product was backordered (1) or not (0) during a specific
146
  time period. This is the target variable that we want to predict""")
147