pub struct FineTuningIntegration_Wandb {
pub project: String,
pub name: Option<String>,
pub entity: Option<String>,
pub tags: Option<Vec<String>>,
}
Expand description
The settings for your integration with Weights and Biases.
Fields§
§project: String
The name of the project that the new run will be created under.
name: Option<String>
A display name to set for the run.
entity: Option<String>
The entity to use for the run.
A list of tags to be attached to the newly created run.
Trait Implementations§
Source§impl Clone for FineTuningIntegration_Wandb
impl Clone for FineTuningIntegration_Wandb
Source§fn clone(&self) -> FineTuningIntegration_Wandb
fn clone(&self) -> FineTuningIntegration_Wandb
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 moreSource§impl Debug for FineTuningIntegration_Wandb
impl Debug for FineTuningIntegration_Wandb
Source§impl Default for FineTuningIntegration_Wandb
impl Default for FineTuningIntegration_Wandb
Source§fn default() -> FineTuningIntegration_Wandb
fn default() -> FineTuningIntegration_Wandb
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FineTuningIntegration_Wandb
impl RefUnwindSafe for FineTuningIntegration_Wandb
impl Send for FineTuningIntegration_Wandb
impl Sync for FineTuningIntegration_Wandb
impl Unpin for FineTuningIntegration_Wandb
impl UnwindSafe for FineTuningIntegration_Wandb
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