this post was submitted on 18 Aug 2023
603 points (96.2% liked)

Programmer Humor

19161 readers
321 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] kittenbridgeasteroid@discuss.tchncs.de 8 points 1 year ago (2 children)

I mean, true AI isn't really a thing yet. People have been using AI wrong for a very long time now. Even ChatGPT isn't real AI.

[–] fidodo@lemm.ee 5 points 1 year ago (2 children)

Nobody can seem to consistently define what ai even means

[–] docAvid@midwest.social 6 points 1 year ago (2 children)

Inevitable. AI is Artificial Intelligence. Nobody can define intelligence, so how can they define an artificial variety?

[–] Streetdog@sh.itjust.works 2 points 1 year ago (1 children)

You can define intellegence by referring to all the very intelligent people online 🧠

[–] zuhayr@lemmy.world 2 points 1 year ago

Thank you for your service

[–] kameecoding@programming.dev 1 points 1 year ago (1 children)
[–] PipedLinkBot@feddit.rocks 1 points 1 year ago

Here is an alternative Piped link(s): https://piped.video/ol2WP0hc0NY?t=33

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I'm open-source, check me out at GitHub.

[–] jadero@programming.dev 5 points 1 year ago

It's a "gaps" problem.

Creationism has the "god of the gaps" where every new fossil forces them to set the goalposts closer together.

The people who think that human intelligence is something special have to adjust the spacing on the goalposts every time a corvid solves a new problem and every time someone figures out how to make a computer do something new.

[–] theycallmebeez@lemmy.ml 0 points 1 year ago (1 children)

ChatGPT is built upon a GPT language model, which is a type of Artificial Intelligence.

[–] Xylight@lemmy.xylight.dev 6 points 1 year ago* (last edited 1 year ago) (3 children)

(This isn't my opinion, just saying what I think they are)

They are saying it's not intelligent in any way though. It sees a bunch of words as numbers and spits out some new numbers that the prediction algorithm creates.

[–] LoafyLemon@kbin.social 17 points 1 year ago* (last edited 1 year ago) (1 children)

What you're thinking of as AI is actually a narrower version, while true intelligence is termed AGI.

Explanation:
The term 'AI' (Artificial Intelligence) refers to computer systems that can perform tasks that would typically require human intelligence, like recognizing patterns or making decisions. However, most AI systems are specialized and focused on specific tasks.

On the other hand, 'AGI' (Artificial General Intelligence) refers to a higher level of AI that possesses human-like cognitive abilities. AGI systems would be capable of understanding, learning, and applying knowledge across a wide range of tasks, much like us.

So, the distinction lies in the breadth of capabilities: AI refers to more specialized, task-focused systems, while AGI represents a more versatile and human-like intelligence.

[–] BlinkAndItsGone@lemm.ee 6 points 1 year ago* (last edited 1 year ago) (1 children)

The term ‘AI’ (Artificial Intelligence) refers to computer systems that can perform tasks that would typically require human intelligence,

That's everything computers do, though, isn't it? Pocket calculators would have fit this definition of AI in the 1970s. In the '60s, "computer" was a human job title.

[–] LoafyLemon@kbin.social 3 points 1 year ago (1 children)

Unless your pocket calculator can recognise patterns or make decisions, it doesn't fit the description.

[–] qwertyasdef@programming.dev 0 points 1 year ago

Really? I would argue that pocket calculators are AI

[–] jadero@programming.dev 3 points 1 year ago

Fair enough. What evidence have you got that it's any different than what humans do? Have you looked around? How many people can you point to that are not just regurgitating or iterating or recombining or rearranging or taking the next step?

As far as I can tell, much of what we call intelligent activity can be performed by computer software and the gaps get smaller every year.

[–] Yendor@sh.itjust.works 2 points 1 year ago (2 children)

That’s not how ChatGPT works.

GPT is an LLM that use RNN. An RNN (Recurrent neural network) is not an algorithm.

[–] BleatingZombie@lemmy.world 5 points 1 year ago

It's not artificially intelligent either

[–] kittenbridgeasteroid@discuss.tchncs.de 1 points 1 year ago (1 children)

Yes, but a neural network is just a collection of ML algorithms.

[–] Yendor@sh.itjust.works 0 points 1 year ago

Yea, but not really. The algorithms are available for free, but they don’t do anything useful by themselves. The RNN is built by training the neural net, which uses grading/classification of training data to increase or decrease millions of coefficients of a multi-layer filter. It’s the training data, the classification feedback and the processing power that actually creates the AI.