separability of LLM Capabilities
Project description
separability
My basic library for studying LLMs (currently, only the Meta OPT models). This includes functions for analysing the activations of the models for different inputs, and for pruning different parts of the model based on those activations.
Pruning based on Capabilities
For a full example, see src/separability.ipynb
.
The simple example is:
from model import Model
from activations import prune_and_evaluate, evaluate_all
# Load and Evaluate Model on Pile and Code
opt = Model('125m', limit=1000)
eval_data = evaluate_all(opt, 1e5)
print(eval_data)
# Prune Model, Removing coding capabilities (compared to pile), and evaluate
eval_data = prune_and_evaluate(opt, ff_prune_frac=0.05, attn_prune_frac=0.05,
ff_eps=1e-3, sample_size=1e5, eval_size=1e5, cripple='code', focus='pile')
print(eval_data)
model.py
This defines a wrapper function that encapsulates the HuggingFace implementation of Meta OPT. To get the model, simply run:
from model import Model
opt = Model('125m', limit=1000)
Where you can provide any of the model sizes that are pre-trained for OPT, and the token limit must be smaller than the max token length that the model is able to handle.
Next, you can run the model to do 2 tokens of predictions, by, for example, running:
text = 'Hello, my name is'
inpt, output = opt.predict( text, num=2 )
We can look at the residual stream of how the output changes over time.
residual_stream = opt.get_residual_stream( text )
This will return a tensor of size 2 + 2*n_layers
.
i.e:
- the input (w/ positional encoding)
- n attention layer outputs
- n feed forward layer outputs
- the final output
If we want just the output of the attention / feed forward layers, we can instead look at the activations:
inpt, attn_out, ff_out, output = opt.get_text_activations( text )
or alternatively:
inpt, attn_out, ff_out, output = opt.get_text_activations( residual_stream=residual_stream )
To get the activations for the input text at all of the MLP mid layers, we can look at:
opt.get_ff_key_activations( text )
or opt.get_ff_key_activations( residual_stream=residual_stream )
.
texts.py
Has some basic tools for loading the two text datasets I am using:
- 'the_pile' ( validation set of The Pile )
- 'codeparrot-clean-valid' ( validation set of codeparrot )
activations.py
Has code specific to the two datasets I am using to analyze and attempt to remove capabilities from the OPT.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for separability-0.1.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e125c9809e34816a21fb9d170be60efac1a3a878fd926d727ee2138af0df17b |
|
MD5 | 5b254898f867706bd01a23cb69ee422f |
|
BLAKE2b-256 | 01c273f39f246ad8b1bdc855c6613cf058de9313c4b2bae6a5f858812a130099 |