analytics
Browse files
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(
|
290 |
label="Cost",
|
291 |
info="cost for the asset"
|
292 |
)
|
293 |
-
in_p_prob = gr.Textbox(
|
294 |
label="Probabilities",
|
295 |
info="P(success) for the asset"
|
296 |
)
|
297 |
-
in_p_its = gr.Textbox(
|
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 |
)
|