Spaces:
Sleeping
Sleeping
Commit
·
485d99a
1
Parent(s):
5e20430
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ tokenizer = BertTokenizer.from_pretrained('dslim/bert-large-NER')
|
|
| 10 |
bert_model = BertModel.from_pretrained('dslim/bert-large-NER')
|
| 11 |
|
| 12 |
# Load the trained Logistic Regression classifier
|
| 13 |
-
with open('
|
| 14 |
classifier = pickle.load(model_file)
|
| 15 |
|
| 16 |
# Define function to preprocess and classify text
|
|
|
|
| 10 |
bert_model = BertModel.from_pretrained('dslim/bert-large-NER')
|
| 11 |
|
| 12 |
# Load the trained Logistic Regression classifier
|
| 13 |
+
with open('bert_large_ner.pkl', 'rb') as model_file:
|
| 14 |
classifier = pickle.load(model_file)
|
| 15 |
|
| 16 |
# Define function to preprocess and classify text
|