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
- rename debug cmd to info
- include key files into displayed job infomrmation
- fix --help to not include export flags
---------
Signed-off-by: Meriem B. <[email protected]>
Display detailed job information, including metadata, configuration, and paths to logs/artifacts with descriptions of key result files. Supports copying results locally from both local and remote jobs.
162
+
163
+
### Basic usage
164
+
```bash
165
+
# Show job info for one or more IDs (job or invocation)
166
+
nemo-evaluator-launcher info <job_or_invocation_id>
167
+
nemo-evaluator-launcher info <inv1><inv2>
168
+
```
169
+
170
+
### Show configuration
171
+
```bash
172
+
nemo-evaluator-launcher info <id> --config
173
+
```
174
+
175
+
### Show paths
176
+
```bash
177
+
# Show artifact locations
178
+
nemo-evaluator-launcher info <id> --artifacts
179
+
# Show log locations
180
+
nemo-evaluator-launcher info <id> --logs
181
+
```
182
+
183
+
### Copy files locally
184
+
```bash
185
+
# Copy logs
186
+
nemo-evaluator-launcher info <id> --copy-logs [DIR]
187
+
188
+
# Copy artifacts
189
+
nemo-evaluator-launcher info <id> --copy-artifacts [DIR]
│ ├── server-{SLURM_JOB_ID}.out - Model server logs when a deployment is used.
212
+
├── Slurm Job ID: <SLURM_JOB_ID>
213
+
```
214
+
159
215
## kill - Kill Jobs
160
216
161
217
Stop running evaluations.
@@ -303,64 +359,6 @@ nemo-evaluator-launcher version
303
359
nemo-evaluator-launcher --version
304
360
```
305
361
306
-
## debug - Job Information and Debugging helper functionalities
307
-
308
-
Display detailed job information including metadata, configuration, and locations of logs and artifacts. The debug command is useful for troubleshooting job issues, inspecting configurations, and retrieving artifacts from both local and remote jobs.
309
-
310
-
### Basic Usage
311
-
312
-
```bash
313
-
# Show job metadata and information for a single or multiple jobs
0 commit comments