You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("-i", "--image", type=str, help="Override RUNAI_IMAGE from the env file")
49
49
parser.add_argument("-p", "--port", type=int, help="Expose a container port")
50
50
parser.add_argument("--train", action="store_true", help="Submit as a training workload")
51
-
parser.add_argument("--distributed", action="store_true", help="Submit a distributed workload")
52
-
parser.add_argument("--workers", default=0, type=int, help="Only read for distributed workloads. Number of nodes IN ADDITION to the master node. I.e., the total number of nodes is the number of workers + 1 (the master node)")
51
+
parser.add_argument("--workers", default=0, type=int, help="Number of nodes IN ADDITION to the master node. I.e., the total number of nodes is the number of workers + 1 (the master node)")
53
52
parser.add_argument("--dry", action="store_true", help="Print the generated runai command")
54
53
parser.add_argument("--env-file", type=str, default=DEFAULT_ENV_FILE, help="Path to the .env file (default: .env in the repo root)")
55
54
parser.add_argument("--sync-secret-only", action="store_true", help="Create/refresh the Kubernetes secret and exit without submitting a job")
0 commit comments