browndw commited on
Commit
9f6833a
·
1 Parent(s): 71f9396

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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
- ner_results = nlp(example)
33
- print(ner_results)
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