From 2219f02dd025842c7333124d6efc239b588a48eb Mon Sep 17 00:00:00 2001 From: Nat Kershaw Date: Thu, 14 Mar 2024 14:53:13 -0700 Subject: [PATCH] num_sequences -> num_return_sequences --- docs/genai/reference/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/genai/reference/config.md b/docs/genai/reference/config.md index c8d7e34fcf4e4..20b8673701e0a 100644 --- a/docs/genai/reference/config.md +++ b/docs/genai/reference/config.md @@ -136,7 +136,7 @@ Then for each model in the pipeline there is one section, named by the model. * **_early_stopping_**: Whether to stop the beam search when at least num_beams sentences are finished per batch or not. Defaults to false. -* **_num_sequences_**: The number of sequences to generate. Returns the sequences with the highest scores in order. +* **_num_return_sequences_**: The number of sequences to generate. Returns the sequences with the highest scores in order. * **_top_k_**: Only includes tokens that do fall within the list of the `K` most probable tokens. Range is 1 to the vocabulary size.