EstebanDC commited on
Commit
2f5569b
·
1 Parent(s): 53d49ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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="Soft"
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