AlGe commited on
Commit
32a87d5
·
verified ·
1 Parent(s): d79b3e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import os
6
  auth_token = os.environ['HF_TOKEN']
7
 
8
  # Load the tokenizer and models for the first pipeline
9
- tokenizer_ = binAutoTokenizer.from_pretrained("AlGe/deberta-v3-large_token", token=auth_token)
10
  model_bin = AutoModelForTokenClassification.from_pretrained("AlGe/deberta-v3-large_token", token=auth_token)
11
  tokenizer_ext.model_max_length = 512
12
  pipe_bin = pipeline("ner", model=model_bin, tokenizer=tokenizer_bin)
 
6
  auth_token = os.environ['HF_TOKEN']
7
 
8
  # Load the tokenizer and models for the first pipeline
9
+ tokenizer_bin = AutoTokenizer.from_pretrained("AlGe/deberta-v3-large_token", token=auth_token)
10
  model_bin = AutoModelForTokenClassification.from_pretrained("AlGe/deberta-v3-large_token", token=auth_token)
11
  tokenizer_ext.model_max_length = 512
12
  pipe_bin = pipeline("ner", model=model_bin, tokenizer=tokenizer_bin)