furquan commited on
Commit
b32fc64
·
1 Parent(s): 6c4f963

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ from peft import PeftModel
9
  tokenizer = AutoTokenizer.from_pretrained("furquan/opt-1-3b-prompt-tuned-sentiment-analysis", trust_remote_code=True)
10
  model = AutoModel.from_pretrained("furquan/opt-1-3b-prompt-tuned-sentiment-analysis", trust_remote_code=True)
11
 
12
-
13
 
14
  title = "OPT-1.3B"
15
  description = "This demo uses meta's OPT-1.3B Causal LM as base model that was prompt tuned on the Stanford Sentiment Treebank dataset to only output the sentiment of a given text."
 
9
  tokenizer = AutoTokenizer.from_pretrained("furquan/opt-1-3b-prompt-tuned-sentiment-analysis", trust_remote_code=True)
10
  model = AutoModel.from_pretrained("furquan/opt-1-3b-prompt-tuned-sentiment-analysis", trust_remote_code=True)
11
 
12
+ #
13
 
14
  title = "OPT-1.3B"
15
  description = "This demo uses meta's OPT-1.3B Causal LM as base model that was prompt tuned on the Stanford Sentiment Treebank dataset to only output the sentiment of a given text."