I am in academia and worked in NLP although I would describe myself as NLP adjacent. I can confirm LLMs have essentially confined a good chunk of historical research into the bin. I suspect there are probably still a few PhD students working on traditional methods knowing full well a layman can do better using the mobile ChatGPT app. That said traditional NLP has its uses. Using the VADER model for sentiment analysis…
That's because VADER is just a dictionary mapping each word to a single sentiment weight and adding it up with some basic logic for negations and such. There's an ocean of smaller NLP ML between that naive approach and LLMs. LLMs are trained to do everything. If all you need is a model trained to do sentiment analysis, using VADER over something like DistilBERT is NLP malpractice in 2025.
Ouch. Was that necessary?
I used $1000 worth of GPU credits and threw in VADER because it’s basically free both in time and credits.
I usually do this on large dataset out of pure interest in how it correlates with expensive methods on English language text.
I am well aware of how VADER works and its limitations, I am also aware of the limitations of all sentiment analysis.