Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,10 @@ article = """
|
|
57 |
- Please note the application ranges of the variables in the above-referenced paper (in publication process). Outside these ranges, the predictions may not be reliable
|
58 |
- As a decimal separator you can use either a point or a comma
|
59 |
"""
|
60 |
-
|
|
|
|
|
|
|
61 |
app = gr.Interface(
|
62 |
cc,
|
63 |
inputs=[
|
@@ -71,7 +74,7 @@ app = gr.Interface(
|
|
71 |
title=title,
|
72 |
description=description,
|
73 |
article = article,
|
74 |
-
theme=
|
75 |
)
|
76 |
|
77 |
|
|
|
57 |
- Please note the application ranges of the variables in the above-referenced paper (in publication process). Outside these ranges, the predictions may not be reliable
|
58 |
- As a decimal separator you can use either a point or a comma
|
59 |
"""
|
60 |
+
|
61 |
+
my_theme = gr.Theme.from_hub("bethecloud/storj_theme")
|
62 |
+
|
63 |
+
|
64 |
app = gr.Interface(
|
65 |
cc,
|
66 |
inputs=[
|
|
|
74 |
title=title,
|
75 |
description=description,
|
76 |
article = article,
|
77 |
+
theme=my_theme
|
78 |
)
|
79 |
|
80 |
|