Class: OpenAI::Models::FineTuning::JobCreateParams::Integration::Wandb
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::FineTuning::JobCreateParams::Integration::Wandb
- Defined in:
- lib/openai/models/fine_tuning/job_create_params.rb
Overview
Instance Attribute Summary collapse
-
#entity ⇒ String?
The entity to use for the run.
-
#name ⇒ String?
A display name to set for the run.
-
#project ⇒ String
The name of the project that the new run will be created under.
-
#tags ⇒ Array<String>?
A list of tags to be attached to the newly created run.
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
#entity ⇒ 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.
287 |
# File 'lib/openai/models/fine_tuning/job_create_params.rb', line 287 optional :entity, String, nil?: true |
#name ⇒ String?
A display name to set for the run. If not set, we will use the Job ID as the name.
294 |
# File 'lib/openai/models/fine_tuning/job_create_params.rb', line 294 optional :name, String, nil?: true |
#project ⇒ String
The name of the project that the new run will be created under.
279 |
# File 'lib/openai/models/fine_tuning/job_create_params.rb', line 279 required :project, String |
#tags ⇒ Array<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”.
302 |
# File 'lib/openai/models/fine_tuning/job_create_params.rb', line 302 optional :tags, OpenAI::Internal::Type::ArrayOf[String] |