pub struct WandB {
pub project: String,
pub name: Option<String>,
pub entity: Option<String>,
pub tags: Option<Vec<String>>,
}
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. If not set, we will use the Job ID as the name.
entity: Option<String>
The entity to use for the run. This allows you to set the team or username of the WandB user that you would like associated with the run. If not set, the default entity for the registered WandB API key is used.
A list of tags to be attached to the newly created run. These tags are passed through directly to WandB. Some default tags are generated by OpenAI: “openai/finetune”, “openai/{base-model}”, “openai/{ftjob-abcdef}”.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WandB
impl<'de> Deserialize<'de> for WandB
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
impl StructuralPartialEq for WandB
Auto Trait Implementations§
impl Freeze for WandB
impl RefUnwindSafe for WandB
impl Send for WandB
impl Sync for WandB
impl Unpin for WandB
impl UnwindSafe for 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