Repositories / more_nnsight.git
src/more_nnsight/__init__.py
Clone (read-only): git clone http://git.guha-anderson.com/git/more_nnsight.git
from .saved_activation import SavedActivation, save_activations, updates
from .steering_search import (
SteeringSearchConfig,
SteeringSearchOutput,
SteeringTrialResult,
best_trial,
layer_sweep,
steer_and_eval,
steering_search,
)
__all__ = [
"SavedActivation",
"save_activations",
"updates",
"SteeringSearchConfig",
"SteeringSearchOutput",
"SteeringTrialResult",
"best_trial",
"layer_sweep",
"steer_and_eval",
"steering_search",
]
def main() -> None:
"""Provides a minimal entry point for the installed console script."""
print("more_nnsight")