aliasgerovs commited on
Commit
6bc69b2
·
1 Parent(s): 3060edc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -186,7 +186,7 @@ text_bc_model_path = "polygraf-ai/v3-bert-3-2m-trun-bc-lighter-spec"
186
  text_bc_tokenizer = AutoTokenizer.from_pretrained(text_bc_model_path)
187
  text_bc_model = AutoModelForSequenceClassification.from_pretrained(text_bc_model_path).to(device)
188
 
189
- text_mc_model_path = "polygraf-ai/text-detect-mc-bert-base-uncased-v1-bert-429k"
190
  text_mc_tokenizer = AutoTokenizer.from_pretrained(text_mc_model_path)
191
  text_mc_model = AutoModelForSequenceClassification.from_pretrained(text_mc_model_path).to(device)
192
 
 
186
  text_bc_tokenizer = AutoTokenizer.from_pretrained(text_bc_model_path)
187
  text_bc_model = AutoModelForSequenceClassification.from_pretrained(text_bc_model_path).to(device)
188
 
189
+ text_mc_model_path = "polygraf-ai/text-detect-mc-bert-base-uncased-v1-bert-429k-256"
190
  text_mc_tokenizer = AutoTokenizer.from_pretrained(text_mc_model_path)
191
  text_mc_model = AutoModelForSequenceClassification.from_pretrained(text_mc_model_path).to(device)
192