this post was submitted on 25 Jun 2026
23 points (100.0% liked)
Fuck AI
7570 readers
672 users here now
"We did it, Patrick! We made a technological breakthrough!"
A place for all those who loathe AI to discuss things, post articles, and ridicule the AI hype. Proud supporter of working people. And proud booer of SXSW 2024.
AI, in this case, refers to LLMs, GPT technology, and anything listed as "AI" meant to increase market valuations.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I think it's probably a good idea. Are you already pursuing a bachelor and if so in what field?
There are a lot of angles to critique LLMs and generative AI from. Economic, social, environmental, psychological and technical. Do you want to study how investors and managers are duped into investing massive amounts of money into a huge bubble? How society is being ruined by slop? How huge data centers are destroying the environment? How sycophantic chatbots are driving people into delusional beliefs, so-called "AI psychosis"? Or would you prefer to focus on the technological side and find out how LLMs compare to other forms of AI and machine learning and data processing and what innovations could lead to more effecient, more effective and less harmful AI?
You could basically follow two routes, I think. You could major in something like sociology, economics or philosophy and minor/specialize in the impacts of AI or technology in general. Alternatively, you could major in AI or IT and do some kind of minor or specialization in its impacts on the world. Though I suppose it's possible you may be able to find a course somewhere in the world that tries to teach both.
I am currently studying Cybersecurity as my bachelor, so my background is very technical.. I think I would like to go the technical route, but also sprinkle in a bit of sociology, or maybe philosophy or something politics related.. Maybe focusing on being sort of bridge in interdisciplinary research with deep knowledge of the technical aspects, while also focusing on more social aspects and collaborating on research with people that have deeper understanding of these issues. There is a master degree in Prague called prg.ai I believe, which kinda tries to teach about AI from many different povs, which could be interesting for me.
To understand things from a technical point of view, you'll want a solid understanding of Artificial Neural Networks (ANN) and how they are usually trained (back-propagation). These have been around for decades and are also used for classification tasks and things like image processing in your phone or GPU.
To create an LLM, you feed the output of the ANN back into the network, creating a Recurrent Neural Network (RNN) and you tokenize the input.
It also helps to have some general knowledge of machine learning (ML) and understand terms like supervised learning and unsupervised learning.
Most of the ideas behind LLMs have been around for years or decades. The big difference is that nowadays we can throw enough compute at the problem to make them viable.
There are two ways to make ANNs and LLMs more efficient: better algorithms and more specialized hardware. For example, bitnets with ternary connections run much better on conventional CPUs and GPUs. Hardware like Google's NPUs, OpenAI's new chip, analog computers or neuromorphic computing could run them more efficiently.