Class FineTuning
Fine-tuning information for the voice.
Inherited Members
Namespace: Glitch9.AIDevKit.ElevenLabs
Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
Syntax
public class FineTuning
Properties
| Edit this page View SourceDatasetDurationSeconds
Optional. The duration of the dataset in seconds.
Declaration
[JsonProperty("dataset_duration_seconds")]
public double? DatasetDurationSeconds { get; set; }
Property Value
| Type | Description |
|---|---|
| double? |
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 |
Language
Optional. The language of the fine-tuning process.
Declaration
[JsonProperty("language")]
public string Language { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
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 |
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> |
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?> |
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> |
VerificationAttempts
Optional. The number of verification attempts.
Declaration
[JsonProperty("verification_attempts")]
public List<VerificationAttempt> VerificationAttempts { get; set; }
Property Value
| Type | Description |
|---|---|
| List<VerificationAttempt> |
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 |
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> |