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.
- nemo_evaluator_launcher/api/functional.py +105 -1
- nemo_evaluator_launcher/cli/logs.py +102 -0
- nemo_evaluator_launcher/cli/main.py +12 -0
- nemo_evaluator_launcher/cli/run.py +73 -15
- nemo_evaluator_launcher/cli/version.py +26 -23
- nemo_evaluator_launcher/common/helpers.py +176 -43
- nemo_evaluator_launcher/common/logging_utils.py +16 -5
- nemo_evaluator_launcher/common/printing_utils.py +7 -0
- nemo_evaluator_launcher/configs/deployment/sglang.yaml +4 -2
- nemo_evaluator_launcher/configs/deployment/trtllm.yaml +2 -3
- nemo_evaluator_launcher/configs/deployment/vllm.yaml +0 -1
- nemo_evaluator_launcher/configs/execution/slurm/default.yaml +14 -0
- nemo_evaluator_launcher/executors/base.py +31 -1
- nemo_evaluator_launcher/executors/lepton/deployment_helpers.py +36 -1
- nemo_evaluator_launcher/executors/lepton/executor.py +81 -1
- nemo_evaluator_launcher/executors/local/executor.py +377 -22
- nemo_evaluator_launcher/executors/local/run.template.sh +54 -2
- nemo_evaluator_launcher/executors/slurm/executor.py +422 -59
- nemo_evaluator_launcher/executors/slurm/proxy.cfg.template +26 -0
- nemo_evaluator_launcher/exporters/utils.py +32 -46
- nemo_evaluator_launcher/package_info.py +1 -1
- nemo_evaluator_launcher/resources/mapping.toml +56 -15
- {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/METADATA +3 -3
- {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/RECORD +28 -26
- {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/entry_points.txt +1 -0
- {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/WHEEL +0 -0
- {nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/licenses/LICENSE +0 -0
- {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
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
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,
|
|
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
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
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
|
-
|
|
542
|
-
if
|
|
543
|
-
|
|
544
|
-
|
|
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=
|
|
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}"
|
|
@@ -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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
383
|
+
container = "nvcr.io/nvidia/eval-factory/tooltalk:25.10"
|
|
343
384
|
|
|
344
385
|
[tooltalk.tasks.chat.tooltalk]
|
{nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nemo-evaluator-launcher
|
|
3
|
-
Version: 0.1.
|
|
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/
|
|
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:
|
|
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"
|
{nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/RECORD
RENAMED
|
@@ -1,60 +1,62 @@
|
|
|
1
1
|
nemo_evaluator_launcher/__init__.py,sha256=GT38zGwbvBOSeU52WCRx-n9N49LvLGEV1PItgKC8orA,2320
|
|
2
|
-
nemo_evaluator_launcher/package_info.py,sha256=
|
|
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=
|
|
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=
|
|
14
|
-
nemo_evaluator_launcher/cli/run.py,sha256=
|
|
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=
|
|
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=
|
|
20
|
-
nemo_evaluator_launcher/common/logging_utils.py,sha256=
|
|
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=
|
|
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=
|
|
29
|
-
nemo_evaluator_launcher/configs/deployment/trtllm.yaml,sha256=
|
|
30
|
-
nemo_evaluator_launcher/configs/deployment/vllm.yaml,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
39
|
-
nemo_evaluator_launcher/executors/lepton/executor.py,sha256=
|
|
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=
|
|
43
|
-
nemo_evaluator_launcher/executors/local/run.template.sh,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
55
|
-
nemo_evaluator_launcher-0.1.
|
|
56
|
-
nemo_evaluator_launcher-0.1.
|
|
57
|
-
nemo_evaluator_launcher-0.1.
|
|
58
|
-
nemo_evaluator_launcher-0.1.
|
|
59
|
-
nemo_evaluator_launcher-0.1.
|
|
60
|
-
nemo_evaluator_launcher-0.1.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
{nemo_evaluator_launcher-0.1.19.dist-info → nemo_evaluator_launcher-0.1.41.dist-info}/top_level.txt
RENAMED
|
File without changes
|