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

updated with micro 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_LLM"
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_micro"
11
  model = AutoModelForCausalLM.from_pretrained(model_name)
12
  tokenizer = AutoTokenizer.from_pretrained(model_name)
13