villekuosmanen/drop_footbag_into_dice_tower
Viewer • Updated • 16.4k • 439
This model is a Sparse Autoencoder trained for interpretability analysis of robotics policies using the LeRobot framework.
villekuosmanen/drop_footbag_into_dice_towermodel.encoder.layers.3.norm2from src.sae.trainer import load_sae_from_hub
# Load model from Hub
model = load_sae_from_hub("villekuosmanen/sae_drop_footbag_into_di_838a8c8b")
# Or load using builder
from src.sae.builder import SAEBuilder
builder = SAEBuilder(device='cuda')
model = builder.load_from_hub("villekuosmanen/sae_drop_footbag_into_di_838a8c8b")
This SAE model can be used for OOD detection with LeRobot policies:
from src.ood import OODDetector
# Create OOD detector with Hub-loaded SAE
ood_detector = OODDetector(
policy=your_policy,
sae_hub_repo_id="villekuosmanen/sae_drop_footbag_into_di_838a8c8b"
)
# Fit threshold and use for detection
ood_detector.fit_ood_threshold_to_validation_dataset(validation_dataset)
is_ood, error = ood_detector.is_out_of_distribution(observation)
model.safetensors: The trained SAE model weightsconfig.json: Training and model configurationtraining_state.pt: Complete training state (optimizer, scheduler, metrics)ood_params.json: OOD detection parameters (if fitted)If you use this model in your research, please cite:
@misc{sae_model,
title={Sparse Autoencoder for Drop Footbag Into Dice Tower},
author={Your Name},
year={2024},
url={https://huggingface.co/villekuosmanen/sae_drop_footbag_into_di_838a8c8b}
}
This model was trained using the physical-ai-interpretability framework with LeRobot.