pub struct FineTuningWandbIntegration {
pub project: Option<String>,
pub entity: Option<String>,
pub name: Option<String>,
pub tags: Vec<String>,
pub extra: BTreeMap<String, Value>,
}Expand description
表示 Weights & Biases 集成配置。
Fields§
§project: Option<String>项目名。
entity: Option<String>实体名。
name: Option<String>展示名称。
标签集合。
extra: BTreeMap<String, Value>额外字段。
Trait Implementations§
Source§impl Clone for FineTuningWandbIntegration
impl Clone for FineTuningWandbIntegration
Source§fn clone(&self) -> FineTuningWandbIntegration
fn clone(&self) -> FineTuningWandbIntegration
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 FineTuningWandbIntegration
impl Debug for FineTuningWandbIntegration
Source§impl Default for FineTuningWandbIntegration
impl Default for FineTuningWandbIntegration
Source§fn default() -> FineTuningWandbIntegration
fn default() -> FineTuningWandbIntegration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FineTuningWandbIntegration
impl<'de> Deserialize<'de> for FineTuningWandbIntegration
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 FineTuningWandbIntegration
impl RefUnwindSafe for FineTuningWandbIntegration
impl Send for FineTuningWandbIntegration
impl Sync for FineTuningWandbIntegration
impl Unpin for FineTuningWandbIntegration
impl UnsafeUnpin for FineTuningWandbIntegration
impl UnwindSafe for FineTuningWandbIntegration
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