Quiz Space

Deep Learning Practice · Quiz 2 · 16 Mar 2025 · January 2025 term

Question 14: Below is a snippet for loading a SpeechBrain speaker ver…

Question 14

+2 marksNumerical answer

Below is a snippet for loading a SpeechBrain speaker verification model:

python
from speechbrain.pretrained import SpeakerRecognition
verification_model = SpeakerRecognition.from_hparams(
source="speechbrain/spkrec-xvect-voxceleb",
savedir="tmp/spkrec-xvect")

The speaker verification model uses x-vector embeddings of size 512. If an audio dataset has 100 speakers, calculate the total embedding parameters stored in the model.

Show answer

Correct answer: 51200

Question 14 of 19 in the IIT Madras BS Deep Learning Practice (Deep Learning Practice) Quiz 2 paper sat on 16 Mar 2025, in the January 2025 term (IIT M DEGREE AN EXAM QDB2 16 Mar 2025). It carries 2 marks.

More questions from this paper

  1. Q1Consider the following code using Wav2Vec2Processor to process an audio sample: What will the printed shape be?
  2. Q2Consider the following code snippet: What is the primary mistake in this code?
  3. Q3You have a model that predicts transcriptions for audio clips. You calculate Word Error Rate (WER) using the jiwer pack…
  4. Q4What type of language modeling objective does the Whisper model use during training?
  5. Q5Why is Wav2Vec2CTCTokenizer used instead of directly using Wav2Vec2Processor for tokenization?
  6. Q6Figure question
  7. Q7Which of the following correctly describes the end-to-end ASR workflow when training a Wav2Vec2 model?
  8. Q8Which of the following statements are True?
  9. Q9You transcribed an audio recording using Whisper and applied speaker diarization. However, you notice that the transcri…
  10. Q10Consider the following Whisper transcription function: Which of the following statements are correct about this code?
  11. Q11A speaker diarization pipeline typically consists of multiple components.\ Which of the following components are essent…
  12. Q12Figure question
  13. Q13The following code snippet uses librosa to process an audio file: If audio_data.shape outputs (320000,), how long (in s…
  14. Q15Consider the following 1D Convolutional Neural Network code: Based on the above data, answer the given subquestions. Wh…
  15. Q16Consider the following 1D Convolutional Neural Network code: Based on the above data, answer the given subquestions. Wh…
  16. Q17Below is a snippet for fine-tuning SpeechT5 for Text-to-Speech (TTS): Based on the above data, answer the given subques…
  17. Q18Below is a snippet for fine-tuning SpeechT5 for Text-to-Speech (TTS): Based on the above data, answer the given subques…
  18. Q19Below is a snippet for fine-tuning SpeechT5 for Text-to-Speech (TTS): Based on the above data, answer the given subques…