pub struct CreateFineTuningJobRequestWandb {
pub tags: Option<Vec<String>>,
pub entity: Option<String>,
pub name: Option<String>,
pub project: String,
}
Fields§
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}".
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.
name: Option<String>
A display name to set for the run. If not set, we will use the Job ID as the name.
project: String
The name of the project that the new run will be created under.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CreateFineTuningJobRequestWandb
impl<'de> Deserialize<'de> for CreateFineTuningJobRequestWandb
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 CreateFineTuningJobRequestWandb
impl RefUnwindSafe for CreateFineTuningJobRequestWandb
impl Send for CreateFineTuningJobRequestWandb
impl Sync for CreateFineTuningJobRequestWandb
impl Unpin for CreateFineTuningJobRequestWandb
impl UnwindSafe for CreateFineTuningJobRequestWandb
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