The Wayback Machine - https://web.archive.org/web/20200618150505/https://github.com/topics/spacy
Skip to content
#

spacy

Here are 514 public repositories matching this topic...

ines
ines commented Sep 29, 2019

I was going though the existing enhancement issues again and though it'd be nice to collect ideas for spaCy plugins and related projects. There are always people in the community who are looking for new things to build, so here's some inspiration For existing plugins and projects, check out the spaCy universe.

If you have questions about the projects I suggested,

rasa
solyarisoftware
solyarisoftware commented Apr 30, 2020

I propose this topic as feature request, but it's also a documentation issue, as lack of details in user guide paragraph: https://rasa.com/docs/rasa/core/actions/#custom-actions.

What specified in paragraph Execute Actions in Other Code is obscure to me, and details at the API documentation link [Action Server](]https://rasa.com/docs/rasa/api/acti

kjaquier
kjaquier commented Jul 17, 2019

Code:

nlp = spacy.load('en_core_web_sm')
coref = neuralcoref.NeuralCoref(nlp.vocab)
nlp.add_pipe(coref, name='neuralcoref')

doc = nlp("She loves him.")
print(len(doc._.coref_clusters), 'clusters')

doc = nlp("My sister has a dog. She loves him.")
print(len(doc._.coref_clusters), 'clusters')

doc = doc[7].sent.as_doc()
print(len(doc._.coref_clusters), 'clusters')

Outpu

textacy
thepartisan101
thepartisan101 commented May 1, 2020

Duplicate from issue #192 (solved in 2018) but cannot apply solution on textacy 0.10
Hi, I'm using Textacy on Google Colab environment, running a default hosted runtim, installed through !pip3 install textacy
I've run into the same problem as the OP in #192 , I'm following the official document examples, version installed is the latest (textacy-0.10.0).

When trying dir(textacy) this the o

bug
fukidzon
fukidzon commented Feb 21, 2020

I wanted to use pytextrank together with spacy_udpipe to get keywords from texts in other languages (see https://stackoverflow.com/questions/59824405/spacy-udpipe-with-pytextrank-to-extract-keywords-from-non-english-text) but I realized, that udpipe-spacy somehow "overrides" the original spacy's pipeline so the noun_chunks are not generated (btw: the noun_chunks are created in lang/en/syntax_itera

lamthuy
lamthuy commented Apr 1, 2020

Hi,
When we try to tokenize the following sentence:

If we use spacy

a = spacy.load('en_core_web_lg')

doc = a("I like the link http://www.idph.iowa.gov/ohds/oral-health-center/coordinator")

list(doc)

We got

[I, like, the, link, http://www.idph.iowa.gov, /, ohds, /, oral, -, health, -, center, /, coordinator]

But if we use the Spacy transformer tokenizer:

scispacy
ChantalvanSon
ChantalvanSon commented Mar 10, 2020

First of all, thanks for creating scispacy, I think it's an amazing tool and very useful!!

I was running into an issue when saving the output of scispacy. I tried to pickle a Doc object, as explained on the website of spaCy, as follows:

import spacy
import pickle

nlp = spacy.load("en_core_sci_sm")

# add the Abbreviation Detector
abbrev
SergeyShk
SergeyShk commented Mar 23, 2020

spaCy version: 2.1.9
spaCy-stanza version: 0.2.1

import stanza
from spacy_stanza import StanzaLanguage

stanza.download('ru')
snlp = stanza.Pipeline(lang="ru")
nlp = StanzaLanguage(snlp)
text = "Мама мыла раму"

Using stanza, i get this:

for sentence in snlp(text).senteces:
	for word in sentence.words:
		print(word.feats)

# Animacy=Anim|Case=Nom|Gender=
gurunath-p
gurunath-p commented Sep 17, 2017

I have been trying to use a custom NER model for spacy-services with the name 'endec'.When I try to use it directly by loading it in displacy/app.py, I get the following error:

`Traceback (most recent call last):
File "app.py", line 4, in
get_model('endec')
File "/home/prgs/spacy-services/displacy/displacy_service/server.py", line 36, in get_model
_models[model_name] =

Improve this page

Add a description, image, and links to the spacy topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the spacy topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.