cryptocalypse commited on
Commit
1c900c5
·
verified ·
1 Parent(s): cc62867

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -24,6 +24,8 @@ with gr.Blocks(title="PSYCHOHISTORY") as app:
24
 
25
  with gr.Row():
26
  mem_results = gr.JSON(label="Predicted Futures") # Futures predicted
 
 
27
  #counter_results = gr.JSON(label="Counter Activity") # Wich activities are against the event
28
  #dark_results = gr.JSON(label="Dark Forces") #Who makes not happend
29
  btn_search.click(
@@ -34,7 +36,7 @@ with gr.Blocks(title="PSYCHOHISTORY") as app:
34
  mem_results.change(
35
  psychohistory.main,
36
  inputs=[mem_results],
37
- outputs=[img_output,img_output2,img_output3]
38
  )
39
 
40
  if __name__ == "__main__":
 
24
 
25
  with gr.Row():
26
  mem_results = gr.JSON(label="Predicted Futures") # Futures predicted
27
+ mem_results2 = gr.JSON(label="Radians Slow Path")
28
+ mem_results3 = gr.JSON(label="Radians Best Path")
29
  #counter_results = gr.JSON(label="Counter Activity") # Wich activities are against the event
30
  #dark_results = gr.JSON(label="Dark Forces") #Who makes not happend
31
  btn_search.click(
 
36
  mem_results.change(
37
  psychohistory.main,
38
  inputs=[mem_results],
39
+ outputs=[img_output,img_output2,img_output3,mem_results2,mem_results3]
40
  )
41
 
42
  if __name__ == "__main__":