AI Dev Kit
Search Results for

    Show / Hide Table of Contents

    Class FineTuningJob

    The fine_tuning.job object represents a fine-tuning job that has been created through the API.

    Inheritance
    object
    ModelResponse
    FineTuningJob
    Inherited Members
    ModelResponse.Id
    ModelResponse.Object
    ModelResponse.Model
    ModelResponse.CreatedAt
    ModelResponse.Metadata
    ModelResponse.Usage
    Namespace: Glitch9.AIDevKit.OpenAI
    Assembly: .dll
    Syntax
    public class FineTuningJob : ModelResponse

    Properties

    Error

    For fine-tuning jobs that have failed, this will contain more information on the cause of the failure.

    Declaration
    public ErrorResponse Error { get; set; }
    Property Value
    Type Description
    ErrorResponse

    FineTunedModel

    The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running.

    Declaration
    public string FineTunedModel { get; set; }
    Property Value
    Type Description
    string

    FinishedAt

    The Unix timestamp (in seconds) for when the fine-tuning job was finished. The value will be null if the fine-tuning job is still running.

    Declaration
    public UnixTime? FinishedAt { get; set; }
    Property Value
    Type Description
    UnixTime?

    Hyperparameters

    The hyperparameters used for the fine-tuning job. See the fine-tuning guide for more details.

    Declaration
    public HyperParameters Hyperparameters { get; set; }
    Property Value
    Type Description
    HyperParameters

    OrganizationId

    The organization that owns the fine-tuning job.

    Declaration
    public string OrganizationId { get; set; }
    Property Value
    Type Description
    string

    ResultFiles

    The compiled results file ID(s) for the fine-tuning job. You can retrieve the results with the Files API.

    Declaration
    public string[] ResultFiles { get; set; }
    Property Value
    Type Description
    string[]

    Status

    The current status of the fine-tuning job, which can be either validating_files, queued, running, succeeded, failed, or cancelled.

    Declaration
    public FineTuningJobStatus? Status { get; set; }
    Property Value
    Type Description
    FineTuningJobStatus?

    TrainedTokens

    The total number of billable tokens processed by this fine-tuning job. The value will be null if the fine-tuning job is still running.

    Declaration
    public int? TrainedTokens { get; set; }
    Property Value
    Type Description
    int?

    TrainingFile

    The file ID used for training. You can retrieve the training data with the Files API.

    Declaration
    public string TrainingFile { get; set; }
    Property Value
    Type Description
    string

    ValidationFile

    The file ID used for validation. You can retrieve the validation results with the Files API.

    Declaration
    public string ValidationFile { get; set; }
    Property Value
    Type Description
    string
    In this article
    Back to top Generated by DocFX