Search Results for

    Show / Hide Table of Contents

    Class FineTuning

    Fine-tuning information for the voice.

    Inheritance
    object
    FineTuning
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.ElevenLabs
    Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
    Syntax
    public class FineTuning

    Properties

    | Edit this page View Source

    DatasetDurationSeconds

    Optional. The duration of the dataset in seconds.

    Declaration
    [JsonProperty("dataset_duration_seconds")]
    public double? DatasetDurationSeconds { get; set; }
    Property Value
    Type Description
    double?
    | Edit this page View Source

    IsAllowedToFineTune

    Whether the user is allowed to fine-tune the voice.

    Declaration
    [JsonProperty("is_allowed_to_fine_tune")]
    public bool IsAllowedToFineTune { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    Language

    Optional. The language of the fine-tuning process.

    Declaration
    [JsonProperty("language")]
    public string Language { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    ManualVerificationRequested

    Whether a manual verification was requested for the fine-tuning process.

    Declaration
    [JsonProperty("manual_verification_requested")]
    public bool ManualVerificationRequested { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    Message

    Optional. The message of the fine-tuning process.

    Declaration
    [JsonProperty("message")]
    public Dictionary<string, string> Message { get; set; }
    Property Value
    Type Description
    Dictionary<string, string>
    | Edit this page View Source

    Progress

    Optional. The progress of the fine-tuning process.

    Declaration
    [JsonProperty("progress")]
    public Dictionary<string, double?> Progress { get; set; }
    Property Value
    Type Description
    Dictionary<string, double?>
    | Edit this page View Source

    State

    The state of the fine-tuning process for each model.

    Declaration
    [JsonProperty("state")]
    public Dictionary<string, FineTuningState> State { get; set; }
    Property Value
    Type Description
    Dictionary<string, FineTuningState>
    | Edit this page View Source

    VerificationAttempts

    Optional. The number of verification attempts.

    Declaration
    [JsonProperty("verification_attempts")]
    public List<VerificationAttempt> VerificationAttempts { get; set; }
    Property Value
    Type Description
    List<VerificationAttempt>
    | Edit this page View Source

    VerificationAttemptsCount

    The number of verification attempts in the fine-tuning process.

    Declaration
    [JsonProperty("verification_attempts_count")]
    public int VerificationAttemptsCount { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    VerificationFailures

    List of verification failures in the fine-tuning process.

    Declaration
    [JsonProperty("verification_failures")]
    public List<string> VerificationFailures { get; set; }
    Property Value
    Type Description
    List<string>

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation