Sivaram Mothiki commited on
Commit
0414af8
·
1 Parent(s): 5f431c1
Files changed (1) hide show
  1. app.py +19 -19
app.py CHANGED
@@ -47,7 +47,7 @@ from src.envs import (
47
  HF_HOME,
48
  )
49
  from src.populate import get_evaluation_queue_df, get_leaderboard_df
50
- from src.submission.submit import add_new_eval
51
  from src.tools.plots import create_metric_plot_obj, create_plot_df, create_scores_df
52
  from src.voting.vote_system import VoteManager, run_scheduler
53
 
@@ -139,7 +139,7 @@ def init_space():
139
  # These downloads only occur on full initialization
140
  try:
141
  download_dataset(QUEUE_REPO, EVAL_REQUESTS_PATH)
142
- download_dataset(VOTES_REPO, VOTES_PATH)
143
  except Exception:
144
  restart_space()
145
 
@@ -153,15 +153,15 @@ def init_space():
153
  return LEADERBOARD_DF, eval_queue_dfs
154
 
155
  # Initialize VoteManager
156
- vote_manager = VoteManager(VOTES_PATH, EVAL_REQUESTS_PATH, VOTES_REPO)
157
 
158
 
159
  # Schedule the upload_votes method to run every 15 minutes
160
- schedule.every(15).minutes.do(vote_manager.upload_votes)
161
 
162
  # Start the scheduler in a separate thread
163
- scheduler_thread = Thread(target=run_scheduler, args=(vote_manager,), daemon=True)
164
- scheduler_thread.start()
165
 
166
  # Calls the init_space function with the `full_init` parameter determined by the `do_full_init` variable.
167
  # This initializes various DataFrames used throughout the application, with the level of initialization detail controlled by the `do_full_init` flag.
@@ -324,19 +324,19 @@ with main_block:
324
  outputs=chat_template_toggle,
325
  )
326
 
327
- submit_button.click(
328
- add_new_eval,
329
- [
330
- model_name_textbox,
331
- base_model_name_textbox,
332
- revision_name_textbox,
333
- precision,
334
- weight_type,
335
- model_type,
336
- chat_template_toggle,
337
- ],
338
- submission_result,
339
- )
340
 
341
  # Ensure the values in 'pending_eval_queue_df' are correct and ready for the DataFrame component
342
  with gr.TabItem("🆙 Model Vote"):
 
47
  HF_HOME,
48
  )
49
  from src.populate import get_evaluation_queue_df, get_leaderboard_df
50
+ # from src.submission.submit import add_new_eval
51
  from src.tools.plots import create_metric_plot_obj, create_plot_df, create_scores_df
52
  from src.voting.vote_system import VoteManager, run_scheduler
53
 
 
139
  # These downloads only occur on full initialization
140
  try:
141
  download_dataset(QUEUE_REPO, EVAL_REQUESTS_PATH)
142
+ # download_dataset(VOTES_REPO, VOTES_PATH)
143
  except Exception:
144
  restart_space()
145
 
 
153
  return LEADERBOARD_DF, eval_queue_dfs
154
 
155
  # Initialize VoteManager
156
+ # vote_manager = VoteManager(VOTES_PATH, EVAL_REQUESTS_PATH, VOTES_REPO)
157
 
158
 
159
  # Schedule the upload_votes method to run every 15 minutes
160
+ # schedule.every(15).minutes.do(vote_manager.upload_votes)
161
 
162
  # Start the scheduler in a separate thread
163
+ # scheduler_thread = Thread(target=run_scheduler, args=(vote_manager,), daemon=True)
164
+ # scheduler_thread.start()
165
 
166
  # Calls the init_space function with the `full_init` parameter determined by the `do_full_init` variable.
167
  # This initializes various DataFrames used throughout the application, with the level of initialization detail controlled by the `do_full_init` flag.
 
324
  outputs=chat_template_toggle,
325
  )
326
 
327
+ # submit_button.click(
328
+ # add_new_eval,
329
+ # [
330
+ # model_name_textbox,
331
+ # base_model_name_textbox,
332
+ # revision_name_textbox,
333
+ # precision,
334
+ # weight_type,
335
+ # model_type,
336
+ # chat_template_toggle,
337
+ # ],
338
+ # submission_result,
339
+ # )
340
 
341
  # Ensure the values in 'pending_eval_queue_df' are correct and ready for the DataFrame component
342
  with gr.TabItem("🆙 Model Vote"):