Update README.md
Browse files
README.md
CHANGED
@@ -80,10 +80,10 @@ tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True,
|
|
80 |
use_fast=False,
|
81 |
)
|
82 |
# Load critic model
|
83 |
-
|
84 |
|
85 |
critic_model = AutoModelForCausalLM.from_pretrained(
|
86 |
-
|
87 |
torch_dtype=torch.bfloat16,
|
88 |
attn_implementation="flash_attention_2",
|
89 |
device_map="auto",
|
|
|
80 |
use_fast=False,
|
81 |
)
|
82 |
# Load critic model
|
83 |
+
model_name_critic = "meta-llama/Llama-3.2-3B-Instruct"
|
84 |
|
85 |
critic_model = AutoModelForCausalLM.from_pretrained(
|
86 |
+
model_name_critic,
|
87 |
torch_dtype=torch.bfloat16,
|
88 |
attn_implementation="flash_attention_2",
|
89 |
device_map="auto",
|