mjbuehler commited on
Commit
7b07557
1 Parent(s): 1167c9f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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
- model_name_base = "meta-llama/Llama-3.2-3B-Instruct"
84
 
85
  critic_model = AutoModelForCausalLM.from_pretrained(
86
- model_name_base,
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",