File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
"""rslearn_projects: Ai2 projects built on top of rslearn."""
2
-
3
- import rslp .utils .fs # noqa: F401 (imported but unused)
Original file line number Diff line number Diff line change @@ -57,13 +57,17 @@ def launch_job(
57
57
value = "prior-satlas" , # nosec
58
58
),
59
59
EnvVar (
60
- name = "S3_ACCESS_KEY_ID " , # nosec
60
+ name = "WEKA_ACCESS_KEY_ID " , # nosec
61
61
secret = "RSLEARN_WEKA_KEY" , # nosec
62
62
),
63
63
EnvVar (
64
- name = "S3_SECRET_ACCESS_KEY " , # nosec
64
+ name = "WEKA_SECRET_ACCESS_KEY " , # nosec
65
65
secret = "RSLEARN_WEKA_SECRET" , # nosec
66
66
),
67
+ EnvVar (
68
+ name = "WEKA_ENDPOINT_URL" , # nosec
69
+ value = "https://weka-aus.beaker.org:9000" , # nosec
70
+ ),
67
71
EnvVar (
68
72
name = "RSLP_PROJECT" , # nosec
69
73
value = project_id ,
Original file line number Diff line number Diff line change 10
10
from rslearn .main import RslearnLightningCLI
11
11
from upath import UPath
12
12
13
+ import rslp .utils .fs # noqa: F401 (imported but unused)
13
14
from rslp import launcher_lib
14
15
15
16
CHECKPOINT_DIR = "gs://{rslp_bucket}/projects/{project_id}/{experiment_id}/checkpoints/"
You can’t perform that action at this time.
0 commit comments