Safetensors
llama3_SAE
custom_code
felfri commited on
Commit
3d58c24
·
verified ·
1 Parent(s): 82aba88

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -24,9 +24,9 @@ poetry install
24
 
25
  Load the model weights from HuggingFace:
26
  ```python
27
- import transformers
28
 
29
- SCAR = transformers.AutoModelForCausalLM.from_pretrained(
30
  "AIML-TUDA/SCAR",
31
  trust_remote_code=True,
32
  )
 
24
 
25
  Load the model weights from HuggingFace:
26
  ```python
27
+ from transformers import AutoModelForCausalLM
28
 
29
+ SCAR = AutoModelForCausalLM.from_pretrained(
30
  "AIML-TUDA/SCAR",
31
  trust_remote_code=True,
32
  )