Downloads · 30 days
0
hyesulim/fastsae-models
fastsae-models is a machine learning model from hyesulim. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as mit.
- backbone/ — for fastsae.models.Backbone.load(...) - final/ — for fastsae.models.SAE.load(...)
Downloads · 30 days
0
Access
Public
Updated Nov 8, 2025
Repo size
495 MB
Likes
0
Public
Click a slice to open those files.
.pt335 MB · 100%
From the Hugging Face model README
backbone/ — for fastsae.models.Backbone.load(...)final/ — for fastsae.models.SAE.load(...)from huggingface_hub import snapshot_download
from pathlib import Path
import fastsae
local = snapshot_download("YOUR_USER/fastsae-weights") # add token=... if private
backbone = fastsae.models.Backbone.load(Path(local)/"backbone")
sae = fastsae.models.SAE.load(Path(local)/"final")
wrapper = fastsae.models.SAEWrapper(backbone=backbone, sae=sae)