pub struct FineTuningJobWandbIntegration {
pub project: String,
pub entity: Option<String>,
pub name: Option<String>,
pub tags: Option<Vec<String>>,
}Expand description
The settings for your integration with Weights and Biases.
Fields§
§project: StringThe name of the project that the new run will be created under.
entity: Option<String>The entity to use for the run.
name: Option<String>A display name to set for the run.
A list of tags to be attached to the newly created run.
Trait Implementations§
Source§impl Clone for FineTuningJobWandbIntegration
impl Clone for FineTuningJobWandbIntegration
Source§fn clone(&self) -> FineTuningJobWandbIntegration
fn clone(&self) -> FineTuningJobWandbIntegration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for FineTuningJobWandbIntegration
impl<'de> Deserialize<'de> for FineTuningJobWandbIntegration
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 FineTuningJobWandbIntegration
impl RefUnwindSafe for FineTuningJobWandbIntegration
impl Send for FineTuningJobWandbIntegration
impl Sync for FineTuningJobWandbIntegration
impl Unpin for FineTuningJobWandbIntegration
impl UnsafeUnpin for FineTuningJobWandbIntegration
impl UnwindSafe for FineTuningJobWandbIntegration
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