Here we will list out all the conditionings the model accepts as well as a short description and some tips for optimal use. For conditionings with a learned unconditional, they can be set to that to allow the model to infer an appropriate setting.
- Type:
EspeakPhonemeConditioner
- Description:
Responsible for cleaning, phonemicizing, tokenizing, and embedding the text provided to the model. This is the text pre-processing pipeline. If you would like to change how a word is pronounced or enter raw phonemes you can do that here.
- Type:
PassthroughConditioner
- Attributes:
- cond_dim:
128
- uncond_type:
learned
- projection:
linear
- cond_dim:
- Description:
An embedded representation of the speakers voice. We use these speaker embedding models. It can capture a surprising amount of detail from the reference clip and supports arbitrary length input. Try to input clean reference clips containing only speech. It can be valid to concatenate multiple clean samples from the same speaker into one long sample and may lead to better cloning. If the speaker clip is very long, it is advisable to cut out long speech-free background music segments if they exist. If the reference clip is yielding noisy outputs with denoising enabled we recommend doing source separation before cloning.
- Type:
FourierConditioner
- Attributes:
- input_dim:
8
- uncond_type:
learned
- input_dim:
- Description:
Encodes emotion in an 8D vector. Included emotions are Happiness, Sadness, Disgust, Fear, Surprise, Anger, Other, Neutral in that order. This vector tends to be entangled with various other conditioning inputs. More notably, it's entangled with text based on the text sentiment (eg. Angry texts will be more effectively conditioned to be angry, but if you try to make it sound sad it will be a lot less effective). It's also entangled with pitch standard deviation since larger values there tend to correlate to more emotional utterances. It's also heavily correlated with VQScore and DNSMOS as these conditionings favor neutral speech. It's also possible to do a form of "negative prompting" by doing CFG where the unconditional branch is set to a highly neutral emotion vector instead of the true unconditional value, doing this will exaggerate the emotions as it pushes the model away from being neutral.
- Type:
FourierConditioner
- Attributes:
- min_val:
0
- max_val:
24000
- uncond_type:
learned
- min_val:
- Description:
Specifies the max frequency of the audio. For best results select 22050 or 24000 as these correspond to 44.1 and 48KHz audio respectively. They should not be any different in terms of actual max frequency since the model's sampling rate is 44.1KHz but they represent different slices of data which lead to slightly different voicing. Selecting a lower value generally produces lower-quality results both in terms of acoustics and voicing.
- Type:
FourierConditioner
- Attributes:
- min_val:
0
- max_val:
400
- uncond_type:
learned
- min_val:
- Description:
Specifies the standard deviation of the pitch of the output audio. Wider variations of pitch tend to be more correlated with expressive speech. Good values are from 20-45 for normal speech and 60-150 for expressive speech. Higher than that generally tend to be crazier samples.
- Type:
FourierConditioner
- Attributes:
- min_val:
0
- max_val:
40
- uncond_type:
learned
- min_val:
- Description:
Specifies the number of phonemes to be read per second. When entering a long text, it is advisable to adjust the speaking rate such that the number of phonemes is readable within the generation length. For example, if your generation length is 10 seconds, and your input is 300 phonemes, you would want either 30 phonemes per second (which is very very fast) or to generate a longer sample. The model's maximum is 30 seconds. Please note that unrealistic speaking rates can be OOD for the model and create undesirable effects, so at the 30-second limit, it can be better to cut the text short and do multiple generations than to feed the model the entire prompt and have an unrealistically low speaking rate.
- Type:
IntegerConditioner
- Attributes:
- min_val:
-1
- max_val:
126
- uncond_type:
learned
- min_val:
- Description:
Indicates which language the output should be in. A mapping for these values can be found in the conditioning section of Zonos.
- Type:
FourierConditioner
- Attributes:
- input_dim:
8
- min_val:
0.5
- max_val:
0.8
- uncond_type:
learned
- input_dim:
- Description:
Encodes the desired VQScore value for the output audio. VQScore is an unsupervised speech quality (cleanliness) estimation method that we found has superior generalization and reduced biases compared to supervised methods like DNSMOS. A good value for our model is 0.78 for high-quality speech. The eight dimensions correspond to consecutive 1/8th chunks of the audio. (eg. for an 8-second output, the first dimension represents the quality of the first second only). For inference, we generally set all 8 dimensions to the same value. This has an unfortunately strong correlation with expressiveness, so for expressive speech, we recommend setting it to unconditional.
- Type:
FourierConditioner
- Attributes:
- min_val:
-1.0
- max_val:
1000
- uncond_type:
learned
- min_val:
- Description:
Encodes loss values from a CTC (Connectionist Temporal Classification) setup, this indicates how well the training-time transcription matched with the audio according to a CTC model. For inference always use low values (eg. 0.0 or 1.0)
- Type:
FourierConditioner
- Attributes:
- min_val:
1
- max_val:
5
- uncond_type:
learned
- min_val:
- Description:
A MOS score for the output audio. This is similar to VQScore and tends to have a stronger entanglement with emotions. It additionally has a strong entanglement with languages. Set to 4.0 for very clean and neutral English speech, else we recommend setting it to unconditional.
- Type:
IntegerConditioner
- Attributes:
- min_val:
0
- max_val:
1
- uncond_type:
learned
- min_val:
- Description:
Indicates if the speaker embedding is noisy or not. If checked this lets the model clean (denoise) the input speaker embedding. When this is set to True, VQScore and DNSMOS will have a lot more power to clean the speaker embedding, so for very noisy input samples we recommend setting this to True and specifying a high VQScore value. If your speaker cloning outputs sound echo-y or do weird things, setting this to True will help.