Michael Rabinovich commited on
Commit
190633b
·
1 Parent(s): 182f8fc

Bill eval jobs to lvwerra instead of michaelr27

Browse files
Files changed (3) hide show
  1. leaderboard.py +1 -1
  2. submit.py +2 -2
  3. tools/generate_gt_turntables.py +1 -1
leaderboard.py CHANGED
@@ -40,7 +40,7 @@ from huggingface_hub import get_token
40
 
41
  logger = logging.getLogger(__name__)
42
 
43
- HF_ORG = os.getenv("HF_ORG", "michaelr27")
44
  HF_SUBMISSIONS_REPO = os.getenv(
45
  "HF_SUBMISSIONS_REPO", f"{HF_ORG}/cadgenbench-submissions"
46
  )
 
40
 
41
  logger = logging.getLogger(__name__)
42
 
43
+ HF_ORG = os.getenv("HF_ORG", "lvwerra")
44
  HF_SUBMISSIONS_REPO = os.getenv(
45
  "HF_SUBMISSIONS_REPO", f"{HF_ORG}/cadgenbench-submissions"
46
  )
submit.py CHANGED
@@ -172,14 +172,14 @@ BOOT_SWEEP_ENV = "CADGENBENCH_DISABLE_BOOT_SWEEP"
172
  # image-only) that lives in the org, so its repo id is derived from
173
  # HF_ORG and an org rename stays a single Space-variable change.
174
  # The job NAMESPACE is the account dispatch is billed to and must
175
- # stay `michaelr27` (no-bill for HF employees per Round 6 of
176
  # space-setup/leandro.md); it is a fixed constant, never env-driven.
177
  # a10g-large fits cadgenbench evaluate --workers 8 in 46 GB RAM.
178
  EVAL_GPU_SPACE = os.getenv(
179
  "CADGENBENCH_EVAL_GPU_SPACE", f"{HF_ORG}/cadgenbench-eval-gpu"
180
  )
181
  EVAL_JOB_FLAVOR = "a10g-large"
182
- EVAL_JOB_NAMESPACE = "michaelr27"
183
  EVAL_JOB_TIMEOUT = "30m"
184
  EVAL_JOB_WORKER_COUNT = "8"
185
 
 
172
  # image-only) that lives in the org, so its repo id is derived from
173
  # HF_ORG and an org rename stays a single Space-variable change.
174
  # The job NAMESPACE is the account dispatch is billed to and must
175
+ # stay `lvwerra` (no-bill for HF employees per Round 6 of
176
  # space-setup/leandro.md); it is a fixed constant, never env-driven.
177
  # a10g-large fits cadgenbench evaluate --workers 8 in 46 GB RAM.
178
  EVAL_GPU_SPACE = os.getenv(
179
  "CADGENBENCH_EVAL_GPU_SPACE", f"{HF_ORG}/cadgenbench-eval-gpu"
180
  )
181
  EVAL_JOB_FLAVOR = "a10g-large"
182
+ EVAL_JOB_NAMESPACE = "lvwerra"
183
  EVAL_JOB_TIMEOUT = "30m"
184
  EVAL_JOB_WORKER_COUNT = "8"
185
 
tools/generate_gt_turntables.py CHANGED
@@ -27,7 +27,7 @@ dispatch this file's contents on that image, e.g. with the Python API::
27
  command=["python", "-c", Path("generate_gt_turntables.py").read_text()
28
  + "\nimport sys; sys.exit(main())"],
29
  flavor="a10g-large",
30
- namespace="michaelr27",
31
  secrets={"HF_TOKEN": "<write-token>"},
32
  timeout="30m",
33
  )
 
27
  command=["python", "-c", Path("generate_gt_turntables.py").read_text()
28
  + "\nimport sys; sys.exit(main())"],
29
  flavor="a10g-large",
30
+ namespace="lvwerra",
31
  secrets={"HF_TOKEN": "<write-token>"},
32
  timeout="30m",
33
  )