Update README.md
Browse files
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
|