lalital commited on
Commit
38765ba
Β·
1 Parent(s): 6067c7a

fix: fix incorrect path

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,14 +18,14 @@ import gradio as gr
18
 
19
  tokenizer=AutoTokenizer.from_pretrained(
20
  'airesearch/wangchanberta-base-att-spm-uncased',
21
- revision='finetuned@wisesight-sentiment'
22
  )
23
 
24
  #pipeline
25
  text_cls_pipeline = pipeline(task='sentiment-analysis',
26
  tokenizer=tokenizer,
27
  model = 'airesearch/wangchanberta-base-att-spm-uncased',
28
- revision ='finetuned@wisesight-sentiment')
29
 
30
 
31
  def classify_text(text: str):
 
18
 
19
  tokenizer=AutoTokenizer.from_pretrained(
20
  'airesearch/wangchanberta-base-att-spm-uncased',
21
+ revision='finetuned@wisesight_sentiment-v1.1'
22
  )
23
 
24
  #pipeline
25
  text_cls_pipeline = pipeline(task='sentiment-analysis',
26
  tokenizer=tokenizer,
27
  model = 'airesearch/wangchanberta-base-att-spm-uncased',
28
+ revision ='finetuned@wisesight_sentiment-v1.1')
29
 
30
 
31
  def classify_text(text: str):