rajistics commited on
Commit
bac1592
·
1 Parent(s): 4563e23

added default values

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -46,8 +46,8 @@ with gr.Blocks() as demo:
46
  See live download stats for all of Hugging Face's open-source libraries 🤗 along with a 3 month forecast using Prophet
47
  """)
48
  with gr.Row():
49
- lib = gr.Dropdown(["transformers", "datasets", "huggingface-hub", "gradio"], label="Library")
50
- time = gr.Dropdown(["3 months", "6 months", "9 months", "12 months"], label="Downloads over the last...")
51
 
52
  plt = gr.Plot()
53
 
 
46
  See live download stats for all of Hugging Face's open-source libraries 🤗 along with a 3 month forecast using Prophet
47
  """)
48
  with gr.Row():
49
+ lib = gr.Dropdown(["transformers", "datasets", "huggingface-hub", "gradio"], value="transformers", label="Library")
50
+ time = gr.Dropdown(["3 months", "6 months", "9 months", "12 months"], value="12 months", label="Downloads over the last...")
51
 
52
  plt = gr.Plot()
53