pub struct FineTuneFiles {
pub id: String,
pub object: String,
pub bytes: u32,
pub created_at: i64,
pub filename: String,
pub purpose: String,
}
Expand description
A struct representing a file used during fine-tuning a model.
Fields§
§id: String
The ID of the file.
object: String
The object type, which is always “file”.
bytes: u32
The size of the file in bytes.
created_at: i64
The Unix timestamp (in seconds) when the file was created.
filename: String
The name of the file.
purpose: String
The purpose of the file, which can be “training” or “validation”.
Trait Implementations§
Source§impl Debug for FineTuneFiles
impl Debug for FineTuneFiles
Source§impl<'de> Deserialize<'de> for FineTuneFiles
impl<'de> Deserialize<'de> for FineTuneFiles
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 FineTuneFiles
impl RefUnwindSafe for FineTuneFiles
impl Send for FineTuneFiles
impl Sync for FineTuneFiles
impl Unpin for FineTuneFiles
impl UnwindSafe for FineTuneFiles
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