baukearends commited on
Commit
b14856b
1 Parent(s): f6f08ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -47,7 +47,7 @@ import spacy
47
  nlp = spacy.load("nl_Echocardiogram_SpanCategorizer_aortic_regurgitation")
48
  ```
49
  ```python
50
- prediction = nlp("Op dit echo geen duidelijke WMA te zien, goede systolische L.V. functie, wel L.V.H., diastolische dysfunctie graad 1A tot 2. Geringe aortastenose en - matige -insufficientie. Geringe M.I.")
51
  for span, score in zip(prediction.spans['sc'], prediction.spans['sc'].attrs['scores']):
52
  print(f"Span: {span}, label: {span.label_}, score: {score[0]:.3f}")
53
  ```
 
47
  nlp = spacy.load("nl_Echocardiogram_SpanCategorizer_aortic_regurgitation")
48
  ```
49
  ```python
50
+ prediction = nlp("Op dit echo geen duidelijke WMA te zien, goede systolische L.V. functie, wel L.V.H., diastolische dysfunctie graad 1A tot 2. Geringe aortastenose en matige aortaklepinsufficientie. Geringe M.I.")
51
  for span, score in zip(prediction.spans['sc'], prediction.spans['sc'].attrs['scores']):
52
  print(f"Span: {span}, label: {span.label_}, score: {score[0]:.3f}")
53
  ```