tykiww commited on
Commit
c5cebfc
·
verified ·
1 Parent(s): e751c8d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -69,15 +69,11 @@ def main():
69
 
70
  sftparams = conf['model']['sft']
71
  # accordion container content
72
- #gr.Markdown("### PEFT Parameters (json)")
73
  dict_string = json.dumps(dict(conf['model']['peft']), indent=4)
74
- peft = gr.Textbox(label="PEFT Parameters", value=dict_string)
75
 
76
-
77
- gr.Markdown("### PEFT Parameters")
78
- gr.Markdown("List of items")
79
  dict_string = json.dumps(dict(conf['model']['sft']), indent=4)
80
- peft = gr.Textbox(label="PEFT Parameters", value=dict_string)
81
 
82
  ##### Execution #####
83
 
 
69
 
70
  sftparams = conf['model']['sft']
71
  # accordion container content
 
72
  dict_string = json.dumps(dict(conf['model']['peft']), indent=4)
73
+ peft = gr.Textbox(label="PEFT Parameters (json)", value=dict_string)
74
 
 
 
 
75
  dict_string = json.dumps(dict(conf['model']['sft']), indent=4)
76
+ peft = gr.Textbox(label="SFT Parameters (json)", value=dict_string)
77
 
78
  ##### Execution #####
79