corrected `model_checkpoint` in "Usage" section
Browse files
README.md
CHANGED
@@ -36,7 +36,7 @@ Experiment tracking: https://wandb.ai/sadhaklal/bert-base-cased-finetuned-conll2
|
|
36 |
```
|
37 |
from transformers import pipeline
|
38 |
|
39 |
-
model_checkpoint = "sadhaklal/bert-base-cased-finetuned-conll2003-ner
|
40 |
token_classifier = pipeline("token-classification", model=model_checkpoint, aggregation_strategy="simple")
|
41 |
|
42 |
print(token_classifier("My name is Sylvain and I work at Hugging Face in Brooklyn."))
|
|
|
36 |
```
|
37 |
from transformers import pipeline
|
38 |
|
39 |
+
model_checkpoint = "sadhaklal/bert-base-cased-finetuned-conll2003-ner"
|
40 |
token_classifier = pipeline("token-classification", model=model_checkpoint, aggregation_strategy="simple")
|
41 |
|
42 |
print(token_classifier("My name is Sylvain and I work at Hugging Face in Brooklyn."))
|