Quiz Space

Deep Learning Practice · Quiz 1 · 13 Jul 2025 · May 2025 term

Question 1: A start-up is building a new language model for a low-res…

Question 1

+2 marksOne correct option

A start-up is building a new language model for a low-resource language with many compound words and complex morphology. They are debating tokenization strategies. Which of the following approaches is most likely to offer the best balance between vocabulary size, handling OOV words, and capturing morphological variants effectively for this scenario?

  1. A

    Character-level tokenization

  2. B

    Word-level tokenization with a fixed vocabulary of 50,000 common words.

  3. C

    Subword tokenization (e.g., BPE or SentencePiece) trained on the available corpus.

  4. D

    Using only pre-defined special tokens and treating all other text as raw byte sequences.

Show answer

Correct answer

  • C

    Subword tokenization (e.g., BPE or SentencePiece) trained on the available corpus.

Question 1 of 16 in the IIT Madras BS Deep Learning Practice (Deep Learning Practice) Quiz 1 paper sat on 13 Jul 2025, in the May 2025 term (IIT M DEGREE AN EXAM QDB2 13 July 2025). It carries 2 marks.

More questions from this paper

  1. Q2When fully fine-tuning a large pre-trained Transformer model (e.g., >1 Billion parameters), which of the following cont…
  2. Q3A research team wants their pre-trained language model to generate more helpful and harmless responses without extensiv…
  3. Q4Consider the following Python code snippet using Hugging Face tokenizers: Which of the following attributes would be pr…
  4. Q5Consider the following Python code snippet: After executing the code above, what will dataset.column_names return?
  5. Q6Which of the following statements accurately describe common characteristics or goals of subword tokenization algorithm…
  6. Q7A team has a powerful pre-trained language model (e.g., a GPT-3 class model). They want to adapt it for a new summariza…
  7. Q8Figure question
  8. Q9You start with an initial vocabulary consisting only of individual characters: {"a":10, "b":8, "c":5, "\</w>":15}. Your…
  9. Q10Consider the following Python code snippet: How many samples will filtered_dataset contain after executing the code?
  10. Q11Figure question
  11. Q12Based on the above data, answer the given subquestions.
  12. Q13Based on the provided configuration, calculate the total number of parameters in the model’s embedding layer (token emb…
  13. Q14Based on the provided configuration, what is a primary characteristic of this language model’s architecture and trainin…
  14. Q15Considering the Adam optimizer stores 2 floating-point values per model parameter and parameters are 32-bit floats (4 b…
  15. Q16The configuration states the model uses Byte Pair Encoding (BPE). What is a key implication of this choice for handling…