nikunjcepatel commited on
Commit
509ba0d
·
verified ·
1 Parent(s): 71418fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ login(token=token)
11
 
12
 
13
  # Load model and tokenizer
14
- model_name = "meta-llama/Llama-3.2-3B" # Replace with the correct model name if necessary
15
  tokenizer = AutoTokenizer.from_pretrained(model_name)
16
  model = AutoModelForCausalLM.from_pretrained(model_name)
17
 
 
11
 
12
 
13
  # Load model and tokenizer
14
+ model_name = "nikunjcepatel/gpt_finetune_test" #"meta-llama/Llama-3.2-3B" # Replace with the correct model name if necessary
15
  tokenizer = AutoTokenizer.from_pretrained(model_name)
16
  model = AutoModelForCausalLM.from_pretrained(model_name)
17