TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Natural Language Basics with TextBlob

69 点作者 sloria超过 9 年前

8 条评论

languagehacker超过 9 年前
TextBlob is just an easy-to-use wrapper for a number of more involved libraries, including NLTK and Pattern.<p>As with most things like it, if you&#x27;re looking to shift off extremely unsophisticated NLP work to a junior developer, this is a good thing.<p>If you&#x27;re an engineer focused in the NLP space, using this API would be like tying your hand behind your back. It introduces its own performance problems, and obscures a number of configurations that the APIs of the libraries it wraps expose. I also find its attitude towards object-orientation tends to obscure performance bottlenecks by hiding how much just-in-time computation occurs for a given string.<p>Also, I hate to admit this, but the Java&#x2F;Scala NLP stack is beating out most Python NLP libraries these days. NLTK _just_ got Stanford CoreNLP&#x27;s best-in-class dependency parser. It&#x27;s been available in Java for years.
评论 #10287236 未加载
imh超过 9 年前
I think NLP is really cool, but it seems to be moving so quickly. If I wanted to get a decent overview, are there some review papers or textbooks with good coverage that aren&#x27;t too out of date?
评论 #10288296 未加载
alextk超过 9 年前
Absolutely love TextBlob API. Much easier to get started, than NLTK. We currently use similar design in our nlp toolkit for Estonian: <a href="http:&#x2F;&#x2F;estnltk.github.io&#x2F;estnltk&#x2F;1.3&#x2F;index.html" rel="nofollow">http:&#x2F;&#x2F;estnltk.github.io&#x2F;estnltk&#x2F;1.3&#x2F;index.html</a>
ma2rten超过 9 年前
Also have a look at <a href="http:&#x2F;&#x2F;spacy.io&#x2F;" rel="nofollow">http:&#x2F;&#x2F;spacy.io&#x2F;</a><p>It&#x27;s better than textblob &#x2F; nltk in many ways.
评论 #10287814 未加载
评论 #10288013 未加载
fizzbatter超过 9 年前
Can&#x27;t wait for a &quot;batteries included&quot; NLP solution to come to Golang
huckyaus超过 9 年前
&quot;There is no such thing as a sentence, or a phrase, or a part of speech, or even a &quot;word&quot; — these are all pareidolic fantasies occasioned by glints of sunlight we see on reflected on the surface of the ocean of language; fantasies that we comfort ourselves with when faced with language’s infinite and unknowable variability.&quot;<p>This is a particularly beautiful articulation of the complexity of English (and language in general).
lewisl9029超过 9 年前
Can anyone recommend some JS (or compiles-to-JS) NLP libraries that can be used for strictly client-side NLP in a privacy conscious web app?
BinaryIdiot超过 9 年前
I have&#x27;t used TextBlob but I found this interesting regardless (I&#x27;m very interested in NLP). Thanks for the read! Slightly off topic but I don&#x27;t see very many NLP libraries for C++ as I do Python; are there any notable ones?
评论 #10287251 未加载