Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/datatypes/text/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,16 @@ this is a much longer sentence

Let's search for `"she entered the room"` in *Pride and Prejudice*:

````{admonition} SciPy
:class: note

The example below uses SciPy to speed up computations. To install SciPy you can run `pip install scipy`, or install
it together with other optional dependencies using `pip install "docarray[full]"`.

Alternatively, you can run the example below without SciPy by setting `use_scipy=False` in the `.match()` method.
````


```python
from docarray import Document, DocumentArray

Expand Down