jucamohedano commited on
Commit
c81bfa5
·
1 Parent(s): 95e1228

update widget name

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -144,7 +144,7 @@ with gr.Blocks(title=title) as demo:
144
 
145
  with gr.Row():
146
  max_iter = gr.Slider(minimum=100, maximum=2000, step=100, value=1000,
147
- label = "Maximum number of iterations to find the optimal hyperplane")
148
  param_C = gr.Number(value=1,
149
  label = "Regularization parameter C",
150
  # info="When C is smal the regularization effect is stronger. "
@@ -162,7 +162,7 @@ with gr.Blocks(title=title) as demo:
162
 
163
  with gr.Row():
164
  max_iter2 = gr.Slider(minimum=100, maximum=2000, step=100, value=1000,
165
- label = "Maximum number of iterations to find the optimal hyperplane")
166
  param_C2 = gr.Number(value=100,
167
  label = "Regularization parameter C"
168
  )
 
144
 
145
  with gr.Row():
146
  max_iter = gr.Slider(minimum=100, maximum=2000, step=100, value=1000,
147
+ label = "Max. number of iterations")
148
  param_C = gr.Number(value=1,
149
  label = "Regularization parameter C",
150
  # info="When C is smal the regularization effect is stronger. "
 
162
 
163
  with gr.Row():
164
  max_iter2 = gr.Slider(minimum=100, maximum=2000, step=100, value=1000,
165
+ label = "Max. number of iterations")
166
  param_C2 = gr.Number(value=100,
167
  label = "Regularization parameter C"
168
  )