├── .gitignore ├── LICENSE ├── README.md ├── analysis.py ├── rare_freq_dir.pt ├── scratch.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | wandb/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelnanda-io/1L-Sparse-Autoencoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelnanda-io/1L-Sparse-Autoencoder/HEAD/README.md -------------------------------------------------------------------------------- /analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelnanda-io/1L-Sparse-Autoencoder/HEAD/analysis.py -------------------------------------------------------------------------------- /rare_freq_dir.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelnanda-io/1L-Sparse-Autoencoder/HEAD/rare_freq_dir.pt -------------------------------------------------------------------------------- /scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelnanda-io/1L-Sparse-Autoencoder/HEAD/scratch.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelnanda-io/1L-Sparse-Autoencoder/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelnanda-io/1L-Sparse-Autoencoder/HEAD/utils.py --------------------------------------------------------------------------------