[ad_1]
Mechanistic Interpretability on prediction of repeated tokens
![Shuyang Xiang](https://miro.medium.com/v2/resize:fill:88:88/1*Q-6F64L3h4jxYNYPiqHVaQ.jpeg)
![Towards Data Science](https://miro.medium.com/v2/resize:fill:48:48/1*CJe3891yB1A1mzMdqemkdg.jpeg)
The event of large-scale language fashions, particularly ChatGPT, has left those that have experimented with it, myself included, astonished by its exceptional linguistic prowess and its skill to perform numerous duties. Nevertheless, many researchers, together with myself, whereas marveling at its capabilities, additionally discover themselves perplexed. Regardless of figuring out the mannequin’s structure and the particular values of its weights, we nonetheless battle to grasp why a specific sequence of inputs results in a particular sequence of outputs.
On this weblog publish, I’ll try and demystify GPT2-small utilizing mechanistic interpretability on a easy case: the prediction of repeated tokens.
Conventional mathematical instruments for explaining machine studying fashions aren’t solely appropriate for language fashions.
Take into account SHAP, a useful device for explaining machine studying fashions. It’s proficient at figuring out which function considerably influenced the prediction of a great high quality wine. Nevertheless, it’s vital to do not forget that language fashions make predictions on the token stage, whereas SHAP values are principally computed on the function stage, making them probably unfit for tokens.
Furthermore, Language Fashions (LLMs) have quite a few parameters and inputs, making a high-dimensional house. Computing SHAP values is dear even in low-dimensional areas, and much more so within the high-dimensional house of LLMs.
Regardless of tolerating the excessive computational prices, the reasons supplied by SHAP may be superficial. As an illustration, figuring out that the time period “potter” most affected the output prediction as a result of earlier point out of “Harry” doesn’t present a lot perception. It leaves us unsure in regards to the a part of the mannequin or the particular mechanism answerable for such a prediction.
Mechanistic Interpretability provides a unique strategy. It doesn’t simply establish vital options or inputs for a mannequin’s predictions. As an alternative, it sheds gentle on the underlying mechanisms or reasoning processes, serving to us perceive how a mannequin makes its predictions or selections.
We can be utilizing GPT2-small for a easy job: predicting a sequence of repeated tokens. The library we’ll use is TransformerLens, which is designed for mechanistic interpretability of GPT-2 model language fashions.
gpt2_small: HookedTransformer = HookedTransformer.from_pretrained(“gpt2-small”)
We use the code above to load the GPT2-Small mannequin and predict tokens on a sequence generated by a particular perform. This sequence contains two similar token sequences, adopted by the bos_token. An instance can be “ABCDABCD” + bos_token when the seq_len is 3. For readability, we confer with the sequence from the start to the seq_len as the primary half, and the remaining sequence, excluding the bos_token, because the second half.
def generate_repeated_tokens(mannequin: HookedTransformer, seq_len: int, batch: int = 1) -> Int[Tensor, “batch full_seq_len”]:”’Generates a sequence of repeated random tokens
Outputs are:rep_tokens: [batch, 1+2*seq_len]”’bos_token = (t.ones(batch, 1) * mannequin.tokenizer.bos_token_id).lengthy() # generate bos token for every batch
rep_tokens_half = t.randint(0, mannequin.cfg.d_vocab, (batch, seq_len), dtype=t.int64)rep_tokens = t.cat([bos_token,rep_tokens_half,rep_tokens_half], dim=-1).to(system)return rep_tokens
Once we enable the mannequin to run on the generated token, we discover an attention-grabbing statement: the mannequin performs considerably higher on the second half of the sequence than on the primary half. That is measured by the log possibilities on the right tokens. To be exact, the efficiency on the primary half is -13.898, whereas the efficiency on the second half is -0.644.
We are able to additionally calculate prediction accuracy, outlined because the ratio of appropriately predicted tokens (these similar to the generated tokens) to the full variety of tokens. The accuracy for the primary half sequence is 0.0, which is unsurprising since we’re working with random tokens that lack precise which means. In the meantime, the accuracy for the second half is 0.93, considerably outperforming the primary half.
Discovering induction head
The statement above may be defined by the existence of an induction circuit. It is a circuit that scans the sequence for prior cases of the present token, identifies the token that adopted it beforehand, and predicts that the identical sequence will repeat. As an illustration, if it encounters an ‘A’, it scans for the earlier ‘A’ or a token similar to ‘A’ within the embedding house, identifies the next token ‘B’, after which predicts the following token after ‘A’ to be ‘B’ or a token similar to ‘B’ within the embedding house.
This prediction course of may be damaged down into two steps:
Establish the earlier identical (or comparable) token. Each token within the second half of the sequence ought to “concentrate” to the token ‘seq_len’ locations earlier than it. As an illustration, the ‘A’ at place 4 ought to take note of the ‘A’ at place 1 if ‘seq_len’ is 3. We are able to name the eye head performing this job the “induction head.”Establish the next token ‘B’. That is the method of copying info from the earlier token (e.g., ‘A’) into the following token (e.g., ‘B’). This info can be used to “reproduce” ‘B’ when ‘A’ seems once more. We are able to name the eye head performing this job the “earlier token head.”
These two heads represent a whole induction circuit. Notice that generally the time period “induction head” can be used to explain your complete “induction circuit.” For extra introduction of induction circuit, I extremely advocate the article In-context studying and induction head which is a grasp piece!
Now, let’s establish the eye head and former head in GPT2-small.
The next code is used to seek out the induction head. First, we run the mannequin with 30 batches. Then, we calculate the imply worth of the diagonal with an offset of seq_len within the consideration sample matrix. This technique lets us measure the diploma of consideration the present token offers to the one which seems seq_len beforehand.
def induction_score_hook(sample: Float[Tensor, “batch head_index dest_pos source_pos”],hook: HookPoint,):”’Calculates the induction rating, and shops it within the [layer, head] place of the `induction_score_store` tensor.”’induction_stripe = sample.diagonal(dim1=-2, dim2=-1, offset=1-seq_len) # src_pos, des_pos, one place proper from seq_leninduction_score = einops.scale back(induction_stripe, “batch head_index place -> head_index”, “imply”)induction_score_store[hook.layer(), :] = induction_score
seq_len = 50batch = 30rep_tokens_30 = generate_repeated_tokens(gpt2_small, seq_len, batch)induction_score_store = t.zeros((gpt2_small.cfg.n_layers, gpt2_small.cfg.n_heads), system=gpt2_small.cfg.system)
rep_tokens_30,return_type=None, pattern_hook_names_filter,induction_score_hook)])
Now, let’s study the induction scores. We’ll discover that some heads, such because the one on layer 5 and head 5, have a excessive induction rating of 0.91.
We are able to additionally show the eye sample of this head. You’ll discover a transparent diagonal line as much as an offset of seq_len.
Equally, we are able to establish the previous token head. As an illustration, layer 4 head 11 demonstrates a robust sample for the earlier token.
How do MLP layers attribute?
Let’s contemplate this query: do MLP layers depend? We all know that GPT2-Small incorporates each consideration and MLP layers. To analyze this, I suggest utilizing an ablation approach.
Ablation, because the title implies, systematically removes sure mannequin elements and observes how efficiency adjustments in consequence.
We are going to substitute the output of the MLP layers within the second half of the sequence with these from the primary half, and observe how this impacts the ultimate loss perform. We are going to compute the distinction between the loss after changing the MLP layer outputs and the unique lack of the second half sequence utilizing the next code.
def patch_residual_component(residual_component,hook,pos,cache,):residual_component[0,pos, :] = cache[hook.name][pos-seq_len, :]return residual_component
ablation_scores = t.zeros((gpt2_small.cfg.n_layers, seq_len), system=gpt2_small.cfg.system)
gpt2_small.reset_hooks()logits = gpt2_small(rep_tokens, return_type=”logits”)loss_no_ablation = cross_entropy_loss(logits[:, seq_len: max_len],rep_tokens[:, seq_len: max_len])
for layer in tqdm(vary(gpt2_small.cfg.n_layers)):for place in vary(seq_len, max_len):hook_fn = functools.partial(patch_residual_component, pos=place, cache=rep_cache)ablated_logits = gpt2_small.run_with_hooks(rep_tokens, fwd_hooks=[(utils.get_act_name(“mlp_out”, layer), hook_fn)])loss = cross_entropy_loss(ablated_logits[:, seq_len: max_len], rep_tokens[:, seq_len: max_len])ablation_scores[layer, position-seq_len] = loss – loss_no_ablation
We arrive at a stunning end result: apart from the primary token, the ablation doesn’t produce a major logit distinction. This implies that the MLP layers could not have a major contribution within the case of repeated tokens.
On condition that the MLP layers don’t considerably contribute to the ultimate prediction, we are able to manually assemble an induction circuit utilizing the top of layer 5, head 5, and the top of layer 4, head 11. Recall that these are the induction head and the earlier token head. We do it by the next code:
def K_comp_full_circuit(mannequin: HookedTransformer,prev_token_layer_index: int,ind_layer_index: int,prev_token_head_index: int,ind_head_index: int) -> FactoredMatrix:”’Returns a (vocab, vocab)-size FactoredMatrix,with the primary dimension being the question sideand the second dimension being the important thing facet (going by way of the earlier token head)
”’W_E = gpt2_small.W_EW_Q = gpt2_small.W_Q[ind_layer_index, ind_head_index]W_K = mannequin.W_K[ind_layer_index, ind_head_index]W_O = mannequin.W_O[prev_token_layer_index, prev_token_head_index]W_V = mannequin.W_V[prev_token_layer_index, prev_token_head_index]
Q = W_E @ W_QK = W_E @ W_V @ W_O @ W_Kreturn FactoredMatrix(Q, Ok.T)
Computing the highest 1 accuracy of this circuit yields a price of 0.2283. That is fairly good for a circuit constructed by solely two heads!
For detailed implementation, please test my pocket book.
[ad_2]
Source link