Update README.md
Browse files
README.md
CHANGED
@@ -29,8 +29,8 @@ model = AutoModelForTokenClassification.from_pretrained("browndw/docusco-bert")
|
|
29 |
nlp = pipeline("ner", model=model, tokenizer=tokenizer)
|
30 |
example = "Globalization is the process of interaction and integration among people, companies, and governments worldwide."
|
31 |
|
32 |
-
|
33 |
-
print(
|
34 |
```
|
35 |
|
36 |
#### Limitations and bias
|
|
|
29 |
nlp = pipeline("ner", model=model, tokenizer=tokenizer)
|
30 |
example = "Globalization is the process of interaction and integration among people, companies, and governments worldwide."
|
31 |
|
32 |
+
ds_results = nlp(example)
|
33 |
+
print(ds_results)
|
34 |
```
|
35 |
|
36 |
#### Limitations and bias
|