UMCU commited on
Commit
05f536e
·
verified ·
1 Parent(s): 80e9bad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -0
README.md CHANGED
@@ -49,6 +49,11 @@ named_ents = le_pipe(SOME_TEXT)
49
  To process a string of arbitrary length you can split the string into sentences or paragraphs
50
  using e.g. pysbd or spacy(sentencizer) and iteratively parse the list of with the span-classification pipe.
51
 
 
 
 
 
 
52
 
53
 
54
  # Data description
 
49
  To process a string of arbitrary length you can split the string into sentences or paragraphs
50
  using e.g. pysbd or spacy(sentencizer) and iteratively parse the list of with the span-classification pipe.
51
 
52
+ Alternatively you might try
53
+ ```python
54
+ named_ents = le_pipe(SOME_TEXT, stride=256)
55
+ ```
56
+
57
 
58
 
59
  # Data description