Struct ark_api::ml::StartExperimentSettings
source · pub struct StartExperimentSettings {
pub trial_name: String,
pub experiment_name: String,
pub configuration: String,
pub duration: Duration,
pub hardware: HardwareType,
pub cloud_worker: Option<CloudWorkerSettings>,
}Fields§
§trial_name: StringThe name of the trial
experiment_name: StringThe experiment the trial belongs to
configuration: StringThe configuration to train with
duration: DurationThe duration to train for (at most).
hardware: HardwareTypeThe hardware class to use (in the cloud).
cloud_worker: Option<CloudWorkerSettings>Settings for the cloud worker, if used
Trait Implementations§
source§impl Clone for StartExperimentSettings
impl Clone for StartExperimentSettings
source§fn clone(&self) -> StartExperimentSettings
fn clone(&self) -> StartExperimentSettings
Returns a copy 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 RefUnwindSafe for StartExperimentSettings
impl Send for StartExperimentSettings
impl Sync for StartExperimentSettings
impl Unpin for StartExperimentSettings
impl UnwindSafe for StartExperimentSettings
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