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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -171,7 +171,7 @@ def interpolate_and_plot(x_input, y_input, x_predict, method, plot_title, x_labe
171
  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
 
 
171
  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