Commit ·
ffdbac5
1
Parent(s): 0b78409
switched to Distilbert for base model
Browse files
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/
|
| 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 |
|