RandomTwitterGuy
kiwifarms.net
- Joined
- Aug 31, 2019
as with all the other explanations you got, I just like to add on. Programmers are fundamentally lazy, present company included. We want to find the best way to make sure we don't have to do something again.
That way when the alphabet homos start using GitHub pilot, I don't think they would actually double check their code. Which the AI writes from them, and given previous history of AI manipulation. (rip in peace tay tay) it would be very easy to sneak something like that code in.
View attachment 2332330
edit: adding tay tay video
That image hurts my souls, this is directly painful to me. That is me for the last 2-3 months, but man my code can do some SHIT!!!, but it is overengineered as fuck to handle all kinds of stupid shit.
Now to be more on topic
This is pretty much my impression of ML/Neural nets. It excels at a small subset of tasks, specifically those which involve pattern recognition of a large volume of “messy” data (e.g. raw text or images) which would be exceedingly difficult or time-consuming to analyze using traditional methods. However, retards keep trying to jam it where it doesn’t belong because they’re part of the “I fucking love science!!!” troon brigade that thinks science is literal magic and that importing libraries is coding.
When a thing has a very simple "Yes" or "No" answer then Neural networks are great as soon as you even have a bit of fuzziness on the answer then it becomes a problem.
Is this a CAT "YES/NO" update according to answer. Easy simple and in the long run it will work fine.
Code however is not always perfect.
During my education i had to write code in C++ for a version of Knights tour or travels or something and it needed to be scaled so it could reach a 1000*1000 chess board or something big like that.
First Version of the code works fine, but takes 4 hours to complete.
Second Version i cut the time down around 2 hours. (Why the fuck is std::pair a thing and shit)
Third version took about a min if not less (I figured out how to use pointers and queue)
All 3 codes work and that is the problem. The machine can not tell if something is good code only that a lot of people did something so it copies.