Learn Before
Analyzing an Implementation of a Fine-Tuning Method
An engineer is attempting to implement a parameter-efficient fine-tuning method. They prepend a sequence of trainable vectors to the initial input embeddings of a frozen language model. The resulting combined sequence is then processed by all subsequent layers of the model without any further addition of trainable vectors. Identify the primary architectural error in this implementation if the goal was to allow the model to be steered at every layer of processing, and explain why this approach limits the model's adaptability compared to the intended method.
0
1
Tags
Ch.3 Prompting - Foundations of Large Language Models
Foundations of Large Language Models
Foundations of Large Language Models Course
Computing Sciences
Analysis in Bloom's Taxonomy
Cognitive Psychology
Psychology
Social Science
Empirical Science
Science
Related
A researcher is implementing a parameter-efficient fine-tuning method for a large language model. The goal is to adapt the model to a new task by introducing a small number of new, trainable parameters while keeping the vast majority of the original model's weights frozen. Which of the following implementation strategies correctly identifies the unique architectural modification central to this specific method?
In the prefix tuning architecture, a sequence of trainable vectors is prepended exclusively to the initial input embeddings of the model. The hidden states of all subsequent layers are then computed based on this modified input, without any further addition of trainable vectors at those deeper layers.
Analyzing an Implementation of a Fine-Tuning Method