FeatureLens / featurelens /__init__.py
ArchitSharma's picture
Initial FeatureLens v0.1.0
9d24374
Raw
History Blame Contribute Delete
334 Bytes
"""FeatureLens: causal sparse-feature interpretability for Qwen3."""
from .config import SETTINGS, Settings
from .interventions import InterventionSpec
from .sae import SAEStore, SAEWeights, SparseEncoding
__all__ = [
'SETTINGS',
'Settings',
'InterventionSpec',
'SAEStore',
'SAEWeights',
'SparseEncoding',
]