File size: 21,133 Bytes
a2ffd07 | 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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | import torch as t
from torch import Tensor
import torch.nn as nn
import torch.nn.functional as F
import numpy as np
import einops
from functools import partial
from typing import List, Tuple, Dict, Any, Union, Callable, Literal
from tqdm import tqdm
from transformer_lens.hook_points import HookPoint
from transformer_lens import (
utils,
)
import circuitsvis as cv
from itertools import product
import random
from copy import deepcopy
from collections import OrderedDict, defaultdict
from hallucination.extra_materials.graph.Graph_Template import Graph, GraphName
from hallucination.extra_materials.graph.Sparse_act import SparseAct
class Pruner:
def __init__(
self,
graph: Graph,
metric: Callable[[Tensor], Tensor],
device: t.device,
verbose: bool = False,
):
'''
Pruner class for pruning the model.
Args:
graph: Graph, the computational graph of the model.
model: nn.Module, the model to be pruned.
metric: Callable[[Tensor], Tensor], the metric to be used for pruning. Takes logits as input and returns a scalar.
device: t.device, the device to be used for pruning.
verbose: bool, whether to print the pruning process.
'''
self.graph = graph
self.metric = metric
self.device = device
self.verbose = verbose
self.effects: Dict[Any, Any] = {}
def __call__(self,
clean_tokens: Tensor,
corrupt_tokens: Tensor,
threshold: float,
prune_type: str = "patch",
cut_mode: str = "node",
scoring_mode: str = "abs",
threshold_type: str = "value",
modify_inplace: bool = False,
return_type: str | None = "retained",
reverse_pruning: bool = False,
**kwargs,
) -> Union[Graph, Tuple[Graph, Dict]]:
return self.prune(clean_tokens, corrupt_tokens, threshold, prune_type, cut_mode, scoring_mode, threshold_type, modify_inplace, return_type, reverse_pruning, **kwargs)
def prune(
self,
clean_tokens: Tensor,
corrupt_tokens: Tensor,
threshold: float,
prune_type: str = "patch",
cut_mode: str = "node",
scoring_mode: str = "abs",
threshold_type: str = "value",
modify_inplace: bool = False,
return_type: str | None = "retained",
reverse_pruning: bool = False,
**kwargs,
) -> Union[Graph, Tuple[Graph, Dict]]:
'''
Prune the graph.
Args:
clean_tokens: List[Tensor], the clean tokens for the model.
corrupt_tokens: List[Tensor], the corrupt tokens for the model.
threshold: float, the threshold for pruning.
prune_type: str, the type for pruning, either "patch" or "attrib" or "ig".
cut_mode: str, the mode for pruning, either "node" or "edge".
scoring_mode: str, the mode for scoring, either "abs" or "greater" or "less".
E.g. if scoring_mode is "greater" and threshold_type is "value, then the nodes/edges with metric greater than the baseline by a threshold will be pruned.
threshold_type: str, the type of thresholding, either "value" or "percen" or "number".
If "value": the nodes/edges with score lower (or higher - based on scoring_mode) will be pruned.
If "percen": a certain proportion of nodes/edges will be retained.
If "number": retain a certain number of nodes/edges.
modify_inplace: bool, whether to modify the graph in place or return a new graph.
return_type: str | None, the type to return, either "retained" or "all" or "None" or None.
reverse_pruning: bool, whether to reverse the pruning.
**kwargs: additional kwargs to pass to the forward_backward_gradient method.
'''
assert cut_mode in ["node", "edge"], f"mode must be either 'node' or 'edge', got {cut_mode}"
assert scoring_mode in ["abs", "greater", "less"], f"scoring_mode must be either 'abs' or 'greater' or 'less', got {scoring_mode}"
assert threshold_type in ["value", "percen", "number"], f"threshold_type must be either 'value' or 'percen' or 'number', got {threshold_type}"
if threshold_type == "percen":
assert threshold >= 0 and threshold <= 1
assert len(clean_tokens) == len(corrupt_tokens) or len(corrupt_tokens) == 1, "clean_tokens and corrupt_tokens must have the same length, or corrupt_tokens must have length 1."
assert return_type in ["retained", "all", "None", None], f"return_type must be either 'retained' or 'all' or 'None', got {return_type}"
if prune_type == "patch":
assert threshold_type == "value", "Patching only support value threshold type."
assert self.graph.graph_type() != "feature graph", "Patching is not supported for feature graphs."
return self._prune_patching(clean_tokens, corrupt_tokens, threshold, cut_mode, scoring_mode, modify_inplace, return_type, reverse_pruning, **kwargs)
elif prune_type == "attrib":
return self._prune_attributing(clean_tokens, corrupt_tokens, threshold, cut_mode, "attrib", scoring_mode, threshold_type, modify_inplace, return_type, reverse_pruning, **kwargs)
else:
raise ValueError(f"Prune type {prune_type} is not implemented.")
def _prune_patching(
self,
clean_tokens: Tensor,
corrupt_tokens: Tensor,
threshold: float,
cut_mode: str = "node",
scoring_mode: str = "abs",
modify_inplace: bool = False,
return_type: str | None = "retained",
reverse_pruning: bool = False,
**kwargs
) -> Union[Graph, Tuple[Graph, Dict]]:
if modify_inplace:
graph = self.graph
else:
graph = deepcopy(self.graph)
add_handler, update_handler, delete_handler, iterate_handler, find_deleted_handler = self._get_handler(graph, cut_mode)
clean_tokens = clean_tokens.to(self.device)
corrupt_tokens = corrupt_tokens.to(self.device)
initial_deleted_comps = set(find_deleted_handler())
graph.model_setup() # set up the model before caching
with t.no_grad(): # no gradient needed, save memory
_, corrupt_cache = graph.run_model(corrupt_tokens)
clean_logits, _ = graph(clean_tokens, corrupt_cache) # not run with cache
current_score = self.metric(clean_logits)
if self.verbose:
print(f"Current score: {current_score}")
retained_components = {}
all_components = {}
for component in tqdm(reversed(iterate_handler()), disable=not self.verbose):
if self.effects.get(component, None) is None:
delete_handler(*component)
patch_logits, _ = graph(clean_tokens, corrupt_cache, patch_deleted_comp=True)
temp_score = self.metric(patch_logits)
self.effects[component] = temp_score
else:
temp_score = self.effects[component]
retain, value = self._value_threshold(
current_score, temp_score, threshold, scoring_mode, reverse_pruning
)
all_components[component] = value
if retain:
if component not in initial_deleted_comps: # avoid adding initial deleted components
add_handler(*component)
update_handler(*(component + (value,)))
retained_components[component] = value
else:
current_score = temp_score
if cut_mode == "node":
update_handler(*(component + (value,)))
if self.verbose:
print(f"Pruned {component} with value {value}")
print(f"Current score: {current_score}")
if return_type == "retained":
return graph, retained_components
elif return_type == "all":
return graph, all_components
return graph
def _prune_attributing(
self,
clean_tokens: Tensor,
corrupt_tokens: Tensor,
threshold: float,
cut_mode: str = "node",
gradient_method: str = "attrib",
scoring_mode: str = "abs",
threshold_type: str = "value",
modify_inplace: bool = False,
return_type: str | None = "retained",
reverse_pruning: bool = False,
**kwargs, # additional kwargs to pass to the forward_backward_gradient method
) -> Union[Graph, Tuple[Graph, Dict]]:
assert gradient_method in ["attrib"], f"gradient_method must be 'attrib', got {gradient_method}"
if modify_inplace:
graph = self.graph
else:
graph = deepcopy(self.graph)
add_handler, update_handler, delete_handler, iterate_handler, find_deleted_handler = self._get_handler(graph, cut_mode)
graph.model_setup() # set up the model before caching
with t.no_grad(): # no gradient needed, save memory
_, corrupt_cache = graph.run_model(corrupt_tokens)
clean_logits, _ = graph(clean_tokens, corrupt_cache) # if the graph is pruned before, this will be patched_logits
current_score = self.metric(clean_logits)
if self.verbose:
print(f"Current score: {current_score}")
retained_components = {}
all_components = {}
if self.effects.get(cut_mode, None) is None:
with t.set_grad_enabled(True):
if gradient_method == "attrib":
node_effect, edge_effect = graph.forward_backward_gradient(
clean_tokens,
corrupt_cache,
self.metric,
show_warnings=True,
mode=cut_mode,
**kwargs,
)
attrib_effect = node_effect if cut_mode == "node" else edge_effect
self.effects[cut_mode] = attrib_effect # save the effects so that we don't need to recompute them
else:
raise ValueError(f"Gradient method {gradient_method} is not implemented.")
else:
attrib_effect = self.effects[cut_mode]
if threshold_type == "value":
for component in iterate_handler():
# we don't need to pass the current score here, because:
# attrib_effect[component] approximate: metric(corrupted) - metric(clean)
retain, value = self._value_threshold(
0,
attrib_effect[component],
threshold,
scoring_mode,
reverse_pruning,
)
all_components[component] = value
if retain:
update_handler(*(component + (value,)))
retained_components[component] = value
else:
delete_handler(*component)
if cut_mode == "node":
update_handler(*(component + (value,)))
if self.verbose:
print(f"Pruned {component} with value {value}")
else:
list_effects = []
for component in iterate_handler():
list_effects.append(attrib_effect[component])
list_retain, list_value = self._number_and_percen_threshold(
list_effects,
threshold,
scoring_mode,
threshold_type,
reverse_pruning,
)
for component, retain, value in zip(iterate_handler(), list_retain, list_value):
all_components[component] = value
if retain:
update_handler(*(component + (value,)))
retained_components[component] = value
else:
delete_handler(*component)
if cut_mode == "node":
update_handler(*(component + (value,)))
if self.verbose:
print(f"Pruned {component} with value {value}")
if return_type == "retained":
return graph, retained_components
elif return_type == "all":
return graph, all_components
return graph
def _value_threshold_sparse_coo(
self,
current_score: Tensor | float,
temp_score: Tensor,
threshold: float,
scoring_mode: str,
reverse_pruning: bool,
) -> Tuple[Any, Any]:
if isinstance(current_score, float):
current_score = t.sparse_coo_tensor(
temp_score.indices(), t.full_like(temp_score.values(), current_score), temp_score.size()
).coalesce().values()
if scoring_mode == "abs":
value = (current_score - temp_score.values()).abs()
retain_mask = value > threshold
elif scoring_mode == "greater":
value = temp_score.values() - current_score
retain_mask = value < threshold
else:
value = temp_score.values() - current_score
retain_mask = value > threshold
if reverse_pruning:
retain_mask = ~retain_mask
value_sparse = t.sparse_coo_tensor(temp_score.indices(), value, temp_score.size()).coalesce()
retained_sparse = t.sparse_coo_tensor(temp_score.indices(), retain_mask, temp_score.size()).coalesce()
return True, (value_sparse, retained_sparse)
def _value_threshold_dense(
self,
current_score: Tensor | SparseAct | float,
temp_score: Tensor | SparseAct,
threshold: float,
scoring_mode: str,
reverse_pruning: bool,
) -> Tuple[Any, Any]:
if scoring_mode == "abs":
value = (current_score - temp_score).abs()
retain = value >= threshold
elif scoring_mode == "greater":
value = temp_score - current_score
retain = value <= threshold
else:
value = temp_score - current_score
retain = value >= threshold
if reverse_pruning:
retain = ~retain
if retain.numel() == 1:
return retain.item(), value
else:
return True, (value, retain)
def _value_threshold(
self,
current_score: Tensor | SparseAct | float,
temp_score: Tensor | SparseAct,
threshold: float,
scoring_mode: str,
reverse_pruning: bool,
) -> Tuple[Any, Any]:
with t.no_grad():
if (
isinstance(temp_score, Tensor) and temp_score.is_sparse
) or (
isinstance(current_score, Tensor) and current_score.is_sparse
):
return self._value_threshold_sparse_coo(current_score, temp_score, threshold, scoring_mode, reverse_pruning) # type: ignore
else:
return self._value_threshold_dense(current_score, temp_score, threshold, scoring_mode, reverse_pruning)
def _number_and_percen_threshold_sparse_coo(
self,
list_scores: List[Tensor],
threshold: float,
scoring_mode: str,
threshold_type: str,
reverse_pruning: bool,
) -> Tuple[List[Any], List[Any]]:
list_numel = []
list_shapes = []
for score in list_scores:
list_numel.append(score.values().numel())
list_shapes.append(score.values().shape)
values = t.cat(
[score.values().flatten() for score in list_scores],
dim=0,
)
num_retain_elements = int(threshold * sum(list_numel)) if threshold_type == "percen" else int(threshold)
if scoring_mode == "abs":
values = values.abs()
indices = t.topk(values, k=num_retain_elements, dim=0, largest=True, sorted=False)[1]
elif scoring_mode == "greater":
indices = t.topk(values, k=num_retain_elements, dim=0, largest=False, sorted=False)[1] # prune the top highest score = retain the lowest score
else:
indices = t.topk(values, k=num_retain_elements, dim=0, largest=True, sorted=False)[1]
retains = t.zeros(values.size(0), dtype=t.bool, device=values.device)
retains[indices] = True
if reverse_pruning:
retains = ~retains
list_retains = []
last_idx = 0
for numel, shape, score in zip(list_numel, list_shapes, list_scores):
retain = retains[last_idx:last_idx+numel].reshape(shape)
list_retains.append(
t.sparse_coo_tensor(score.indices(), retain, score.size()).coalesce()
)
last_idx += numel
return [True for _ in list_retains], [(score, mask) for score, mask in zip(list_scores, list_retains)]
def _number_and_percen_threshold_dense(
self,
list_scores: List[Tensor | SparseAct],
threshold: float,
scoring_mode: str,
threshold_type: str,
reverse_pruning: bool,
) -> Tuple[List[Any], List[Any]]:
list_numel = []
list_shapes = []
for score in list_scores:
list_numel.append(score.numel())
list_shapes.append(score.shape if isinstance(score, Tensor) else score.to_tensor().shape)
values = t.cat(
[score.flatten() if isinstance(score, Tensor) else score.to_tensor().flatten() for score in list_scores],
dim=0,
)
num_retain_elements = int(threshold * sum(list_numel)) if threshold_type == "percen" else int(threshold)
if scoring_mode == "abs":
values = values.abs()
indices = t.topk(values, k=num_retain_elements, dim=0, largest=True, sorted=False)[1]
elif scoring_mode == "greater":
indices = t.topk(values, k=num_retain_elements, dim=0, largest=False, sorted=False)[1] # prune the top highest score = retain the lowest score
else:
indices = t.topk(values, k=num_retain_elements, dim=0, largest=True, sorted=False)[1]
retains = t.zeros(values.size(0), dtype=t.bool, device=values.device)
retains[indices] = True
if reverse_pruning:
retains = ~retains
list_retains = []
last_idx = 0
for numel, shape, score in zip(list_numel, list_shapes, list_scores):
retain = retains[last_idx:last_idx+numel].reshape(shape)
list_retains.append(retain if isinstance(score, Tensor) else score.to_sparse_like_self(retain))
last_idx += numel
if list_retains[0].numel() == 1:
return [retain.item() for retain in list_retains], list_scores
else:
return [True for _ in list_retains], [(score, mask) for score, mask in zip(list_scores, list_retains)]
def _number_and_percen_threshold(
self,
list_scores: List[Tensor | SparseAct],
threshold: float,
scoring_mode: str,
threshold_type: str,
reverse_pruning: bool,
) -> Tuple[List[Any], List[Any]]:
with t.no_grad():
if isinstance(list_scores[0], Tensor) and list_scores[0].is_sparse:
return self._number_and_percen_threshold_sparse_coo(list_scores, threshold, scoring_mode, threshold_type, reverse_pruning) # type: ignore
else:
return self._number_and_percen_threshold_dense(list_scores, threshold, scoring_mode, threshold_type, reverse_pruning)
def _get_handler(
self,
graph: Graph, # not always self.graph
cut_mode: str,
) -> Tuple[Callable, Callable, Callable, Callable, Callable]:
if cut_mode == "node":
add_handler = graph.add_node
update_handler = graph.update_node
delete_handler = graph.delete_node
iterate_handler = graph.iterate_nodes
find_deleted_handler = graph.find_deleted_nodes
else:
add_handler = graph.add_edge
update_handler = graph.update_edge
delete_handler = graph.delete_edge
iterate_handler = graph.iterate_edges
find_deleted_handler = graph.find_deleted_edges
return add_handler, update_handler, delete_handler, iterate_handler, find_deleted_handler
|