pub struct FineTuningIntegration {
pub type: FineTuningJobIntegrationType,
pub wandb: WandB,
}
Fields§
§type: FineTuningJobIntegrationType
The type of integration to enable. Currently, only “wandb” (Weights and Biases) is supported.
wandb: WandB
The settings for your integration with Weights and Biases. This payload specifies the project that metrics will be sent to. Optionally, you can set an explicit display name for your run, add tags to your run, and set a default entity (team, username, etc) to be associated with your run.
Trait Implementations§
Source§impl Clone for FineTuningIntegration
impl Clone for FineTuningIntegration
Source§fn clone(&self) -> FineTuningIntegration
fn clone(&self) -> FineTuningIntegration
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
impl Debug for FineTuningIntegration
Source§impl<'de> Deserialize<'de> for FineTuningIntegration
impl<'de> Deserialize<'de> for FineTuningIntegration
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
Source§impl PartialEq for FineTuningIntegration
impl PartialEq for FineTuningIntegration
Source§impl Serialize for FineTuningIntegration
impl Serialize for FineTuningIntegration
impl StructuralPartialEq for FineTuningIntegration
Auto Trait Implementations§
impl Freeze for FineTuningIntegration
impl RefUnwindSafe for FineTuningIntegration
impl Send for FineTuningIntegration
impl Sync for FineTuningIntegration
impl Unpin for FineTuningIntegration
impl UnwindSafe for FineTuningIntegration
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