Jithendra-k commited on
Commit
df9f905
·
verified ·
1 Parent(s): edda855

updated with mini model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer
7
  def getLLamaresponse(input_text):
8
  ### LLama2 model
9
  # Load the fine-tuned model and tokenizer
10
- model_name = "Jithendra-k/InterACT_micro"
11
  model = AutoModelForCausalLM.from_pretrained(model_name)
12
  tokenizer = AutoTokenizer.from_pretrained(model_name)
13
 
 
7
  def getLLamaresponse(input_text):
8
  ### LLama2 model
9
  # Load the fine-tuned model and tokenizer
10
+ model_name = "Jithendra-k/InterACT_mini"
11
  model = AutoModelForCausalLM.from_pretrained(model_name)
12
  tokenizer = AutoTokenizer.from_pretrained(model_name)
13