#[non_exhaustive]pub struct FineTuningJob {Show 19 fields
pub id: String,
pub created_at: i64,
pub error: Option<FineTuningJobError>,
pub fine_tuned_model: Option<String>,
pub finished_at: Option<i64>,
pub hyperparameters: Option<Hyperparameters>,
pub model: String,
pub object: String,
pub organization_id: Option<String>,
pub result_files: Vec<String>,
pub seed: Option<i64>,
pub status: Option<FineTuningJobStatus>,
pub trained_tokens: Option<i64>,
pub training_file: String,
pub validation_file: Option<String>,
pub estimated_finish: Option<i64>,
pub integrations: Option<Vec<Value>>,
pub metadata: Option<HashMap<String, String>>,
pub method: Option<FineTuningMethod>,
}Expand description
A fine-tuning job (fine_tuning_job.py).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: String§created_at: i64§error: Option<FineTuningJobError>§fine_tuned_model: Option<String>§finished_at: Option<i64>§hyperparameters: Option<Hyperparameters>§model: String§object: String§organization_id: Option<String>§result_files: Vec<String>§seed: Option<i64>§status: Option<FineTuningJobStatus>§trained_tokens: Option<i64>§training_file: String§validation_file: Option<String>§estimated_finish: Option<i64>§integrations: Option<Vec<Value>>§metadata: Option<HashMap<String, String>>§method: Option<FineTuningMethod>Trait Implementations§
Source§impl Clone for FineTuningJob
impl Clone for FineTuningJob
Source§fn clone(&self) -> FineTuningJob
fn clone(&self) -> FineTuningJob
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 FineTuningJob
impl Debug for FineTuningJob
Source§impl<'de> Deserialize<'de> for FineTuningJob
impl<'de> Deserialize<'de> for FineTuningJob
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FineTuningJob
impl RefUnwindSafe for FineTuningJob
impl Send for FineTuningJob
impl Sync for FineTuningJob
impl Unpin for FineTuningJob
impl UnsafeUnpin for FineTuningJob
impl UnwindSafe for FineTuningJob
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