saritha5 commited on
Commit
0b88736
·
1 Parent(s): d8f96f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,6 +29,6 @@ def prediction(price_max,price_step,policy_net):
29
  plt.bar(price_grid, Q_s.detach().numpy(), color='crimson', width=6, alpha=0.8)
30
  plt.show()
31
  st.header('Enter the Spectification')
32
- max_value = st.input_number('Enter the Maximun Value of Price')
33
- step = st.input_number('Enter the Price step')
34
  prediction(max_value,step,pc2)
 
29
  plt.bar(price_grid, Q_s.detach().numpy(), color='crimson', width=6, alpha=0.8)
30
  plt.show()
31
  st.header('Enter the Spectification')
32
+ max_value = st.number_input('Enter the Maximun Value of Price')
33
+ step = st.number_input('Enter the Price step')
34
  prediction(max_value,step,pc2)