ljvmiranda921 commited on
Commit
3bb7753
·
1 Parent(s): 1a5efd4

Update organization name

Browse files
Files changed (2) hide show
  1. app.py +3 -3
  2. parse_results.py +2 -2
app.py CHANGED
@@ -30,9 +30,9 @@ if not _hf_token:
30
  api = HfApi(token=_hf_token)
31
 
32
 
33
- REPO_ID = "UD-Filipino/filbench-leaderboard"
34
- REPO_RESULTS = "UD-Filipino/filbench-results"
35
- SUBMISSION_RESULTS = "UD-Filipino/filbench-results-submission"
36
 
37
 
38
  def restart_space():
 
30
  api = HfApi(token=_hf_token)
31
 
32
 
33
+ REPO_ID = "filbench/filbench-leaderboard"
34
+ REPO_RESULTS = "filbench/filbench-results"
35
+ SUBMISSION_RESULTS = "filbench/filbench-results-submission"
36
 
37
 
38
  def restart_space():
parse_results.py CHANGED
@@ -22,8 +22,8 @@ logging.basicConfig(
22
  def get_args():
23
  # fmt: off
24
  parser = argparse.ArgumentParser(description="Parse all results from datasets of a given HF org, and upload it into a new dataset.")
25
- parser.add_argument("--hf_org", type=str, default="UD-Filipino", help="HuggingFace org to parse results from.")
26
- parser.add_argument("--hf_repo_output", type=str, default="UD-Filipino/filbench-results", help="HuggingFace dataset to upload all parsed results.")
27
  # fmt: on
28
  return parser.parse_args()
29
 
 
22
  def get_args():
23
  # fmt: off
24
  parser = argparse.ArgumentParser(description="Parse all results from datasets of a given HF org, and upload it into a new dataset.")
25
+ parser.add_argument("--hf_org", type=str, default="filbench", help="HuggingFace org to parse results from.")
26
+ parser.add_argument("--hf_repo_output", type=str, default="filbench/filbench-results", help="HuggingFace dataset to upload all parsed results.")
27
  # fmt: on
28
  return parser.parse_args()
29