ysharma HF staff commited on
Commit
8d503ef
1 Parent(s): 4fe3463

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
23
 
24
  # Download model from Huggingface Hub
25
  # Change this to meta-llama or the correct org name from Huggingface Hub
26
- model_id = "meta-internal/Llama-3.2-3B-Instruct"
27
  tokenizer = AutoTokenizer.from_pretrained(model_id)
28
  model = AutoModelForCausalLM.from_pretrained(
29
  model_id,
 
23
 
24
  # Download model from Huggingface Hub
25
  # Change this to meta-llama or the correct org name from Huggingface Hub
26
+ model_id = "meta-llama/Llama-3.2-3B-Instruct"
27
  tokenizer = AutoTokenizer.from_pretrained(model_id)
28
  model = AutoModelForCausalLM.from_pretrained(
29
  model_id,