devendergarg14 commited on
Commit
4ee8a04
1 Parent(s): 448d9d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -172,7 +172,8 @@ def toggle_plot_options(show_options):
172
  return not show_options, gr.update(visible=not show_options)
173
 
174
  with gr.Blocks(theme=seafoam) as iface:
175
- gr.Markdown("# Interpolation App")
 
176
  gr.Markdown("Enter x and y values to see the interpolation graph. Choose the interpolation method using the radio buttons. Optionally, enter an x value (between min and max of input x values) to predict its corresponding y value. Note: Newton Forward and Backward methods require uniform x spacing.")
177
 
178
  show_options = gr.State(False)
 
172
  return not show_options, gr.update(visible=not show_options)
173
 
174
  with gr.Blocks(theme=seafoam) as iface:
175
+ #gr.Markdown("# Interpolation App")
176
+ gr.Makrdown("<h1 style="text-align:center;">Interpolation App</h1>")
177
  gr.Markdown("Enter x and y values to see the interpolation graph. Choose the interpolation method using the radio buttons. Optionally, enter an x value (between min and max of input x values) to predict its corresponding y value. Note: Newton Forward and Backward methods require uniform x spacing.")
178
 
179
  show_options = gr.State(False)