coredipper commited on
Commit
09e91a2
·
verified ·
1 Parent(s): 32493ef

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -123,13 +123,13 @@ def _run_lifecycle(max_ops, juv_t, adol_t, mat_t):
123
 
124
 
125
  def build_app():
126
- with gr.Blocks(title="Operon Developmental Staging", theme=gr.themes.Base()) as demo:
127
  gr.Markdown("# Operon Developmental Staging\nLifecycle progression, critical periods, and capability gating.")
128
 
129
- max_ops = gr.Slider(10, 500, value=100, step=10, label="Max Operations")
130
- juv = gr.Slider(1, 50, value=10, step=1, label="Juvenile Threshold (%)")
131
- adol = gr.Slider(10, 80, value=35, step=5, label="Adolescent Threshold (%)")
132
- mat = gr.Slider(30, 95, value=70, step=5, label="Mature Threshold (%)")
133
  btn = gr.Button("Run Lifecycle")
134
  out = gr.HTML()
135
  btn.click(_run_lifecycle, inputs=[max_ops, juv, adol, mat], outputs=[out])
 
123
 
124
 
125
  def build_app():
126
+ with gr.Blocks(title="Operon Developmental Staging") as demo:
127
  gr.Markdown("# Operon Developmental Staging\nLifecycle progression, critical periods, and capability gating.")
128
 
129
+ max_ops = gr.Slider(minimum=10, maximum=500, value=100, step=10, label="Max Operations")
130
+ juv = gr.Slider(minimum=1, maximum=50, value=10, step=1, label="Juvenile Threshold (%)")
131
+ adol = gr.Slider(minimum=10, maximum=80, value=35, step=5, label="Adolescent Threshold (%)")
132
+ mat = gr.Slider(minimum=30, maximum=95, value=70, step=5, label="Mature Threshold (%)")
133
  btn = gr.Button("Run Lifecycle")
134
  out = gr.HTML()
135
  btn.click(_run_lifecycle, inputs=[max_ops, juv, adol, mat], outputs=[out])