Spaces:
Running
Running
Updated app.py to use Aurora theme class
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import time
|
| 2 |
import gradio as gr
|
| 3 |
-
from aurora import
|
| 4 |
import matplotlib.pyplot as plt
|
| 5 |
import numpy as np
|
| 6 |
import pandas as pd
|
|
@@ -263,4 +263,4 @@ with gr.Blocks() as demo:
|
|
| 263 |
gr.LinePlot(filtered_df, inputs=[ethnicity, max_age], x="age", y="height", title="Age x Height", label="Line Plot")
|
| 264 |
|
| 265 |
if __name__ == "__main__":
|
| 266 |
-
demo.queue().launch(theme=
|
|
|
|
| 1 |
import time
|
| 2 |
import gradio as gr
|
| 3 |
+
from aurora import Aurora
|
| 4 |
import matplotlib.pyplot as plt
|
| 5 |
import numpy as np
|
| 6 |
import pandas as pd
|
|
|
|
| 263 |
gr.LinePlot(filtered_df, inputs=[ethnicity, max_age], x="age", y="height", title="Age x Height", label="Line Plot")
|
| 264 |
|
| 265 |
if __name__ == "__main__":
|
| 266 |
+
demo.queue().launch(theme=Aurora(), css=aurora_css)
|