Update my_package/my_configuration.py
Browse files
my_package/my_configuration.py
CHANGED
|
@@ -7,7 +7,7 @@ class Query2SAEConfig(PretrainedConfig):
|
|
| 7 |
self,
|
| 8 |
backbone_name: str = "gpt2",
|
| 9 |
head_hidden_dim: int = 128,
|
| 10 |
-
sae_dim: int =
|
| 11 |
**kwargs,
|
| 12 |
):
|
| 13 |
super().__init__(**kwargs)
|
|
|
|
| 7 |
self,
|
| 8 |
backbone_name: str = "gpt2",
|
| 9 |
head_hidden_dim: int = 128,
|
| 10 |
+
sae_dim: int = 16384, # <-- set this to YOUR actual SAE feature count
|
| 11 |
**kwargs,
|
| 12 |
):
|
| 13 |
super().__init__(**kwargs)
|