pub struct CreateFineTuningJobRequestIntegrationWandb {
pub project: String,
pub name: Option<String>,
pub entity: Option<String>,
pub tags: Option<Vec<String>>,
}
Expand description
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.
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}”.
Implementations§
Source§impl CreateFineTuningJobRequestIntegrationWandb
impl CreateFineTuningJobRequestIntegrationWandb
Sourcepub fn builder() -> CreateFineTuningJobRequestIntegrationWandbBuilder<((), (), (), ())>
pub fn builder() -> CreateFineTuningJobRequestIntegrationWandbBuilder<((), (), (), ())>
Create a builder for building CreateFineTuningJobRequestIntegrationWandb
.
On the builder, call .project(...)
, .name(...)
(optional), .entity(...)
(optional), .tags(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of CreateFineTuningJobRequestIntegrationWandb
.
Trait Implementations§
Source§impl Clone for CreateFineTuningJobRequestIntegrationWandb
impl Clone for CreateFineTuningJobRequestIntegrationWandb
Source§fn clone(&self) -> CreateFineTuningJobRequestIntegrationWandb
fn clone(&self) -> CreateFineTuningJobRequestIntegrationWandb
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'de> Deserialize<'de> for CreateFineTuningJobRequestIntegrationWandb
impl<'de> Deserialize<'de> for CreateFineTuningJobRequestIntegrationWandb
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>,
Source§impl PartialEq for CreateFineTuningJobRequestIntegrationWandb
impl PartialEq for CreateFineTuningJobRequestIntegrationWandb
Source§fn eq(&self, other: &CreateFineTuningJobRequestIntegrationWandb) -> bool
fn eq(&self, other: &CreateFineTuningJobRequestIntegrationWandb) -> bool
self
and other
values to be equal, and is used by ==
.