pub struct FineTuningJobCreateRequest {
pub model: String,
pub training_file: String,
pub hyperparameters: Option<Hyperparameters>,
pub suffix: Option<String>,
pub validation_file: Option<String>,
pub seed: Option<i64>,
}Expand description
Request body for POST /fine_tuning/jobs.
Fields§
§model: StringBase model to fine-tune.
training_file: StringTraining file ID.
hyperparameters: Option<Hyperparameters>Hyperparameters for the job.
suffix: Option<String>Suffix for the fine-tuned model name (max 64 chars).
validation_file: Option<String>Validation file ID.
seed: Option<i64>Seed for reproducibility.
Implementations§
Trait Implementations§
Source§impl Clone for FineTuningJobCreateRequest
impl Clone for FineTuningJobCreateRequest
Source§fn clone(&self) -> FineTuningJobCreateRequest
fn clone(&self) -> FineTuningJobCreateRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FineTuningJobCreateRequest
impl Debug for FineTuningJobCreateRequest
Auto Trait Implementations§
impl Freeze for FineTuningJobCreateRequest
impl RefUnwindSafe for FineTuningJobCreateRequest
impl Send for FineTuningJobCreateRequest
impl Sync for FineTuningJobCreateRequest
impl Unpin for FineTuningJobCreateRequest
impl UnsafeUnpin for FineTuningJobCreateRequest
impl UnwindSafe for FineTuningJobCreateRequest
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