Class FineTuning
Fine-tuning information for the voice.
Inheritance
object
FineTuning
Namespace: Glitch9.AIDevKit.ElevenLabs
Assembly: .dll
Syntax
public class FineTuning
Properties
DatasetDurationSeconds
Optional. The duration of the dataset in seconds.
Declaration
public double? DatasetDurationSeconds { get; set; }
Property Value
Type | Description |
---|---|
double? |
IsAllowedToFineTune
Whether the user is allowed to fine-tune the voice.
Declaration
public bool IsAllowedToFineTune { get; set; }
Property Value
Type | Description |
---|---|
bool |
Language
Optional. The language of the fine-tuning process.
Declaration
public string Language { get; set; }
Property Value
Type | Description |
---|---|
string |
ManualVerificationRequested
Whether a manual verification was requested for the fine-tuning process.
Declaration
public bool ManualVerificationRequested { get; set; }
Property Value
Type | Description |
---|---|
bool |
Message
Optional. The message of the fine-tuning process.
Declaration
public Dictionary<string, string> Message { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
Progress
Optional. The progress of the fine-tuning process.
Declaration
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
public Dictionary<string, FineTuningState> State { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, FineTuningState> |
VerificationAttempts
Optional. The number of verification attempts.
Declaration
public List<VerificationAttempt> VerificationAttempts { get; set; }
Property Value
Type | Description |
---|---|
List<VerificationAttempt> |
VerificationAttemptsCount
The number of verification attempts in the fine-tuning process.
Declaration
public int VerificationAttemptsCount { get; set; }
Property Value
Type | Description |
---|---|
int |
VerificationFailures
List of verification failures in the fine-tuning process.
Declaration
public List<string> VerificationFailures { get; set; }
Property Value
Type | Description |
---|---|
List<string> |