eduagarcia
commited on
Commit
•
054da41
1
Parent(s):
531fabf
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,8 @@ def refresh(how_much=3600): # default to 1 hour
|
|
22 |
refresh(600) # 10 minutes if any error happens
|
23 |
|
24 |
original_notebook_url = "https://colab.research.google.com/drive/1KdwokPjirkTmpO_P1WByFNFiqxWQquwH#scrollTo=o_CpbkGEbhrK"
|
25 |
-
notebook_url =
|
|
|
26 |
data_link = "https://storage.googleapis.com/arena_external_data/public/clean_battle_20240409.json"
|
27 |
original_leaderboard_link = "https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard"
|
28 |
|
@@ -525,5 +526,5 @@ with gr.Blocks(
|
|
525 |
)
|
526 |
|
527 |
if __name__ == "__main__":
|
528 |
-
threading.Thread(target=
|
529 |
demo.launch()
|
|
|
22 |
refresh(600) # 10 minutes if any error happens
|
23 |
|
24 |
original_notebook_url = "https://colab.research.google.com/drive/1KdwokPjirkTmpO_P1WByFNFiqxWQquwH#scrollTo=o_CpbkGEbhrK"
|
25 |
+
notebook_url = original_notebook_url
|
26 |
+
#notebook_url = "https://colab.research.google.com/drive/11eWOT3VAAWRRrs1CSsAg84hIaJvH2ThK?usp=sharing"
|
27 |
data_link = "https://storage.googleapis.com/arena_external_data/public/clean_battle_20240409.json"
|
28 |
original_leaderboard_link = "https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard"
|
29 |
|
|
|
526 |
)
|
527 |
|
528 |
if __name__ == "__main__":
|
529 |
+
threading.Thread(target=refresh).start()
|
530 |
demo.launch()
|