nemo-evaluator-launcher 0.1.10__py3-none-any.whl → 0.1.12__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.

Potentially problematic release.


This version of nemo-evaluator-launcher might be problematic. Click here for more details.

@@ -15,3 +15,4 @@
15
15
  #
16
16
  type: local
17
17
  output_dir: ???
18
+ extra_docker_args: ""
@@ -164,10 +164,13 @@ class LocalExecutor(BaseExecutor):
164
164
  auto_export_config = cfg.execution.get("auto_export", {})
165
165
  auto_export_destinations = auto_export_config.get("destinations", [])
166
166
 
167
+ extra_docker_args = cfg.execution.get("extra_docker_args", "")
168
+
167
169
  run_sh_content = (
168
170
  eval_template.render(
169
171
  evaluation_tasks=[evaluation_task],
170
172
  auto_export_destinations=auto_export_destinations,
173
+ extra_docker_args=extra_docker_args,
171
174
  ).rstrip("\n")
172
175
  + "\n"
173
176
  )
@@ -178,6 +181,7 @@ class LocalExecutor(BaseExecutor):
178
181
  eval_template.render(
179
182
  evaluation_tasks=evaluation_tasks,
180
183
  auto_export_destinations=auto_export_destinations,
184
+ extra_docker_args=extra_docker_args,
181
185
  ).rstrip("\n")
182
186
  + "\n"
183
187
  )
@@ -34,7 +34,7 @@ echo "$(date -u +%Y-%m-%dT%H:%M:%SZ)" > "$logs_dir/stage.pre-start"
34
34
  # Docker run with eval factory command
35
35
  (
36
36
  echo "$(date -u +%Y-%m-%dT%H:%M:%SZ)" > "$logs_dir/stage.running"
37
- docker run --rm --shm-size=100g --network=host \
37
+ docker run --rm --shm-size=100g {{ extra_docker_args }} \
38
38
  --name {{ task.container_name }} \
39
39
  --volume "$artifacts_dir":/results \
40
40
  {% for env_var in task.env_vars -%}
@@ -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 = 10
19
+ PATCH = 12
20
20
  PRE_RELEASE = ""
21
21
 
22
22
  # Use the following formatting: (major, minor, patch, pre-release)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nemo-evaluator-launcher
3
- Version: 0.1.10
3
+ Version: 0.1.12
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
@@ -1,5 +1,5 @@
1
1
  nemo_evaluator_launcher/__init__.py,sha256=2F703fttLaIyMHoVD54rptHMXt4AWnplHDrwWJ3e3PM,1930
2
- nemo_evaluator_launcher/package_info.py,sha256=JxMCBGf9BEWOIblJPlJOASEOhjxJf4WyCT-x4CAdtNQ,1586
2
+ nemo_evaluator_launcher/package_info.py,sha256=iWHbqOvfmglxSklsH5FIsiv5MtRx7ib_9fmE3Wj6hcc,1586
3
3
  nemo_evaluator_launcher/api/__init__.py,sha256=U9q_MJK2vRsFaymanhyy0nD1SNAZQZC8oY45RXPX7ac,1024
4
4
  nemo_evaluator_launcher/api/functional.py,sha256=6QuCVOkox4SAxtNQhEBzzsMTHaTwHCTLFRqz6eC0gDY,27053
5
5
  nemo_evaluator_launcher/api/types.py,sha256=RXr_QoKdhejj1T9-HybSjd4KTxJmSv0bE0uLUFtF7Zc,3269
@@ -26,7 +26,7 @@ nemo_evaluator_launcher/configs/deployment/none.yaml,sha256=buPada1yMz9ClPDbq63v
26
26
  nemo_evaluator_launcher/configs/deployment/sglang.yaml,sha256=2CrnmpdEr5HvUbZW6k_wFPK41q6e4WoS7CJKAcgKlck,1273
27
27
  nemo_evaluator_launcher/configs/deployment/trtllm.yaml,sha256=nZF1ueCF9uMticElgePPy8ecq2vbfvWxj_5YwQTJ--k,570
28
28
  nemo_evaluator_launcher/configs/deployment/vllm.yaml,sha256=Z3nhybadfB28fqlNz-ihALJC3PfzC_ZF_BecytGeVR0,1415
29
- nemo_evaluator_launcher/configs/execution/local.yaml,sha256=Hh8yhKdqihDORGuMd8NbXXTmNM5SlfdR21PKEpiuVpk,701
29
+ nemo_evaluator_launcher/configs/execution/local.yaml,sha256=JQdTMSHo3GQbaDCTznNwWOlZer3JUMDAMpUZ88d1bss,723
30
30
  nemo_evaluator_launcher/configs/execution/lepton/default.yaml,sha256=SRSMxohEtafzb-QS_oz4kP-RBgigRCAZgYwKkXtjymY,2930
31
31
  nemo_evaluator_launcher/configs/execution/slurm/default.yaml,sha256=szjDrKMC4ZAN8CO-KMsnFkc7-Vi6o6U8SSLYYZJHPYs,1064
32
32
  nemo_evaluator_launcher/executors/__init__.py,sha256=mSU1op5r7R_vqOCLDP84z6utfFgXOIl_1vBzN7KOC6o,1042
@@ -37,8 +37,8 @@ nemo_evaluator_launcher/executors/lepton/deployment_helpers.py,sha256=m4HLFt9J03
37
37
  nemo_evaluator_launcher/executors/lepton/executor.py,sha256=37ZjRtu69Mff1o9dXSI_SppQd1yR6yhAX9JKZn_Wegg,37281
38
38
  nemo_evaluator_launcher/executors/lepton/job_helpers.py,sha256=6baTxcygfP1oFgAJ7I9EL4xRlcJDWqbqzZoE1CRrwSk,13528
39
39
  nemo_evaluator_launcher/executors/local/__init__.py,sha256=lNC_skFLYTOt-arnY3ZQnZMWzHlrtD2wAoHvDcHddwM,673
40
- nemo_evaluator_launcher/executors/local/executor.py,sha256=wM7DKLncDMDCOQFlQUEdb8KViL_WkTXi0kpCm-fnP4M,17771
41
- nemo_evaluator_launcher/executors/local/run.template.sh,sha256=s6sqA9fx9d80qC56i1A7rnHMSe397qK6SKmt2TvLRNk,3335
40
+ nemo_evaluator_launcher/executors/local/executor.py,sha256=z5xeJyWydPtdv95sexvegdqc2_ip0gSED3Hyzd_v78M,17957
41
+ nemo_evaluator_launcher/executors/local/run.template.sh,sha256=oD7QvDqEvd9NpS_5SZhYqIhCjVdcXI-GD98g5j-Ek4I,3344
42
42
  nemo_evaluator_launcher/executors/slurm/__init__.py,sha256=lNC_skFLYTOt-arnY3ZQnZMWzHlrtD2wAoHvDcHddwM,673
43
43
  nemo_evaluator_launcher/executors/slurm/executor.py,sha256=eG0hR0BuA6KRWMCaqtx2dhKeEZgm1QCC_edaEy32kDs,36274
44
44
  nemo_evaluator_launcher/exporters/__init__.py,sha256=mBXG9FG48FeYrs8sF0zA2mgo1eqBmRgoml7zjJrqDso,1323
@@ -50,9 +50,9 @@ nemo_evaluator_launcher/exporters/registry.py,sha256=XsPTv_SBAFjcErO6BJ3OHqs3EvX
50
50
  nemo_evaluator_launcher/exporters/utils.py,sha256=uXH4b-Hk7_FQyLOjMRB0b3zK-Ksb2rGlSdc-oECfGHI,24756
51
51
  nemo_evaluator_launcher/exporters/wandb.py,sha256=xdaPNw0QM0jZo20UERbViy_vFT-HgbLYzTgmWaev_kk,13430
52
52
  nemo_evaluator_launcher/resources/mapping.toml,sha256=uOg4Y-gDXXskbbba2vuwJ5FLJ3W0kSZz7Fap_nJnFQc,11322
53
- nemo_evaluator_launcher-0.1.10.dist-info/licenses/LICENSE,sha256=DyGb0fqHPZAsd_uXHA0DGcOCqsvrNsImuLC0Ts4s1zI,23413
54
- nemo_evaluator_launcher-0.1.10.dist-info/METADATA,sha256=wljBwSTRO124xl4yj8S7wq4K5OBte1Wx1Mzx57fD4Ts,28725
55
- nemo_evaluator_launcher-0.1.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
56
- nemo_evaluator_launcher-0.1.10.dist-info/entry_points.txt,sha256=64z1T5GKSB9PW1fCENQuor6X6eqH1rcfg0NQGfKrEy8,130
57
- nemo_evaluator_launcher-0.1.10.dist-info/top_level.txt,sha256=5PvawNm9TXKqPRjZita1xPOtFiMOipcoRf50FI1iY3s,24
58
- nemo_evaluator_launcher-0.1.10.dist-info/RECORD,,
53
+ nemo_evaluator_launcher-0.1.12.dist-info/licenses/LICENSE,sha256=DyGb0fqHPZAsd_uXHA0DGcOCqsvrNsImuLC0Ts4s1zI,23413
54
+ nemo_evaluator_launcher-0.1.12.dist-info/METADATA,sha256=QGjX9KDLeOgKMio7WWjGfMTDWpz0yxX7bbLVktSMS30,28725
55
+ nemo_evaluator_launcher-0.1.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
56
+ nemo_evaluator_launcher-0.1.12.dist-info/entry_points.txt,sha256=64z1T5GKSB9PW1fCENQuor6X6eqH1rcfg0NQGfKrEy8,130
57
+ nemo_evaluator_launcher-0.1.12.dist-info/top_level.txt,sha256=5PvawNm9TXKqPRjZita1xPOtFiMOipcoRf50FI1iY3s,24
58
+ nemo_evaluator_launcher-0.1.12.dist-info/RECORD,,