Class: OpenAI::Models::FineTuning::FineTuningJobWandbIntegration

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/openai/models/fine_tuning/fine_tuning_job_wandb_integration.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

This class inherits a constructor from OpenAI::Internal::Type::BaseModel

Instance Attribute Details

#entityString?

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.

Returns:

  • (String, nil)


19
# File 'lib/openai/models/fine_tuning/fine_tuning_job_wandb_integration.rb', line 19

optional :entity, String, nil?: true

#nameString?

A display name to set for the run. If not set, we will use the Job ID as the name.

Returns:

  • (String, nil)


26
# File 'lib/openai/models/fine_tuning/fine_tuning_job_wandb_integration.rb', line 26

optional :name, String, nil?: true

#projectString

The name of the project that the new run will be created under.

Returns:

  • (String)


11
# File 'lib/openai/models/fine_tuning/fine_tuning_job_wandb_integration.rb', line 11

required :project, String

#tagsArray<String>?

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”.

Returns:

  • (Array<String>, nil)


34
# File 'lib/openai/models/fine_tuning/fine_tuning_job_wandb_integration.rb', line 34

optional :tags, OpenAI::Internal::Type::ArrayOf[String]