-
I'm trying to use the summary pipe, but I haven't found any references for how to use it. Does anyone know?
nlp = spacy.blank("pt")
llm = nlp.add_pipe("llm_summarization")
nlp("""The United Natio…
-
### Describe the bug
when trying to finetune WavLM and using DDP. there are some unused parameters. This causes the run to crash. when using --find_unused_parameters it says there are no unused par…
-
## How to reproduce the behaviour
Given:
```python
import spacy
# FORM LEMMA UPOS FEATS DEPREL
def format(text):
nlp = spacy.load("en_core_web_sm")
for sent in nlp(text).sents:
…
-
I'm having this very odd error. It occurs when I open a file and turn on `spacy.prefer_gpu()`:
```
import spacy
from tqdm import tqdm
spacy.prefer_gpu()
nlp = spacy.load("models/model-best"…
-
The Programming Historian has received the following tutorial on 'Corpus Analysis with SpaCy' by @mkane968. This lesson is now under review and can be read at:
http://programminghistorian.github.io…
-
- https://spacy.io/usage/processing-pipelines#processing
- https://spacy.io/usage/processing-pipelines#multiprocessing
-
The Chinese word segmentation model zh_core_web_sm-3.5.0 in spaCy has two files. One is weights.npz, which contains dimensions and model weight values, and I can understand that. The other file is f…
-
Hi,
I'm able to use stanza to extract NER,POS and dependency tree from Arabic text.
I know that coreference resolution is based on stanford CORENLP. I downloaded stanford CORENLP 4.0.0 , unzip it …
-
Hi all, apologise for [cross posting](https://github.com/explosion/spacy-llm/issues/223#issue-1808589913). Please let me know and I can remove my post from one of the forums.
## How to reproduce th…
-
Excellent work. I was literally working on this very thing when I found this.
I wrote a short example program to explicitly show one way to use this.