import torch from tuned_lens.nn.lenses import TunedLens, LogitLens from transformers import AutoModelForCausalLM, AutoTokenizer from tuned_lens.plotting import PredictionTrajectory import gradio as gr from plotly import graph_objects as go device = torch.device("cpu") print(f"Using device {device} for inference") model = AutoModelForCausalLM.from_pretrained("EleutherAI/pythia-410m-deduped") model = model.to(device) tokenizer = AutoTokenizer.from_pretrained("EleutherAI/pythia-410m-deduped") tuned_lens = TunedLens.from_model_and_pretrained( model=model, map_location=device, ) logit_lens = LogitLens.from_model(model) lens_options_dict = { "Tuned Lens": tuned_lens, "Logit Lens": logit_lens, } statistic_options_dict = { "Entropy": "entropy", "Cross Entropy": "cross_entropy", "Forward KL": "forward_kl", } def make_plot(lens, text, statistic, token_cutoff): input_ids = tokenizer.encode(text) input_ids = [tokenizer.bos_token_id] + input_ids targets = input_ids[1:] + [tokenizer.eos_token_id] if len(input_ids) == 1: return go.Figure(layout=dict(title="Please enter some text.")) if token_cutoff < 1: return go.Figure(layout=dict(title="Please provide valid token cut off.")) start_pos=max(len(input_ids) - token_cutoff, 0) pred_traj = PredictionTrajectory.from_lens_and_model( lens=lens_options_dict[lens], model=model, input_ids=input_ids, tokenizer=tokenizer, targets=targets, start_pos=start_pos, ) return getattr(pred_traj, statistic_options_dict[statistic])().figure( title=f"{lens} ({model.name_or_path}) {statistic}", ) preamble = """ # The Tuned Lens 🔎 A tuned lens allows us to peak at the iterative computations a transformer uses to compute the next token. A lens into a transformer with n layers allows you to replace the last $m$ layers of the model with an [affine transformation](https://pytorch.org/docs/stable/generated/torch.nn.Linear.html) (we call these affine translators). This essentially skips over these last few layers and lets you see the best prediction that can be made from the model's representations, i.e. the residual stream, at layer $n - m$. Since the representations may be rotated, shifted, or stretched from layer to layer it's useful to train the len's affine adapters specifically on each layer. This training is what differentiates this method from simpler approaches that decode the residual stream of the network directly using the unembeding layer i.e. the logit lens. We explain this process in [the paper](https://arxiv.org/abs/2303.08112). ## Usage Since the tuned lens produces a distribution of predictions to visualize it's output we need to we need to provide a summary statistic to plot. The default is simply [entropy](https://en.wikipedia.org/wiki/Entropy_(information_theory)), but you can also choose the [cross entropy](https://en.wikipedia.org/wiki/Cross_entropy) with the target token, or the [KL divergence](https://en.wikipedia.org/wiki/Kullback%E2%80%93Leibler_divergence) between the model's predictions and the tuned lens' predictions. You can also hover over a token to see more of the distribution i.e. the top 10 most probable tokens and their probabilities. ## Examples Here are some interesting examples you can try. ### Copy paste: ``` Copy: A!2j!#u&NGApS&MkkHe8Gm!# Paste: A!2j!#u&NGApS&MkkHe8Gm!# ``` ### Trivial in-context learning ``` inc 1 2 inc 4 5 inc 13 ``` #### Addition ``` add 1 1 2 add 3 4 7 add 13 2 ``` """ with gr.Blocks() as demo: gr.Markdown(preamble) with gr.Column(): text = gr.Textbox( value="it was the best of times, it was the worst of times", label="Input Text", ) with gr.Row(): lens_options = gr.Dropdown( list(lens_options_dict.keys()), value="Tuned Lens", label="Select Lens" ) statistic = gr.Dropdown( list(statistic_options_dict.keys()), value="Entropy", label="Select Statistic", ) token_cutoff = gr.Slider( maximum=20, minimum=2, value=10, step=1, label="Plot Last N Tokens" ) examine_btn = gr.Button(value="Submit") plot = gr.Plot() examine_btn.click(make_plot, [lens_options, text, statistic, token_cutoff], plot) demo.load(make_plot, [lens_options, text, statistic, token_cutoff], plot) if __name__ == "__main__": demo.launch(server_name="0.0.0.0", server_port=7860)