TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What is the state of other types of AI?

6 pointsby jamilbk10 months ago
Hi HN,<p>This is a question I&#x27;ve found myself wondering a lot recently. There&#x27;s obviously been lots of recent progress in the state-of-the-art for LLMs and generative AI, but is this progress trickling over to other areas of AI such as machine&#x2F;deep learning?<p>If so, what are some resources to get up to speed quickly?

2 comments

sk1100110 months ago
It’s good and useful. Some use cases in NLP have moved over to using LLMs, many use cases in NLP&#x2F;vision are basically using pre trained models and adding some simple similarity search or simple classification on top of it. Then you have a bunch of deep learning and non-dl methods for forecasting, tabular data, search ranking etc.
PaulHoule10 months ago
Generative AI is is a subset of deep learning which is a subset of machine learning.<p>Note there are a huge number of other ML approaches, two that are useful in tabular data (where LLMs tend to fail) are<p><a href="https:&#x2F;&#x2F;scikit-learn.org&#x2F;stable&#x2F;modules&#x2F;linear_model.html#logistic-regression" rel="nofollow">https:&#x2F;&#x2F;scikit-learn.org&#x2F;stable&#x2F;modules&#x2F;linear_model.html#lo...</a><p>and<p><a href="https:&#x2F;&#x2F;scikit-learn.org&#x2F;stable&#x2F;modules&#x2F;ensemble.html" rel="nofollow">https:&#x2F;&#x2F;scikit-learn.org&#x2F;stable&#x2F;modules&#x2F;ensemble.html</a><p>of which XGBoost is still winning competitions.<p>There is also the “old AI” based on logic that is doing well, see Donald Knuth’s notes on developments in SAT<p><a href="https:&#x2F;&#x2F;www.inf.ufrgs.br&#x2F;~MRPRITT&#x2F;lib&#x2F;exe&#x2F;fetch.php?media=inf5504:7.2.2.2-satisfiability.pdf" rel="nofollow">https:&#x2F;&#x2F;www.inf.ufrgs.br&#x2F;~MRPRITT&#x2F;lib&#x2F;exe&#x2F;fetch.php?media=in...</a>