Class FineTuningJobWandbIntegrationObject.Builder
-
- All Implemented Interfaces:
public final class FineTuningJobWandbIntegrationObject.Builder
A builder for FineTuningJobWandbIntegrationObject.
-
-
Method Summary
-
-
Method Detail
-
type
final FineTuningJobWandbIntegrationObject.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("wandb")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
wandb
final FineTuningJobWandbIntegrationObject.Builder wandb(FineTuningJobWandbIntegration wandb)
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.
-
wandb
final FineTuningJobWandbIntegrationObject.Builder wandb(JsonField<FineTuningJobWandbIntegration> wandb)
Sets Builder.wandb to an arbitrary JSON value.
You should usually call Builder.wandb with a well-typed FineTuningJobWandbIntegration value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final FineTuningJobWandbIntegrationObject.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FineTuningJobWandbIntegrationObject.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FineTuningJobWandbIntegrationObject.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FineTuningJobWandbIntegrationObject.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FineTuningJobWandbIntegrationObject.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FineTuningJobWandbIntegrationObject build()
Returns an immutable instance of FineTuningJobWandbIntegrationObject.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.wandb()
-
-
-
-