Earlier quoted context omitted.
Man I wish they could be compensated remotely in proportion to that. Matthew Honnibal and team are wizards who have been working really hard for a really long time. Maybe there's a comp strategy i don't know about - but they've created SO much value for the world.
Thanks for the love :). For the record yes we've been working hard, but also yes, we've been doing well from it. I will say that people are using spaCy for free because that is what we asked them to do. I chose to make the library free and open-source when I first released it because I had the idea that I would be able to make that work out for me, if I could make this thing that would be useful to people and if they…
SpaCy 3.0
31–40 of 82 posts
Re: SpaCy 3.0
#32SpaCy and HuggingFace fulfill practically 99% of all our needs for NLP project at work. Really incredible bodies of work. Also, my team chat is currently filled with people being extremely stoked about the SpaCy + FastAPI support! Really hope FastAPI replaces Flask sooner rather than later.
Re: SpaCy 3.0
#33Thanks to the SpaCy team! I spent a lot of time over about 20 years working on my own NLP tools. I stopped doing that and mostly now just use SpaCy (and sometimes Huggingface and Apple’s NLP models).
Have you compared SpaCy with Apple's NLP on M1? I presume GPU is not being used by SpaCy on M1.
Re: SpaCy 3.0
#34SpaCy and HuggingFace fulfill practically 99% of all our needs for NLP project at work. Really incredible bodies of work. Also, my team chat is currently filled with people being extremely stoked about the SpaCy + FastAPI support! Really hope FastAPI replaces Flask sooner rather than later.
There's some native SpaCy + FastAPI integration being created?! This sounds mindblowing, off to Google I go...
But apart from that, there's actually not really much to integrate, as it all just works.
Both libraries are actually (well ) designed to be decoupled. So that you can mix them independently with anything else.
Note: I'm the creator of FastAPI, and also a developer at Explosion (spaCy's home).
Re: SpaCy 3.0
#35Re: SpaCy 3.0
#36Please note that Explosion does not like redistribution of SpaCy, they expect everyone to only use the builds they produce, so it would not be a good idea to package it for your favourite distro.
I'm sorry that this conflicted with your plans, but I feel strongly that distributing Python libraries via system package managers such as apt is very bad for users. The pain is felt especially by users who are relatively new to Python, who will end up with their system Python in a confusing state that is difficult to correct. We of course encourage anyone to clone the repo or install from an sdist if they want to co…
Re: SpaCy 3.0
#37So with SpaCy 3.0, HuggingFace, do we still have a reason to use NLTK? Or they complement each other? Right now, I lost track of the progress in NLP.
I only use NLTK since it has some base tools for low-resource languages for which noone has pretrained a transformer model or for specific NLP-related tasks. I still use their agreement metrics module, for instance. But that's about it. Dep parsing, NER, lemmatising and stemming is all better with the above mentioned packages.
Re: SpaCy 3.0
#38The new configuration approach looks familiar to AllenNLP and that's great. Loose-coupling of model submodules with flexible config should be standard in NLP. I am happy that more libraries are integrating these concepts.
Re: SpaCy 3.0
#39Re: SpaCy 3.0
#40SpaCy and HuggingFace fulfill practically 99% of all our needs for NLP project at work. Really incredible bodies of work. Also, my team chat is currently filled with people being extremely stoked about the SpaCy + FastAPI support! Really hope FastAPI replaces Flask sooner rather than later.
As someone who never used NLP, what is it used for? Or better what is SpaCy used for - I know that it can generate Texts... but how would I use it in a business?