Spaces:
Runtime error
Runtime error
added default values
Browse files
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 |
|