From 8f88d15cd8aa91de6027f8053c04cf875efc65fb Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 17 Apr 2024 16:45:43 +0000 Subject: [PATCH] 0.5.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 65 ++++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- sae_lens/__init__.py | 2 +- 3 files changed, 67 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a5ff3ed..29501cd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,71 @@ +## v0.5.0 (2024-04-17) + +### Feature + +* feat: Mamba support vs mamba-lens (#79) + +* mamba support + +* added init + +* added optional model kwargs + +* Support transformers and mamba + +* forgot one model kwargs + +* failed opts + +* tokens input + +* hack to fix tokens, will look into fixing mambalens + +* fixed checkpoint + +* added sae group + +* removed some comments and fixed merge error + +* removed unneeded params since that issue is fixed in mambalens now + +* Unneded input param + +* removed debug checkpoing and eval + +* added refs to hookedrootmodule + +* feed linter + +* added example and fixed loading + +* made layer for eval change + +* fix linter issues + +* adding mamba-lens as optional dep, and fixing typing/linting + +* adding a test for loading mamba model + +* adding mamba-lens to dev for CI + +* updating min mamba-lens version + +* updating mamba-lens version + +--------- + +Co-authored-by: David Chanin <chanindav@gmail.com> ([`eea7db4`](https://github.com/jbloomAus/SAELens/commit/eea7db4b99098c33cd862e7e2280a32b630826bd)) + +### Unknown + +* update readme ([`440df7b`](https://github.com/jbloomAus/SAELens/commit/440df7b6c0ef55ba3d116054f81e1ee4a58f9089)) + +* update readme ([`3694fd2`](https://github.com/jbloomAus/SAELens/commit/3694fd2c4cc7438121e4549636508c45835a5d38)) + + ## v0.4.0 (2024-04-16) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 4f62f578..1475de8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sae-lens" -version = "0.4.0" +version = "0.5.0" description = "Training and Analyzing Sparse Autoencoders (SAEs)" authors = ["Joseph Bloom"] readme = "README.md" diff --git a/sae_lens/__init__.py b/sae_lens/__init__.py index 86d4e514..e13470b4 100644 --- a/sae_lens/__init__.py +++ b/sae_lens/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.0" +__version__ = "0.5.0" from .training.activations_store import ActivationsStore from .training.cache_activations_runner import cache_activations_runner