MattStammers commited on
Commit
ffdbac5
·
1 Parent(s): 0b78409

switched to Distilbert for base model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ from transformers import pipeline
4
  # Load the BioClinicalBERT model for IBD classification
5
  classifier = pipeline(
6
  "text-classification",
7
- model="MattStammers/BioClinicalBERT_IBD",
8
  return_all_scores=True
9
  )
10
 
 
4
  # Load the BioClinicalBERT model for IBD classification
5
  classifier = pipeline(
6
  "text-classification",
7
+ model="MattStammers/Distil_IBD_BERT",
8
  return_all_scores=True
9
  )
10