Class FineTuningJobWandbIntegration.Builder
-
- All Implemented Interfaces:
public final class FineTuningJobWandbIntegration.Builder
A builder for FineTuningJobWandbIntegration.
-
-
Method Summary
-
-
Method Detail
-
project
final FineTuningJobWandbIntegration.Builder project(String project)
The name of the project that the new run will be created under.
-
project
final FineTuningJobWandbIntegration.Builder project(JsonField<String> project)
The name of the project that the new run will be created under.
-
entity
final FineTuningJobWandbIntegration.Builder entity(String entity)
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.
-
entity
final FineTuningJobWandbIntegration.Builder entity(Optional<String> entity)
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.
-
entity
final FineTuningJobWandbIntegration.Builder entity(JsonField<String> entity)
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
final FineTuningJobWandbIntegration.Builder name(String name)
A display name to set for the run. If not set, we will use the Job ID as the name.
-
name
final FineTuningJobWandbIntegration.Builder name(Optional<String> name)
A display name to set for the run. If not set, we will use the Job ID as the name.
-
name
final FineTuningJobWandbIntegration.Builder name(JsonField<String> name)
A display name to set for the run. If not set, we will use the Job ID as the name.
-
tags
final FineTuningJobWandbIntegration.Builder tags(List<String> tags)
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}".
-
tags
final FineTuningJobWandbIntegration.Builder tags(JsonField<List<String>> tags)
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}".
-
addTag
final FineTuningJobWandbIntegration.Builder addTag(String tag)
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}".
-
additionalProperties
final FineTuningJobWandbIntegration.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FineTuningJobWandbIntegration.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FineTuningJobWandbIntegration.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FineTuningJobWandbIntegration.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FineTuningJobWandbIntegration.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FineTuningJobWandbIntegration build()
-
-
-
-