aarohanverma commited on
Commit
1b52ffd
·
verified ·
1 Parent(s): 451c534

Corrected model name

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
6
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
7
 
8
  # Load the fine-tuned model and tokenizer
9
- model_name = "aarohanverma/text2sql_flant5base_finetuned" # Replace with your model repository name
10
  model = AutoModelForSeq2SeqLM.from_pretrained(model_name, torch_dtype=torch.bfloat16).to(device)
11
  tokenizer = AutoTokenizer.from_pretrained("google/flan-t5-base")
12
 
 
6
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
7
 
8
  # Load the fine-tuned model and tokenizer
9
+ model_name = "aarohanverma/text2sql-flan-t5-base-qlora-finetuned" # Replace with your model repository name
10
  model = AutoModelForSeq2SeqLM.from_pretrained(model_name, torch_dtype=torch.bfloat16).to(device)
11
  tokenizer = AutoTokenizer.from_pretrained("google/flan-t5-base")
12