-
Notifications
You must be signed in to change notification settings - Fork 0
/
pplvssqdiff.py
190 lines (146 loc) · 6.02 KB
/
pplvssqdiff.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
from torch import nn
from datasets import load_dataset
import matplotlib.pyplot as plt
import numpy as np
import random
import os
def set_seed(seed=42):
"""Fixes random seeds for reproducibility."""
torch.manual_seed(seed)
if torch.cuda.is_available():
torch.cuda.manual_seed_all(seed)
np.random.seed(seed)
random.seed(seed)
os.environ['PYTHONHASHSEED'] = str(seed)
# If you are using cudnn, add these
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
# Call this function at the very start of your script
set_seed(42)
# Setup device
device = "cuda" if torch.cuda.is_available() else "cpu"
# Initialize model and tokenizer
model_name = "meta-llama/Llama-2-7b-chat-hf"
# model = AutoModelForCausalLM.from_pretrained(model_name).to(device)
model = AutoModelForCausalLM.from_pretrained(model_name).to(device)
tokenizer = AutoTokenizer.from_pretrained(model_name, use_fast=True)
# Ensure the tokenizer has a padding token set
if tokenizer.pad_token is None:
tokenizer.pad_token = tokenizer.eos_token
# Correct path to access and modify a specific layer
layer = model.model.layers[-1].mlp.gate_proj
# Initialize an activation dictionary to store layer outputs
activation = {}
# Define a function to register a hook that captures layer activations
def get_activation(name):
def hook(model, input, output):
activation[name] = output.detach()
return hook
# Register the forward hook to the correct layer
layer.register_forward_hook(get_activation('mlp.gate_proj'))
# Optionally, add normal noise to the weights
def quantize_weights(layer, v):
"""
Applies integer quantization to the weights of a layer.
Parameters:
- layer: The layer whose weights will be quantized.
- v: A scaling factor controlling the level of quantization.
"""
with torch.no_grad():
# Scale the weights by v and round to the nearest integer
quantized_weights = torch.round(v * layer.weight)
# Scale back the quantized weights
layer.weight.copy_(quantized_weights / v)
# Choose a scaling factor for quantization
print("Before quantization:", layer.weight)
# Load and preprocess dataset
dataset = load_dataset('wikitext', 'wikitext-2-raw-v1', split='test')
# dataset = load_dataset('bookcorpus', split='train') # Check the correct dataset name and configuration
texts = dataset.shuffle(seed=42).select(range(1000))['text']
# texts = dataset['text']
# Preprocess and encode texts
encoded = tokenizer(texts, return_tensors="pt", padding=True, truncation=True, max_length=model.config.max_position_embeddings)
encoded = encoded.input_ids.to(device)
# Define the evaluation function for perplexity
def eval_ppl_wikitext(model, encoded, bs=1):
nsamples = encoded.size(0)
nlls = []
for i in range(0, nsamples, bs):
inputs = encoded[i:i+bs]
with torch.no_grad():
outputs = model(input_ids=inputs, labels=inputs)
loss = outputs.loss
neg_log_likelihood = loss * inputs.size(1)
nlls.append(neg_log_likelihood)
total_nll = torch.stack(nlls).sum()
ppl = torch.exp(total_nll / (nsamples * model.config.max_position_embeddings))
return ppl.item()
unquantized_ppl = eval_ppl_wikitext(model, encoded)
print("Unquantized Perplexity:", unquantized_ppl)
vs = [2 ** i for i in range(15)]
perplexities = []
original_weights = layer.weight.data.clone()
# Initialize a list to store squared differences
squared_differences = []
del model # Delete the model
torch.cuda.empty_cache()
for v in vs:
# Re-initialize the model to reset weights
model = AutoModelForCausalLM.from_pretrained(model_name).to(device)
# Access and quantize the specific layer
layer = model.model.layers[-1].mlp.gate_proj
with torch.no_grad():
quantized_weights = torch.round(v * layer.weight) / v
layer.weight.copy_(quantized_weights)
# Calculate perplexity
squared_difference = torch.norm(original_weights - layer.weight.data) ** 2
squared_differences.append(squared_difference.item())
ppl = eval_ppl_wikitext(model, encoded)
perplexities.append(ppl)
print(f"After quantization with level v={v}:", layer.weight)
print(f"Quantization v={v}, Perplexity: {ppl}")
del model # Delete the model
torch.cuda.empty_cache()
# Plotting
plt.plot( vs, perplexities, marker='o')
plt.axhline(y=unquantized_ppl, color='r', linestyle='--', label=f'unquantized_ppl: {unquantized_ppl}')
# Plotting
plt.plot(vs, perplexities, marker='o')
plt.xscale('log')
plt.xlabel('Quantization Level v')
plt.ylabel('Perplexity')
plt.title('Perplexity vs. Quantization Level (Wiki_last_mlp_layer)')
plt.grid(True, which="both", ls="--")
plt.savefig('perplexity_vs_quantization(Wiki_last_mlp_layer).png')
plt.show()
# Plotting squared differences
plt.figure(figsize=(10, 5))
plt.plot(vs, squared_differences, marker='o', color='g')
plt.xscale('log')
plt.xlabel('Quantization Level v')
plt.ylabel('Squared Weight Difference')
plt.title('Squared Weight Difference vs. Quantization Level (Wiki_last_mlp_layer)')
plt.grid(True, which="both", ls="--")
plt.savefig('Squared_Weight_Difference_vs_Quantization_Level(Wiki_last_mlp_layer).png')
plt.show()
# Plotting squared differences
plt.figure(figsize=(10, 5))
plt.plot(squared_differences, perplexities , marker='o', color='g')
plt.xscale('log')
plt.xlabel('Squared Weight Difference')
plt.ylabel('Perplexity')
plt.title('Perplexity vs. Squared Weight Difference (Wiki_last_mlp_layer)')
plt.grid(True, which="both", ls="--")
plt.savefig('Perplexity_vs_Squared_Weight_Difference(Wiki_last_mlp_layer).png')
plt.show()
# plt.figure(figsize=(10, 5))
# plt.plot(vs, squared_differences, marker='o')
# plt.xscale('log')
# plt.xlabel('Quantization Level v')
# plt.ylabel('Squared Weight Difference')
# plt.title('Squared Weight Difference vs. Quantization Level v')
# plt.grid(True, which="both", ls="--")
# plt.savefig('Squared_Weight_Difference_vs_Quantization_Level(bookcorpus).png')
# plt.show()