kevinhug commited on
Commit
18fddd0
·
1 Parent(s): a4a4bd1
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -286,15 +286,15 @@ The trader can set their price to buy at the right price at the right time, with
286
 
287
 
288
  with gr.Tab("Portfolio Optimization"):
289
- in_p_cost = gr.Textbox(placeholder="4 30 2 3 5",
290
  label="Cost",
291
  info="cost for the asset"
292
  )
293
- in_p_prob = gr.Textbox(placeholder="0.3 0.4 0.5 0.6 0.7",
294
  label="Probabilities",
295
  info="P(success) for the asset"
296
  )
297
- in_p_its = gr.Textbox(placeholder="10",
298
  label="Number of Iteration",
299
  info="number of trial for optimal"
300
  )
 
286
 
287
 
288
  with gr.Tab("Portfolio Optimization"):
289
+ in_p_cost = gr.Textbox(value="4 30 2 3 5",
290
  label="Cost",
291
  info="cost for the asset"
292
  )
293
+ in_p_prob = gr.Textbox(value="0.3 0.4 0.5 0.6 0.7",
294
  label="Probabilities",
295
  info="P(success) for the asset"
296
  )
297
+ in_p_its = gr.Textbox(value="10",
298
  label="Number of Iteration",
299
  info="number of trial for optimal"
300
  )