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
Copy file name to clipboardExpand all lines: docs/pipelines/decontamination.md
+14-11Lines changed: 14 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
!!! info
4
4
5
-
This pipeline starting script is [nemo_skills/pipeline/check_contamination.py](https://github.com/NVIDIA/NeMo-Skills/blob/main/nemo_skills/pipeline/check_contamination.py)
5
+
This pipeline starting script is [nemo_skills/pipeline/generate.py](https://github.com/NVIDIA/NeMo-Skills/blob/main/nemo_skills/pipeline/generate.py)
6
6
7
7
All extra parameters are passed to [nemo_skills/inference/check_contamination.py](https://github.com/NVIDIA/NeMo-Skills/blob/main/nemo_skills/inference/check_contamination.py)
8
8
@@ -27,7 +27,7 @@ you have `/workspace` defined in your [cluster config](../basics/cluster-configs
27
27
you can do it in the following way
28
28
29
29
```python
30
-
from nemo_skills.pipeline.cli import wrap_arguments, run_cmd
30
+
from nemo_skills.pipeline.cli import wrap_arguments, run_cmd, generate
31
31
32
32
33
33
test_sets = ['math', 'amc23', 'aime24']
@@ -52,14 +52,16 @@ run_cmd(
52
52
Next, you need to run LLM inference to check those closest found questions from the output file. Here is an example
53
53
using Llama-405B from Nvidia API catalog, but you can replace it with OpenAI models or self-hosted models.
0 commit comments