tykiww commited on
Commit
8c9400b
·
verified ·
1 Parent(s): 898597c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -65,20 +65,18 @@ def main():
65
  # Hyperparameters (allow selection, but hide in accordion.)
66
  # gr.Accordion('label')
67
 
68
-
69
- ##### Model Outputs #####
70
 
71
  ##### Execution #####
72
 
73
  # Setup button
74
  tune_btn = gr.Button("Start Fine Tuning")
 
 
75
  # Execute button
76
  tune_btn.click(fn=greet,
77
  inputs=[model_name, inject_prompt, dataset_predefined],
78
  outputs=output)
79
- # Text output (for now)
80
- output = gr.Textbox(label="Output")
81
-
82
  # Launch baby
83
  demo.launch()
84
 
 
65
  # Hyperparameters (allow selection, but hide in accordion.)
66
  # gr.Accordion('label')
67
 
68
+
 
69
 
70
  ##### Execution #####
71
 
72
  # Setup button
73
  tune_btn = gr.Button("Start Fine Tuning")
74
+ # Text output (for now)
75
+ output = gr.Textbox(label="Output")
76
  # Execute button
77
  tune_btn.click(fn=greet,
78
  inputs=[model_name, inject_prompt, dataset_predefined],
79
  outputs=output)
 
 
 
80
  # Launch baby
81
  demo.launch()
82