pub struct PretrainPackage {
pub output_dir: String,
pub export_results: Vec<ExportResult>,
pub script_path: String,
pub config_path: String,
}Expand description
Pretraining package result
Fields§
§output_dir: StringOutput directory
export_results: Vec<ExportResult>Export results
script_path: StringPath to training script
config_path: StringPath to config file
Trait Implementations§
Source§impl Clone for PretrainPackage
impl Clone for PretrainPackage
Source§fn clone(&self) -> PretrainPackage
fn clone(&self) -> PretrainPackage
Returns a duplicate 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 PretrainPackage
impl RefUnwindSafe for PretrainPackage
impl Send for PretrainPackage
impl Sync for PretrainPackage
impl Unpin for PretrainPackage
impl UnwindSafe for PretrainPackage
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