Ines Montani
Ines Montani
What are you trying to achieve with this? Do you want the text to be italicised, or do you want to actually print `hello world.`? If you want the text...
I like the proposed solution! The only thing I'm worried about: Are we going to end up with too many files in the repo? 🤔
From #3070: English models predict empty strings as tags (confirmed also in nightly). ```python >>> nlp = spacy.load("en_core_web_sm") >>> doc = nlp("I like London and Berlin") >>> [(t.tag_, t.pos_) for...
@erip Thanks for getting to the bottom of this – I guess I didn't check the compatibility carefully enough. (I do remember spending a lot of time reading up on...
Thanks for the report! > My training data set is quite big (about 2.3 GB for the train and 580 MB for the dev) and is saved in two JSONL...
Looks like @honnibal forgot to actually link the coref library – here it is: https://github.com/huggingface/neuralcoref ✨ It integrates seamlessly with spaCy and comes with custom models, a pipeline component with...
Good catch. And ugh, that's annoying... 😞 JSON schemas are case-sensitive, which I guess makes sense. Recent drafts support `patternProperties`, i.e. using regular expressions for keys – but this would...
Yes, I've been thinking about this as well. The slides are powered by [`reveal.js`](https://github.com/hakimel/reveal.js/), so in theory, [PDF export](https://github.com/hakimel/reveal.js#pdf-export) should be possible. But I haven't really tried this yet. The...
Ah, I think the problem here is that spaCy's matcher currently validates patterns with the lemma attribute by checking if the document is tagged (because the lemmatizer typically uses the...
Thanks for the report! It looks like the wrapper currently only uses the `token.xpos` for the tag, which seems to not exist here. (Or maybe it changed in Stanza update...