pmaitra commited on
Commit
55a553a
1 Parent(s): 0d82a78

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -0
README.md CHANGED
@@ -64,6 +64,7 @@ The model can be loaded using spacy after installing the model.
64
  ```
65
  !pip install https://huggingface.co/pmaitra/en_biobert_ner_symptom/resolve/main/en_biobert_ner_symptom-any-py3-none-any.whl
66
  ```
 
67
 
68
  ```python
69
 
@@ -75,6 +76,7 @@ doc = nlp("He complained of dizziness and nausea during the Iowa trip.")
75
  for ent in doc.ents:
76
  print(ent)
77
 
 
78
  ```
79
 
80
 
 
64
  ```
65
  !pip install https://huggingface.co/pmaitra/en_biobert_ner_symptom/resolve/main/en_biobert_ner_symptom-any-py3-none-any.whl
66
  ```
67
+ A sample use-case is presented below:
68
 
69
  ```python
70
 
 
76
  for ent in doc.ents:
77
  print(ent)
78
 
79
+
80
  ```
81
 
82