pub struct CreateFineTuningJobRequest {
pub model: CreateFineTuningJobRequest_Model,
pub training_file: String,
pub hyperparameters: Option<CreateFineTuningJobRequest_Hyperparameters>,
pub suffix: Option<String>,
pub validation_file: Option<String>,
pub integrations: Option<Vec<CreateFineTuningJobRequest_Integrations>>,
pub seed: Option<i64>,
pub method: Option<FineTuneMethod>,
pub metadata: Option<Metadata>,
}
Fields§
§model: CreateFineTuningJobRequest_Model
§training_file: String
The ID of an uploaded file that contains training data.
hyperparameters: Option<CreateFineTuningJobRequest_Hyperparameters>
§suffix: Option<String>
A string of up to 64 characters that will be added to your fine-tuned model name.
validation_file: Option<String>
The ID of an uploaded file that contains validation data.
integrations: Option<Vec<CreateFineTuningJobRequest_Integrations>>
A list of integrations to enable for your fine-tuning job.
seed: Option<i64>
The seed controls the reproducibility of the job.
method: Option<FineTuneMethod>
§metadata: Option<Metadata>
Trait Implementations§
Source§impl Clone for CreateFineTuningJobRequest
impl Clone for CreateFineTuningJobRequest
Source§fn clone(&self) -> CreateFineTuningJobRequest
fn clone(&self) -> CreateFineTuningJobRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for CreateFineTuningJobRequest
impl RefUnwindSafe for CreateFineTuningJobRequest
impl Send for CreateFineTuningJobRequest
impl Sync for CreateFineTuningJobRequest
impl Unpin for CreateFineTuningJobRequest
impl UnwindSafe for CreateFineTuningJobRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more