pub struct FineTuningJobObject {Show 14 fields
pub id: String,
pub created_at: i64,
pub error: Option<FineTuningJobError>,
pub fine_tuned_model: Option<String>,
pub finished_at: Option<String>,
pub hyperparameters: HyperParameters,
pub model: String,
pub object: String,
pub organization_id: String,
pub result_files: Vec<String>,
pub status: String,
pub trained_tokens: Option<i64>,
pub training_file: String,
pub validation_file: Option<String>,
}
Fields§
§id: String
§created_at: i64
§error: Option<FineTuningJobError>
§fine_tuned_model: Option<String>
§finished_at: Option<String>
§hyperparameters: HyperParameters
§model: String
§object: String
§organization_id: String
§result_files: Vec<String>
§status: String
§trained_tokens: Option<i64>
§training_file: String
§validation_file: Option<String>
Trait Implementations§
Source§impl Debug for FineTuningJobObject
impl Debug for FineTuningJobObject
Source§impl<'de> Deserialize<'de> for FineTuningJobObject
impl<'de> Deserialize<'de> for FineTuningJobObject
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 FineTuningJobObject
impl RefUnwindSafe for FineTuningJobObject
impl Send for FineTuningJobObject
impl Sync for FineTuningJobObject
impl Unpin for FineTuningJobObject
impl UnwindSafe for FineTuningJobObject
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more