lczerolens-demo / app /state.py
Xmaster6y's picture
old files
343fa36
raw
history blame contribute delete
306 Bytes
"""
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": {},
}