Hi, I've downloaded the pre-trained plda model and used it to implement a x-vector-based speaker verification task. The model is downloaded from openslr site:
https://kaldi-asr.org/models/m7 (VoxCeleb Xvector System 1a)
It seemes that this model has only three parameters, including 2 vectors and 1 matrix, while the plda I'm familiar with should be a 4-parameter set:
m: global mean (vector)
W: Whitening transformation (matrix)
V: Basis of eigenvoice (matrix)
Σ: Covariance of noise of plda (matrix)
Can anyone tell me how this model file corresponds to these 4 parameters?
Thanks.