Update README.md
Browse files
README.md
CHANGED
@@ -30,7 +30,7 @@ This repository hosts a fine-tuned BERT model (`bert-base-uncased`) for classify
|
|
30 |
## 🚀 Usage Instructions
|
31 |
```python
|
32 |
from transformers import pipeline
|
33 |
-
classifier = pipeline("text-classification", model="mikemcrae/black-
|
34 |
result = classifier("Black activists led a peaceful protest downtown.")
|
35 |
print(result)
|
36 |
```
|
|
|
30 |
## 🚀 Usage Instructions
|
31 |
```python
|
32 |
from transformers import pipeline
|
33 |
+
classifier = pipeline("text-classification", model="mikemcrae/black-entity-classifier")
|
34 |
result = classifier("Black activists led a peaceful protest downtown.")
|
35 |
print(result)
|
36 |
```
|