OpenAIFineTuneModel class final

This class is used to represent an OpenAI fine-tuning job.

Annotations
  • @immutable

Constructors

OpenAIFineTuneModel({required String id, required String model, required DateTime createdAt, required List<OpenAIFineTuneEventModel>? events, required String? fineTunedModel, required OpenAIFineTuneHyperParamsModel? hyperparams, required String? organizationId, required List<String> resultFiles, required String status, required List<String>? validationFiles, required List<OpenAIFineTuneTrainingFilesModel?> trainingFiles, required DateTime? updatedAt})
This class is used to represent an OpenAI fine-tuning job.
const
OpenAIFineTuneModel.fromMap(Map<String, dynamic> json)
This class is used to represent an OpenAI fine-tuning job. This method is used to convert a Map<String, dynamic> object to a OpenAIFineTuneModel object.
factory

Properties

createdAt DateTime
The date the fine-tuning job was created.
final
events List<OpenAIFineTuneEventModel>?
The events generated by the fine-tuning job.
final
fineTunedModel String?
The fine-tuned model.
final
hashCode int
The hash code for this object.
no setteroverride
hyperparams OpenAIFineTuneHyperParamsModel?
The hyperparameters used for fine-tuning.
final
id String
The ID of the fine-tuning job.
final
model String
The model used for fine-tuning.
final
organizationId String?
The ID of the organization that owns the fine-tuning job.
final
resultFiles List<String>
The result files generated by the fine-tuning job.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
status String
The status of the fine-tuning job.
final
trainingFiles List<OpenAIFineTuneTrainingFilesModel?>
The training files used for fine-tuning.
final
updatedAt DateTime?
The date the fine-tuning job was last updated.
final
validationFiles List<String>?
The validation files used for fine-tuning.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(covariant OpenAIFineTuneModel other) bool
The equality operator.
override