nemo-evaluator-launcher 0.1.19__py3-none-any.whl → 0.1.41__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. nemo_evaluator_launcher/api/functional.py +105 -1
  2. nemo_evaluator_launcher/cli/logs.py +102 -0
  3. nemo_evaluator_launcher/cli/main.py +12 -0
  4. nemo_evaluator_launcher/cli/run.py +73 -15
  5. nemo_evaluator_launcher/cli/version.py +26 -23
  6. nemo_evaluator_launcher/common/helpers.py +176 -43
  7. nemo_evaluator_launcher/common/logging_utils.py +16 -5
  8. nemo_evaluator_launcher/common/printing_utils.py +7 -0
  9. nemo_evaluator_launcher/configs/deployment/sglang.yaml +4 -2
  10. nemo_evaluator_launcher/configs/deployment/trtllm.yaml +2 -3
  11. nemo_evaluator_launcher/configs/deployment/vllm.yaml +0 -1
  12. nemo_evaluator_launcher/configs/execution/slurm/default.yaml +14 -0
  13. nemo_evaluator_launcher/executors/base.py +31 -1
  14. nemo_evaluator_launcher/executors/lepton/deployment_helpers.py +36 -1
  15. nemo_evaluator_launcher/executors/lepton/executor.py +81 -1
  16. nemo_evaluator_launcher/executors/local/executor.py +377 -22
  17. nemo_evaluator_launcher/executors/local/run.template.sh +54 -2
  18. nemo_evaluator_launcher/executors/slurm/executor.py +422 -59
  19. nemo_evaluator_launcher/executors/slurm/proxy.cfg.template +26 -0
  20. nemo_evaluator_launcher/exporters/utils.py +32 -46
  21. nemo_evaluator_launcher/package_info.py +1 -1
  22. nemo_evaluator_launcher/resources/mapping.toml +56 -15
  23. {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/METADATA +3 -3
  24. {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/RECORD +28 -26
  25. {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/entry_points.txt +1 -0
  26. {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/WHEEL +0 -0
  27. {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/licenses/LICENSE +0 -0
  28. {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,26 @@
1
+ global
2
+ log stdout format raw local0
3
+ maxconn 4096
4
+
5
+ defaults
6
+ log global
7
+ mode http
8
+ option httplog
9
+ timeout connect 10s
10
+ timeout client 100000s
11
+ timeout server 100000s
12
+
13
+ frontend service_frontend
14
+ bind *:{{ haproxy_port }}
15
+ default_backend service_backend
16
+
17
+ backend service_backend
18
+ mode http
19
+ option httpchk GET {{ health_check_path }}
20
+ http-check expect status {{ health_check_status }}
21
+ option http-server-close
22
+ balance leastconn
23
+ {% for node in nodes %}
24
+ server node{{ loop.index }} {{ node.ip }}:{{ node.port }} check
25
+ {% endfor %}
26
+
@@ -471,15 +471,12 @@ def _extract_metrics_from_results(results: dict) -> Dict[str, float]:
471
471
  section_data = results.get(section)
472
472
  if isinstance(section_data, dict):
473
473
  for task_name, task_data in section_data.items():
474
- if isinstance(task_data, dict) and "metrics" in task_data:
475
- task_metrics = _extract_task_metrics(
476
- task_name, task_data["metrics"]
477
- )
478
- _safe_update_metrics(
479
- target=metrics,
480
- source=task_metrics,
481
- context=f" while extracting results for task '{task_name}'",
482
- )
474
+ task_metrics = _extract_task_metrics(task_name, task_data)
475
+ _safe_update_metrics(
476
+ target=metrics,
477
+ source=task_metrics,
478
+ context=f" while extracting results for task '{task_name}'",
479
+ )
483
480
  return metrics
484
481
 
485
482
 
@@ -518,54 +515,43 @@ def _extract_from_json_files(artifacts_dir: Path) -> Dict[str, float]:
518
515
  return metrics
519
516
 
520
517
 
521
- def _extract_task_metrics(task_name: str, metrics_data: dict) -> Dict[str, float]:
518
+ def _extract_task_metrics(task_name: str, task_data: dict) -> Dict[str, float]:
522
519
  """Extract metrics from a task's metrics data."""
523
520
  extracted = {}
524
- score_patterns = [
525
- "acc",
526
- "accuracy",
527
- "score",
528
- "exact_match",
529
- "f1",
530
- "em",
531
- "pass@1",
532
- "pass@k",
533
- ]
534
521
 
535
- for metric_name, metric_data in metrics_data.items():
536
- # Only extract score-like metrics
537
- if not any(pattern in metric_name.lower() for pattern in score_patterns):
538
- continue
522
+ metrics_data = task_data.get("metrics", {})
523
+ if "groups" in task_data:
524
+ for group_name, group_data in task_data["groups"].items():
525
+ group_extracted = _extract_task_metrics(
526
+ f"{task_name}_{group_name}", group_data
527
+ )
528
+ _safe_update_metrics(
529
+ target=extracted,
530
+ source=group_extracted,
531
+ context=f" in task '{task_name}'",
532
+ )
539
533
 
534
+ for metric_name, metric_data in metrics_data.items():
540
535
  try:
541
- if isinstance(metric_data, dict):
542
- if "scores" in metric_data:
543
- # Handle nested scores (e.g., mmlu macro/micro)
544
- for score_type, score_data in metric_data["scores"].items():
545
- if isinstance(score_data, dict) and "value" in score_data:
546
- key = f"{task_name}_{metric_name}_{score_type}"
547
- _safe_set_metric(
548
- container=extracted,
549
- key=key,
550
- new_value=score_data["value"],
551
- context=f" in task '{task_name}'",
552
- )
553
- elif "value" in metric_data:
536
+ for score_type, score_data in metric_data["scores"].items():
537
+ if score_type != metric_name:
538
+ key = f"{task_name}_{metric_name}_{score_type}"
539
+ else:
554
540
  key = f"{task_name}_{metric_name}"
555
- _safe_set_metric(
556
- container=extracted,
557
- key=key,
558
- new_value=metric_data["value"],
559
- context=f" in task '{task_name}'",
560
- )
561
- elif isinstance(metric_data, (int, float)):
562
- key = f"{task_name}_{metric_name}"
563
541
  _safe_set_metric(
564
542
  container=extracted,
565
543
  key=key,
566
- new_value=metric_data,
544
+ new_value=score_data["value"],
567
545
  context=f" in task '{task_name}'",
568
546
  )
547
+ for stat_name, stat_value in metric_data.get("stats", {}).items():
548
+ stats_key = f"{key}_{stat_name}"
549
+ _safe_set_metric(
550
+ container=extracted,
551
+ key=stats_key,
552
+ new_value=stat_value,
553
+ context=f" in task '{task_name}'",
554
+ )
569
555
  except (ValueError, TypeError) as e:
570
556
  logger.warning(
571
557
  f"Failed to extract metric {metric_name} for task {task_name}: {e}"
@@ -16,7 +16,7 @@
16
16
  # Below is the _next_ version that will be published, not the currently published one.
17
17
  MAJOR = 0
18
18
  MINOR = 1
19
- PATCH = 19
19
+ PATCH = 41
20
20
  PRE_RELEASE = ""
21
21
 
22
22
  # Use the following formatting: (major, minor, patch, pre-release)
@@ -1,6 +1,6 @@
1
1
  # NOTE(agronskiy): checked parity
2
2
  [lm-evaluation-harness]
3
- container = "nvcr.io/nvidia/eval-factory/lm-evaluation-harness:25.08.1"
3
+ container = "nvcr.io/nvidia/eval-factory/lm-evaluation-harness:25.10"
4
4
 
5
5
  [lm-evaluation-harness.tasks.chat.ifeval]
6
6
  required_env_vars = []
@@ -79,6 +79,8 @@ required_env_vars = []
79
79
 
80
80
  [lm-evaluation-harness.tasks.chat.mmlu_redux_instruct]
81
81
 
82
+ [lm-evaluation-harness.tasks.chat.mmlu_cot_0_shot_chat]
83
+
82
84
  [lm-evaluation-harness.tasks.completions.gsm8k]
83
85
  required_env_vars = []
84
86
 
@@ -124,7 +126,7 @@ required_env_vars = []
124
126
  ###############################################################################
125
127
  # NOTE(agronskiy): checked parity
126
128
  [mtbench]
127
- container = "nvcr.io/nvidia/eval-factory/mtbench:25.08.1"
129
+ container = "nvcr.io/nvidia/eval-factory/mtbench:25.10"
128
130
 
129
131
  [mtbench.tasks.chat.mtbench]
130
132
 
@@ -134,7 +136,7 @@ container = "nvcr.io/nvidia/eval-factory/mtbench:25.08.1"
134
136
  ###############################################################################
135
137
  # NOTE(agronskiy): checked parity
136
138
  [ifbench]
137
- container = "nvcr.io/nvidia/eval-factory/ifbench:25.08.1"
139
+ container = "nvcr.io/nvidia/eval-factory/ifbench:25.10"
138
140
 
139
141
  [ifbench.tasks.chat.ifbench]
140
142
  required_env_vars = []
@@ -142,7 +144,7 @@ required_env_vars = []
142
144
 
143
145
  ###############################################################################
144
146
  [simple_evals]
145
- container = "nvcr.io/nvidia/eval-factory/simple-evals:25.08.1"
147
+ container = "nvcr.io/nvidia/eval-factory/simple-evals:25.10"
146
148
 
147
149
  [simple_evals.tasks.chat.gpqa_diamond]
148
150
  required_env_vars = ["HF_TOKEN"]
@@ -213,7 +215,7 @@ required_env_vars = []
213
215
  ###############################################################################
214
216
  # NOTE(agronskiy): checked parity
215
217
  [bigcode-evaluation-harness]
216
- container = "nvcr.io/nvidia/eval-factory/bigcode-evaluation-harness:25.08.1"
218
+ container = "nvcr.io/nvidia/eval-factory/bigcode-evaluation-harness:25.10"
217
219
 
218
220
  [bigcode-evaluation-harness.tasks.chat.mbpp]
219
221
  required_env_vars = []
@@ -226,12 +228,12 @@ required_env_vars = []
226
228
  [bigcode-evaluation-harness.tasks.completions.humaneval]
227
229
  required_env_vars = []
228
230
 
229
- [bigcode-evaluation-harness.tasks.completions.humaneval_instruct]
231
+ [bigcode-evaluation-harness.tasks.chat.humaneval_instruct]
230
232
 
231
233
 
232
234
  ###############################################################################
233
235
  [livecodebench]
234
- container = "nvcr.io/nvidia/eval-factory/livecodebench:25.08.1"
236
+ container = "nvcr.io/nvidia/eval-factory/livecodebench:25.10"
235
237
 
236
238
  [livecodebench.tasks.chat.livecodebench_0724_0125]
237
239
  required_env_vars = []
@@ -242,7 +244,7 @@ required_env_vars = []
242
244
 
243
245
  ###############################################################################
244
246
  [scicode]
245
- container = "nvcr.io/nvidia/eval-factory/scicode:25.08.1"
247
+ container = "nvcr.io/nvidia/eval-factory/scicode:25.10"
246
248
 
247
249
  [scicode.tasks.chat.aa_scicode]
248
250
  required_env_vars = []
@@ -250,7 +252,7 @@ required_env_vars = []
250
252
 
251
253
  ###############################################################################
252
254
  [hle]
253
- container = "nvcr.io/nvidia/eval-factory/hle:25.08.1"
255
+ container = "nvcr.io/nvidia/eval-factory/hle:25.10"
254
256
 
255
257
  [hle.tasks.chat.hle]
256
258
  required_env_vars = ["HF_TOKEN", "OPENAI_CLIENT_ID", "OPENAI_CLIENT_SECRET"]
@@ -258,7 +260,7 @@ required_env_vars = ["HF_TOKEN", "OPENAI_CLIENT_ID", "OPENAI_CLIENT_SECRET"]
258
260
 
259
261
  ###############################################################################
260
262
  [bfcl]
261
- container = "nvcr.io/nvidia/eval-factory/bfcl:25.08.1"
263
+ container = "nvcr.io/nvidia/eval-factory/bfcl:25.10"
262
264
 
263
265
  [bfcl.tasks.chat.bfclv2_ast_prompting]
264
266
  required_env_vars = []
@@ -267,9 +269,20 @@ required_env_vars = []
267
269
  required_env_vars = []
268
270
 
269
271
 
272
+ ###############################################################################
273
+ [profbench]
274
+ container = "nvcr.io/nvidia/eval-factory/profbench:25.10"
275
+
276
+ [profbench.tasks.chat.llm_judge]
277
+ required_env_vars = []
278
+
279
+ [profbench.tasks.chat.report_generation]
280
+ required_env_vars = []
281
+
282
+
270
283
  ###############################################################################
271
284
  [vlmevalkit]
272
- container = "nvcr.io/nvidia/eval-factory/vlmevalkit:25.08.1"
285
+ container = "nvcr.io/nvidia/eval-factory/vlmevalkit:25.10"
273
286
 
274
287
  [vlmevalkit.tasks.vlm.ocrbench]
275
288
  required_env_vars = []
@@ -286,15 +299,43 @@ required_env_vars = ["OPENAI_CLIENT_ID", "OPENAI_CLIENT_SECRET"]
286
299
 
287
300
  ###############################################################################
288
301
  [garak]
289
- container = "nvcr.io/nvidia/eval-factory/garak:25.08.1"
302
+ container = "nvcr.io/nvidia/eval-factory/garak:25.10"
290
303
 
291
304
  [garak.tasks.chat.garak]
292
305
  required_env_vars = []
293
306
 
307
+ ###############################################################################
308
+ # NOTE(wprazuch): to verify if the tasks need any env var setting
309
+ [nemo_skills]
310
+ container = "nvcr.io/nvidia/eval-factory/nemo_skills:25.10"
311
+
312
+ [nemo_skills.tasks.chat.ns_aime2024]
313
+ required_env_vars = ["JUDGE_API_KEY"]
314
+
315
+ [nemo_skills.tasks.chat.ns_aime2025]
316
+ required_env_vars = []
317
+
318
+ [nemo_skills.tasks.chat.ns_bfcl_v3]
319
+ required_env_vars = []
320
+
321
+ [nemo_skills.tasks.chat.ns_gpqa]
322
+ required_env_vars = ["HF_TOKEN"]
323
+
324
+ [nemo_skills.tasks.chat.ns_hle]
325
+ required_env_vars = []
326
+
327
+ [nemo_skills.tasks.chat.ns_mmlu]
328
+ required_env_vars = ["HF_TOKEN"]
329
+
330
+ [nemo_skills.tasks.chat.ns_mmlu_pro]
331
+ required_env_vars = ["HF_TOKEN"]
332
+
333
+ [nemo_skills.tasks.chat.ns_aa_lcr]
334
+ required_env_vars = ["JUDGE_API_KEY"]
294
335
 
295
336
  ###############################################################################
296
337
  [safety-harness]
297
- container = "nvcr.io/nvidia/eval-factory/safety-harness:25.08.1"
338
+ container = "nvcr.io/nvidia/eval-factory/safety-harness:25.10"
298
339
 
299
340
  [safety-harness.tasks.chat.aegis_v2]
300
341
  required_env_vars = ["HF_TOKEN"]
@@ -303,7 +344,7 @@ required_env_vars = ["HF_TOKEN"]
303
344
  ###############################################################################
304
345
  # NOTE(agronskiy): checked parity
305
346
  [helm]
306
- container = "nvcr.io/nvidia/eval-factory/helm:25.08.1"
347
+ container = "nvcr.io/nvidia/eval-factory/helm:25.10"
307
348
 
308
349
  [helm.tasks.chat.medcalc_bench]
309
350
 
@@ -339,6 +380,6 @@ container = "nvcr.io/nvidia/eval-factory/helm:25.08.1"
339
380
  ###############################################################################
340
381
  # NOTE(agronskiy): checked parity
341
382
  [tooltalk]
342
- container = "nvcr.io/nvidia/eval-factory/tooltalk:25.08.1"
383
+ container = "nvcr.io/nvidia/eval-factory/tooltalk:25.10"
343
384
 
344
385
  [tooltalk.tasks.chat.tooltalk]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nemo-evaluator-launcher
3
- Version: 0.1.19
3
+ Version: 0.1.41
4
4
  Summary: Launcher for the evaluations provided by NeMo Evaluator containers with different runtime backends
5
5
  Author: NVIDIA
6
6
  Author-email: nemo-toolkit@nvidia.com
@@ -458,7 +458,7 @@ License:
458
458
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
459
459
  SOFTWARE.
460
460
 
461
- Project-URL: homepage, https://github.com/NVIDIA-NeMo/Eval
461
+ Project-URL: homepage, https://github.com/NVIDIA-NeMo/Evaluator
462
462
  Project-URL: repository, https://github.com/NVIDIA-NeMo/Evaluator/packages/nemo-evaluator-launcher
463
463
  Keywords: deep learning,evaluations,machine learning,gpu,NLP,pytorch,torch
464
464
  Requires-Python: <3.14,>=3.10
@@ -478,7 +478,7 @@ Requires-Dist: mlflow>=2.8.0; extra == "mlflow"
478
478
  Provides-Extra: wandb
479
479
  Requires-Dist: wandb>=0.15.0; extra == "wandb"
480
480
  Provides-Extra: gsheets
481
- Requires-Dist: gsheets>=0.1.0; extra == "gsheets"
481
+ Requires-Dist: gspread>=5.0.0; extra == "gsheets"
482
482
  Provides-Extra: exporters
483
483
  Requires-Dist: mlflow; extra == "exporters"
484
484
  Requires-Dist: wandb; extra == "exporters"
@@ -1,60 +1,62 @@
1
1
  nemo_evaluator_launcher/__init__.py,sha256=GT38zGwbvBOSeU52WCRx-n9N49LvLGEV1PItgKC8orA,2320
2
- nemo_evaluator_launcher/package_info.py,sha256=GpwtisWr161CuNwMc4fqUv_0wC9cvJelVoIoC6M6pjY,1586
2
+ nemo_evaluator_launcher/package_info.py,sha256=RGnruVj93NUhGw5fqI4DqujBesAV9Ixf05LquZO-JBU,1586
3
3
  nemo_evaluator_launcher/api/__init__.py,sha256=U9q_MJK2vRsFaymanhyy0nD1SNAZQZC8oY45RXPX7ac,1024
4
- nemo_evaluator_launcher/api/functional.py,sha256=T1HTIeiTXb-APWP7lPPTwFam4vFOApZCScRi6tMp538,27648
4
+ nemo_evaluator_launcher/api/functional.py,sha256=4Se7avg6Wde4EK7is3y-KjXV5qR9RGBpe8zjwjej4M8,31859
5
5
  nemo_evaluator_launcher/api/types.py,sha256=W7ZQ9ZTPR6YxInxxsKE6NxuuQAg4pVYz6SRmFCFxY0A,3635
6
6
  nemo_evaluator_launcher/api/utils.py,sha256=q5HArRj7PKgBfeH3bOX8q1U97yMyQQp72yRRA5JP9PE,818
7
7
  nemo_evaluator_launcher/cli/__init__.py,sha256=lNC_skFLYTOt-arnY3ZQnZMWzHlrtD2wAoHvDcHddwM,673
8
8
  nemo_evaluator_launcher/cli/export.py,sha256=GRXxusKDq_1qjMKN6MKOIjZ8x4u5ERgXwHSAGrvsGCY,11211
9
9
  nemo_evaluator_launcher/cli/info.py,sha256=2dZA2BqXpTG1wO_Wzt6Ol9ZNJzJJ0PibOB0hLFZpL14,20705
10
10
  nemo_evaluator_launcher/cli/kill.py,sha256=C-4PWmMu8mIITo92o5AHxtq_s-8Cckbp7wAlG0I_ylw,1323
11
+ nemo_evaluator_launcher/cli/logs.py,sha256=eYgfDbHNZhw1xo56bwCIR1sGQYJIPPzzUJu-pqseDWk,3774
11
12
  nemo_evaluator_launcher/cli/ls_runs.py,sha256=vJTwRdhVKLolnJuP8AnnQdJBE-BKZfCcCypLKSz5gqs,4942
12
13
  nemo_evaluator_launcher/cli/ls_tasks.py,sha256=Pd2lBQOQBNHBWrjk4tZg0SQ9Ul9F2Ak-zOyh-G9x-DY,5293
13
- nemo_evaluator_launcher/cli/main.py,sha256=MQo-DcVF_f0aBgnVUic5PP1qlfXXs0Evkd1X4EXdOvA,7217
14
- nemo_evaluator_launcher/cli/run.py,sha256=3-C_GvaIg9IxqpvC4P3h3lHcHdjB94Zpgq0ccOXVcpw,7503
14
+ nemo_evaluator_launcher/cli/main.py,sha256=iNEAeE7_dfDia4oCjUYhYikJJJXg9cMlbGADwMfMtfM,7613
15
+ nemo_evaluator_launcher/cli/run.py,sha256=XKF4nRdijhFH01JvMtWXav6tc6Xp7tAhbSnk32q8Ma4,9966
15
16
  nemo_evaluator_launcher/cli/status.py,sha256=ANdu0JYnfKNvd1gXmdu_0FrbPG-g0A_R4leOuNXzenQ,5947
16
- nemo_evaluator_launcher/cli/version.py,sha256=puMwIvkmfD3HESjftdTSP6T3Nc8J4cbz8uXWHJcTemY,2030
17
+ nemo_evaluator_launcher/cli/version.py,sha256=GgMNTAd4S0bu3t-uVfVedAf7p6pymWDDwOaNm4WHOxQ,1998
17
18
  nemo_evaluator_launcher/common/__init__.py,sha256=6-xb4KpG8-lZbWBI42c_Gax-Sq0kMSW8UG0Vn8dOBlo,744
18
19
  nemo_evaluator_launcher/common/execdb.py,sha256=WPzg5Iu2ojvFpBuYahSt3voP_iEUpoO8NgqMLUBwFxA,9767
19
- nemo_evaluator_launcher/common/helpers.py,sha256=T51kDqwtvUStM43FVUJdX9m6ja7cwK0sKX9-7vd8zXE,9327
20
- nemo_evaluator_launcher/common/logging_utils.py,sha256=8UMAQ22t5NAJRDZtI0gVbdKUlNAiG23WQwZZ0HwzOT4,11843
20
+ nemo_evaluator_launcher/common/helpers.py,sha256=MrLHPlOSn8GGc7sxB0xlDmUN0uWluSgVmDLUBwuo7pU,13540
21
+ nemo_evaluator_launcher/common/logging_utils.py,sha256=7QkWlpA80QN5ipTUFJ198IiAsPRS36C6ISAAtNverbA,12338
21
22
  nemo_evaluator_launcher/common/mapping.py,sha256=tD3jWN7rm9-iJEFlENhYMt7adz8DKs67g3Xd43XIAMM,10731
22
- nemo_evaluator_launcher/common/printing_utils.py,sha256=YICPY-KhxjL5QNEFJNvYfnj6_ArkZURDdP1pizqY-yU,2368
23
+ nemo_evaluator_launcher/common/printing_utils.py,sha256=QPjLqFlp0dd18RY__UYo5-yG8OqABaa78cpzMhZVCeo,2579
23
24
  nemo_evaluator_launcher/configs/__init__.py,sha256=lNC_skFLYTOt-arnY3ZQnZMWzHlrtD2wAoHvDcHddwM,673
24
25
  nemo_evaluator_launcher/configs/default.yaml,sha256=JHFjSl3KByhggRMTTo9nesQATVoz18PJIV6KM5Wng64,974
25
26
  nemo_evaluator_launcher/configs/deployment/generic.yaml,sha256=8_Z0fcjZuH6GfV9jJkY_8CS18Tbsn0gV-nK1LfGr_Vg,1262
26
27
  nemo_evaluator_launcher/configs/deployment/nim.yaml,sha256=hRJGwCR2XIS3bUFWkXzmroLep81KaHa3Sn2_edfWbkU,1266
27
28
  nemo_evaluator_launcher/configs/deployment/none.yaml,sha256=buPada1yMz9ClPDbq63vPDzLGr_IubTLia91DG3i5Lo,684
28
- nemo_evaluator_launcher/configs/deployment/sglang.yaml,sha256=2CrnmpdEr5HvUbZW6k_wFPK41q6e4WoS7CJKAcgKlck,1273
29
- nemo_evaluator_launcher/configs/deployment/trtllm.yaml,sha256=nZF1ueCF9uMticElgePPy8ecq2vbfvWxj_5YwQTJ--k,570
30
- nemo_evaluator_launcher/configs/deployment/vllm.yaml,sha256=NOAfK7hALTeVxjNJ63zEkb0vnefeRuAQCh6OZwe18pA,1476
29
+ nemo_evaluator_launcher/configs/deployment/sglang.yaml,sha256=Yy2uOko7-HeJ1fE0LHK3AHUOAzaeVSfnDp6f7fRBA9s,1358
30
+ nemo_evaluator_launcher/configs/deployment/trtllm.yaml,sha256=1-001_ylJOiQQiqhcIkX_8SFTkOGx47odB_4Myug_9A,568
31
+ nemo_evaluator_launcher/configs/deployment/vllm.yaml,sha256=5ORXOxrkMospl_iLUMTuOV0o4EOVO5VBEb5jAldCB_s,1458
31
32
  nemo_evaluator_launcher/configs/execution/local.yaml,sha256=0XtVXHeCK-zAoTURxnf4pr9RCe46HUCpKVzcfPlskz4,740
32
33
  nemo_evaluator_launcher/configs/execution/lepton/default.yaml,sha256=SRSMxohEtafzb-QS_oz4kP-RBgigRCAZgYwKkXtjymY,2930
33
- nemo_evaluator_launcher/configs/execution/slurm/default.yaml,sha256=zTevKSKch7yl4D0wGh4BjDBuI0YAiJSljVKwD7G8Cww,1328
34
+ nemo_evaluator_launcher/configs/execution/slurm/default.yaml,sha256=noQO06oEd7INQAZBw_lH7OHKQteDH4COk5-4I5I4Tx0,1733
34
35
  nemo_evaluator_launcher/executors/__init__.py,sha256=mSU1op5r7R_vqOCLDP84z6utfFgXOIl_1vBzN7KOC6o,1042
35
- nemo_evaluator_launcher/executors/base.py,sha256=4BOz2-jMG1OJ-5o5qCh-SJqLUE64YJWlnmB9hc1p4Pc,4040
36
+ nemo_evaluator_launcher/executors/base.py,sha256=QC1HDyTqXJFQMPMz48A-DLOFu3le4NFvVFzvPyxDFfE,5337
36
37
  nemo_evaluator_launcher/executors/registry.py,sha256=8QXSrsJyHeNi8iSttJ8KWQLXmZve1vxnnCNw_CkeopI,1409
37
38
  nemo_evaluator_launcher/executors/lepton/__init__.py,sha256=F_7yuBaYQ6WWTcptADdkL3AIZ_jXJQHGgKag-Hm7BbQ,698
38
- nemo_evaluator_launcher/executors/lepton/deployment_helpers.py,sha256=AAIlHHn-WifevNosug0DlSDLN6NtjkclEu5LHyu1xq8,21799
39
- nemo_evaluator_launcher/executors/lepton/executor.py,sha256=BeKZFflrooh_gbGoujY-cKOkarS-_VI0AoER91t5zvA,40240
39
+ nemo_evaluator_launcher/executors/lepton/deployment_helpers.py,sha256=vzAWaNmacRsloURwVIc6LsP-xpKwvr7vsPlFIFTFdLQ,23234
40
+ nemo_evaluator_launcher/executors/lepton/executor.py,sha256=gKls0DNTVyFVOh3rjIPAVruaAeQ5qmVcNoZctlLnb5w,44347
40
41
  nemo_evaluator_launcher/executors/lepton/job_helpers.py,sha256=6baTxcygfP1oFgAJ7I9EL4xRlcJDWqbqzZoE1CRrwSk,13528
41
42
  nemo_evaluator_launcher/executors/local/__init__.py,sha256=lNC_skFLYTOt-arnY3ZQnZMWzHlrtD2wAoHvDcHddwM,673
42
- nemo_evaluator_launcher/executors/local/executor.py,sha256=OUJ4B8qvE_mz9tXTYkwDqEjtOLtJzzbvOHDW35LYR4U,21431
43
- nemo_evaluator_launcher/executors/local/run.template.sh,sha256=uPofo2g8f7LsS0uL0YK0Y5YFFCQ5fAeiAkYMGBTalpg,3966
43
+ nemo_evaluator_launcher/executors/local/executor.py,sha256=ElRNKv8GVlcOHP23Uc67RiSleI6GfWpBK0e8w6VcXRk,36880
44
+ nemo_evaluator_launcher/executors/local/run.template.sh,sha256=S6qLqnqA3B4P_-ngklCU5dO9rKV0Qom5NWDwDHf5i0g,6103
44
45
  nemo_evaluator_launcher/executors/slurm/__init__.py,sha256=lNC_skFLYTOt-arnY3ZQnZMWzHlrtD2wAoHvDcHddwM,673
45
- nemo_evaluator_launcher/executors/slurm/executor.py,sha256=J_0sYzCcbcGzitf_oC9ncguoD2eG-K3osJxmZTW-9tE,40096
46
+ nemo_evaluator_launcher/executors/slurm/executor.py,sha256=2miKvU5kHr5fs706MxgAjDPE8nuqmOuWjnzni2F97qo,55108
47
+ nemo_evaluator_launcher/executors/slurm/proxy.cfg.template,sha256=nPg_JyBHPcjI1RSxDvl-lBgcbakrbZLl4IAXNBc8LM0,594
46
48
  nemo_evaluator_launcher/exporters/__init__.py,sha256=mBXG9FG48FeYrs8sF0zA2mgo1eqBmRgoml7zjJrqDso,1323
47
49
  nemo_evaluator_launcher/exporters/base.py,sha256=0BEqS-Zjez-KsrGE9yfo8S5w2uwMW3btBZve3SiiUp0,4307
48
50
  nemo_evaluator_launcher/exporters/gsheets.py,sha256=hBOL3vaomCW2fPMDEOQWkZkFCgF4jCoS4U5ZlsNVENs,15911
49
51
  nemo_evaluator_launcher/exporters/local.py,sha256=pnC_FhQ1PRYUllN0BKGVq8RfuPoMMEv_EaCf5eTQ8OI,19766
50
52
  nemo_evaluator_launcher/exporters/mlflow.py,sha256=qFEe9774s31Uybpah7kiz4BfZUDMyjo74DYuL7d7zNE,24727
51
53
  nemo_evaluator_launcher/exporters/registry.py,sha256=XsPTv_SBAFjcErO6BJ3OHqs3EvXQpLeyKRJuK9Ql4_M,1299
52
- nemo_evaluator_launcher/exporters/utils.py,sha256=XZVgTDmoa20tjEMwez0oUSpYpjt3ILV75D4KWuHtZ80,23119
54
+ nemo_evaluator_launcher/exporters/utils.py,sha256=5HGBKoFTSCng-GhAJpvfAa7N52_r9UDyrGlBLqRiiGo,22587
53
55
  nemo_evaluator_launcher/exporters/wandb.py,sha256=1qRUV_YE1Ury7rH7KH65AabR7gmEQ38kXBh2XrfiEpE,18082
54
- nemo_evaluator_launcher/resources/mapping.toml,sha256=uOg4Y-gDXXskbbba2vuwJ5FLJ3W0kSZz7Fap_nJnFQc,11322
55
- nemo_evaluator_launcher-0.1.19.dist-info/licenses/LICENSE,sha256=DyGb0fqHPZAsd_uXHA0DGcOCqsvrNsImuLC0Ts4s1zI,23413
56
- nemo_evaluator_launcher-0.1.19.dist-info/METADATA,sha256=4_GKlbu2rptZcvCu98Z4diI7eC3YHwyKlC3ByXOEKnk,28725
57
- nemo_evaluator_launcher-0.1.19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
58
- nemo_evaluator_launcher-0.1.19.dist-info/entry_points.txt,sha256=64z1T5GKSB9PW1fCENQuor6X6eqH1rcfg0NQGfKrEy8,130
59
- nemo_evaluator_launcher-0.1.19.dist-info/top_level.txt,sha256=5PvawNm9TXKqPRjZita1xPOtFiMOipcoRf50FI1iY3s,24
60
- nemo_evaluator_launcher-0.1.19.dist-info/RECORD,,
56
+ nemo_evaluator_launcher/resources/mapping.toml,sha256=oUeYpfOTyh5iiQs1rdc9zo-j_1P8ReWAzole2wYDFgg,12370
57
+ nemo_evaluator_launcher-0.1.41.dist-info/licenses/LICENSE,sha256=DyGb0fqHPZAsd_uXHA0DGcOCqsvrNsImuLC0Ts4s1zI,23413
58
+ nemo_evaluator_launcher-0.1.41.dist-info/METADATA,sha256=rCHDM0bplzE1q9gmi1GYzG1oQBpia3NfToSOEmN-JiU,28730
59
+ nemo_evaluator_launcher-0.1.41.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
60
+ nemo_evaluator_launcher-0.1.41.dist-info/entry_points.txt,sha256=HPmLybw-y1y4NxjK7slFS4mtTB7p4pnjRvCtJLvSiZs,174
61
+ nemo_evaluator_launcher-0.1.41.dist-info/top_level.txt,sha256=5PvawNm9TXKqPRjZita1xPOtFiMOipcoRf50FI1iY3s,24
62
+ nemo_evaluator_launcher-0.1.41.dist-info/RECORD,,
@@ -1,3 +1,4 @@
1
1
  [console_scripts]
2
+ nel = nemo_evaluator_launcher.cli.main:main
2
3
  nemo-evaluator-launcher = nemo_evaluator_launcher.cli.main:main
3
4
  nv-eval = nemo_evaluator_launcher.cli.main:main