File size: 306 Bytes
343fa36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
Global state for the demo application.
"""

from typing import Dict

from lczerolens import Lens, ModelWrapper

wrappers: Dict[str, ModelWrapper] = {}

lenses: Dict[str, Dict[str, Lens]] = {
    "activation": {},
    "lrp": {},
    "crp": {},
    "policy": {},
    "probing": {},
    "patching": {},
}