tcftrees commited on
Commit
ea95cc8
·
1 Parent(s): e20929a

Add application file

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -50,9 +50,9 @@ with gr.Blocks() as demo:
50
  """)
51
 
52
  with gr.Row():
53
- Nnv = gr.inputs.Textbox(label="Non-vocabulary Parameters", value=7*10**9)
54
- flops = gr.inputs.Textbox(label="FLOPs", placeholder="Optional (e.g. 7.05*10**21)")
55
- output_text = gr.outputs.Textbox(label='output')
56
  with gr.Row():
57
  btn = gr.Button("Compute the optimal vocabulary size")
58
 
 
50
  """)
51
 
52
  with gr.Row():
53
+ Nnv = gr.Textbox(label="Non-vocabulary Parameters", value=7*10**9)
54
+ flops = gr.Textbox(label="FLOPs", placeholder="Optional (e.g. 7.05*10**21)")
55
+ output_text = gr.Textbox(label='output')
56
  with gr.Row():
57
  btn = gr.Button("Compute the optimal vocabulary size")
58