Skip to content

Commit

Permalink
before merge from main
Browse files Browse the repository at this point in the history
  • Loading branch information
Huy Vu2 committed May 17, 2024
1 parent 356c79e commit 61faeb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/nlp/rag/rag_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from nemo.core.config import hydra_runner


@hydra_runner(config_path="conf", config_name="rasg")
@hydra_runner(config_path="conf", config_name="rag")
def main(cfg) -> None:

# load LLM
Expand Down
2 changes: 1 addition & 1 deletion nemo/collections/nlp/models/rag/custom_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class NeMoLLM(CustomLLM):
dummy_response: str = "My response"

length_params: LengthParam = {
"max_length": 30,
"max_length": 500,
"min_length": 0,
}

Expand Down

0 comments on commit 61faeb4

Please sign in to comment.