Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ description2 = """
|
|
40 |
To use the app, click on one of the examples, or adjust the values of the factors, and click on Analyze. π€
|
41 |
"""
|
42 |
|
43 |
-
with gr.Blocks(
|
44 |
gr.Markdown(f"## {title}")
|
45 |
gr.Markdown(description1)
|
46 |
gr.Markdown("""---""")
|
@@ -68,7 +68,7 @@ with gr.Blocks(theme=gr.themes.Default(primary_hue=gr.themes.colors.orange, seco
|
|
68 |
)
|
69 |
|
70 |
gr.Markdown("### Click on any of the examples below to see how it works:")
|
71 |
-
gr.Examples([[119,13,122,12,
|
72 |
, [label,local_plot], main_func, cache_examples=True)
|
73 |
|
74 |
demo.launch()
|
|
|
40 |
To use the app, click on one of the examples, or adjust the values of the factors, and click on Analyze. π€
|
41 |
"""
|
42 |
|
43 |
+
with gr.Blocks(title=title) as demo:
|
44 |
gr.Markdown(f"## {title}")
|
45 |
gr.Markdown(description1)
|
46 |
gr.Markdown("""---""")
|
|
|
68 |
)
|
69 |
|
70 |
gr.Markdown("### Click on any of the examples below to see how it works:")
|
71 |
+
gr.Examples([[119,13,122,12,8014,0,18],[100,20,90,50,33,2,20], [150,15,102,46,171,8,25]], [Admission_Grade, Second_Sem_Grades, Previous_Qualification_Grade, First_Sem_Grades, Course, Second_Sem_Units_Approved, Age_at_Enrollment]
|
72 |
, [label,local_plot], main_func, cache_examples=True)
|
73 |
|
74 |
demo.launch()
|