Class FineTuningJobWandbIntegration
-
- All Implemented Interfaces:
public final class FineTuningJobWandbIntegration
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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
FineTuningJobWandbIntegration.Builder
-
Method Summary
Modifier and Type Method Description final String
project()
The name of the project that the new run will be created under. final Optional<String>
entity()
The entity to use for the run. final Optional<String>
name()
A display name to set for the run. final Optional<List<String>>
tags()
A list of tags to be attached to the newly created run. final JsonField<String>
_project()
The name of the project that the new run will be created under. final JsonField<String>
_entity()
The entity to use for the run. final JsonField<String>
_name()
A display name to set for the run. final JsonField<List<String>>
_tags()
A list of tags to be attached to the newly created run. final Map<String, JsonValue>
_additionalProperties()
final FineTuningJobWandbIntegration
validate()
final FineTuningJobWandbIntegration.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static FineTuningJobWandbIntegration.Builder
builder()
-
-
Method Detail
-
entity
final 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.
-
name
final Optional<String> name()
A display name to set for the run. If not set, we will use the Job ID as the name.
-
tags
final Optional<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}".
-
_project
final JsonField<String> _project()
The name of the project that the new run will be created under.
-
_entity
final 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 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 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}".
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final FineTuningJobWandbIntegration validate()
-
toBuilder
final FineTuningJobWandbIntegration.Builder toBuilder()
-
builder
final static FineTuningJobWandbIntegration.Builder builder()
-
-
-
-