#[non_exhaustive]pub struct TextGenerationJobConfigBuilder { /* private fields */ }
Expand description
A builder for TextGenerationJobConfig
.
Implementations§
source§impl TextGenerationJobConfigBuilder
impl TextGenerationJobConfigBuilder
sourcepub fn completion_criteria(self, input: AutoMlJobCompletionCriteria) -> Self
pub fn completion_criteria(self, input: AutoMlJobCompletionCriteria) -> Self
How long a job is allowed to run, or how many candidates a job is allowed to generate.
sourcepub fn set_completion_criteria(
self,
input: Option<AutoMlJobCompletionCriteria>
) -> Self
pub fn set_completion_criteria( self, input: Option<AutoMlJobCompletionCriteria> ) -> Self
How long a job is allowed to run, or how many candidates a job is allowed to generate.
sourcepub fn get_completion_criteria(&self) -> &Option<AutoMlJobCompletionCriteria>
pub fn get_completion_criteria(&self) -> &Option<AutoMlJobCompletionCriteria>
How long a job is allowed to run, or how many candidates a job is allowed to generate.
sourcepub fn base_model_name(self, input: impl Into<String>) -> Self
pub fn base_model_name(self, input: impl Into<String>) -> Self
The name of the base model to fine-tune. Autopilot supports fine-tuning a variety of large language models. For information on the list of supported models, see Text generation models supporting fine-tuning in Autopilot. If no BaseModelName
is provided, the default model used is Falcon-7B-Instruct.
sourcepub fn set_base_model_name(self, input: Option<String>) -> Self
pub fn set_base_model_name(self, input: Option<String>) -> Self
The name of the base model to fine-tune. Autopilot supports fine-tuning a variety of large language models. For information on the list of supported models, see Text generation models supporting fine-tuning in Autopilot. If no BaseModelName
is provided, the default model used is Falcon-7B-Instruct.
sourcepub fn get_base_model_name(&self) -> &Option<String>
pub fn get_base_model_name(&self) -> &Option<String>
The name of the base model to fine-tune. Autopilot supports fine-tuning a variety of large language models. For information on the list of supported models, see Text generation models supporting fine-tuning in Autopilot. If no BaseModelName
is provided, the default model used is Falcon-7B-Instruct.
sourcepub fn build(self) -> TextGenerationJobConfig
pub fn build(self) -> TextGenerationJobConfig
Consumes the builder and constructs a TextGenerationJobConfig
.
Trait Implementations§
source§impl Clone for TextGenerationJobConfigBuilder
impl Clone for TextGenerationJobConfigBuilder
source§fn clone(&self) -> TextGenerationJobConfigBuilder
fn clone(&self) -> TextGenerationJobConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for TextGenerationJobConfigBuilder
impl Default for TextGenerationJobConfigBuilder
source§fn default() -> TextGenerationJobConfigBuilder
fn default() -> TextGenerationJobConfigBuilder
source§impl PartialEq for TextGenerationJobConfigBuilder
impl PartialEq for TextGenerationJobConfigBuilder
source§fn eq(&self, other: &TextGenerationJobConfigBuilder) -> bool
fn eq(&self, other: &TextGenerationJobConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.