Sephfox commited on
Commit
c0c86be
·
verified ·
1 Parent(s): 064bce5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ emotion_prediction_model = AutoModelForSequenceClassification.from_pretrained("b
60
  emotion_prediction_tokenizer = AutoTokenizer.from_pretrained("bhadresh-savani/distilbert-base-uncased-emotion")
61
 
62
  # Load pre-trained large language model and tokenizer for response generation with increased context window
63
- response_model_name = "facebook/opt-5b"
64
  response_tokenizer = AutoTokenizer.from_pretrained(response_model_name)
65
  response_model = AutoModelForCausalLM.from_pretrained(response_model_name)
66
 
 
60
  emotion_prediction_tokenizer = AutoTokenizer.from_pretrained("bhadresh-savani/distilbert-base-uncased-emotion")
61
 
62
  # Load pre-trained large language model and tokenizer for response generation with increased context window
63
+ response_model_name = "gpt2-xl"
64
  response_tokenizer = AutoTokenizer.from_pretrained(response_model_name)
65
  response_model = AutoModelForCausalLM.from_pretrained(response_model_name)
66