← Home ← Back to /g/

Thread 106214357

52 posts 8 images /g/
Anonymous No.106214357 >>106214411 >>106214435 >>106214750 >>106214926 >>106215239 >>106216337 >>106216774 >>106216959 >>106218952 >>106219838 >>106220228 >>106220520 >>106223272 >>106225418
Why does Rust buckbreak AI so hard?
Anonymous No.106214411
>>106214357 (OP)
there's little Rust code for LLMs to be trained on
same goes for COBOL 2 and older Fortran dialects
Anonymous No.106214435
>>106214357 (OP)
>I am unable to complete your request
What a mouthy little cunt. I wish he had a physical body I would beat his ass.
Anonymous No.106214477 >>106214941
lol failing on an import
Anonymous No.106214750 >>106214896
>>106214357 (OP)
if you want to shit out code, use a language appropriate for code shitting.
and if you can't tell what's wrong, not even real intelligence can help with this level of retardation anyway.
Anonymous No.106214896 >>106215883 >>106216765
>>106214750
>shit out code
>not even real intelligence
rust was specifically made for people like you to shit out code that they don't have the real intelligence to be trusted with languages like C.
Anonymous No.106214926
>>106214357 (OP)
no one understands it so it can't learn from those that do
Anonymous No.106214941
>>106214477
A hundred billion more to Altman and he will fix it, I promise!
Anonymous No.106215239
>>106214357 (OP)
Because for AI to master ugly, complex, and unpopular languages, it needs human-level or AGI-level deductive reasoning, sirr.
Expert models don't have it and they require a lot of good data and adjustments, which Rust does not have.
Anonymous No.106215353 >>106220900
>give me five hundred billion american dollars
Anonymous No.106215883 >>106215970
>>106214896
>more sophisticated machines are for stupid workers
your min wagery smells
Anonymous No.106215970 >>106216610
>>106215883
they are though, most skilled and highest paid labor relies more heavily on human factor, rather than machines
Anonymous No.106216337 >>106216353 >>106216738 >>106218420
>>106214357 (OP)
Glicko-2 is a meme, use the full-pair Brandley-Terry model from a paper called "A Bayesian Approximation Method for Online Ranking". It natively supports 1v1s, team-vs-team, free-for-all, like TrueSkill, with predictive performance similar to TrueSkill, but without the patents that come with TrueSkill
Anonymous No.106216353 >>106216409
>>106216337
>is a meme
>performance similar to TrueSkill, but without the patents that come with TrueSkill
Anonymous No.106216409 >>106222219
>>106216353
What's the issue, Glicko-2 works fine for 1v1 but heuristics that people use to make it work for team-vs-team games suck. Both TrueSkill and this method support team-vs-team directly, and it's really better than Glicko-2 heuristics, but team-vs-team player ratings and matchmaking in general always sucks either way, it's too difficult
Anonymous No.106216610 >>106216696
>>106215970
>manual labor is peak skill
the min wagery continues to smell
Anonymous No.106216696 >>106217126
>>106216610
Where did I say anything about it being
>manual
?
Anonymous No.106216738 >>106220403
>>106216337
>use thing from the 1920s
No
Anonymous No.106216765 >>106217189
>>106214896
>rust was specifically made for people like you to shit out code
Quite the opposite. Rust is very rigid and formal, you can't just bodge your way through it.
Python is a language made to "shit out code".
Anonymous No.106216774
>>106214357 (OP)
Can't blame it when it comes to Crust
Anonymous No.106216959 >>106217189
>>106214357 (OP)
I've noticed that AI's seem to like giving unsafe Rust code unless you preface your prompts by telling it explicitly that you don't want unsafe code. Otherwise it will sometimes give you unsafe code, tell you it's unsafe, but give it to you anyway.

I'm guessing as other anons said, there is really not a lot of rust code for AI's to learn from compared to other older languages - and half of what it does find is probably C/C++ devs doing it "their way" with what rust considers unsafe
Anonymous No.106217126 >>106218391
>>106216696
>can't follow a couple of arguments to their logical conclusion
i apologize to min wagers
Anonymous No.106217189 >>106217452 >>106217747 >>106218091
>>106216765
Rust is midwit "if it compiles it's bug free!" mentality.
>>106216959
It gives unsafe code because doing actual work in Rust requires unsafe.
So the whole training set of actual code is unsafe.
Anonymous No.106217452
>>106217189
>I can't write safe code
Got it
Anonymous No.106217747 >>106218852
>>106217189
>It gives unsafe code because doing actual work in Rust requires unsafe.
Give me an example of what unsafe code can do that safe code can't
Anonymous No.106218091
>>106217189
>Rust is midwit "if it compiles it's bug free!" mentality.
How is this related to your original claim?
Anonymous No.106218391 >>106218718
>>106217126
nta but you're acting like a fucking nigger. is min wager the only comeback you know?
Anonymous No.106218420 >>106221260
>>106216337
why doesnt valve use it then if it's so good
Anonymous No.106218439
It's also dogshit at helm charts
Anonymous No.106218718
>>106218391
He's right though. Minwage cucks act and behave like he describes. Truth hurts.
Anonymous No.106218852 >>106219518
>>106217747
>Give me an example of what unsafe code can do that safe code can't
Make a system call.
Anonymous No.106218952 >>106219170 >>106219564
>>106214357 (OP)
chatgpt managed to get me a good bit into my project but had to constantly change a lot of shit for any extra feature. I expected Rust to be more condensed code but shit needs a lot of code
Anonymous No.106219170
>>106218952
i guess it's slightly easier when you can at least tell if the llm hallucinated a crate or a crate API. that's the lowest bar imaginable that op somehow still managed to not clear.
the code will still be pure crap, mind. i remember a noob in another platform sharing his happiness because an llm was helping him "learn rust". so i asked him to explain a snippet from the "working code" he happily shared, and he was like "yeah, i understand". he didn't of course. because he thought the code was doing something wrong. it didn't. it was just gibberish verbosity that did nothing and didn't need to exist at all, which goes to your second point.
Anonymous No.106219518 >>106219561
>>106218852
Neither can virtually any high level language, without use of non standard extensions, intrinsics or straight up calling low level code. Even C doesn't have any standard way of invoking a system call.
Anonymous No.106219532
10 years, 1 trillion dollars, and GPT12 will finally be able to parse Rust code
Anonymous No.106219561
>>106219518
Irrelevant to the question.
Anonymous No.106219564 >>106220806
>>106218952
ChatGPT feels like it is generating C/Java code and then transpiling it to Rust. The code it outputs is not idiomatic and has tons of pointless shit.
I reduced a function my friend generated from 30 to maybe 10 lines of code simply by using iterators and option/result correctly instead of writing it all out imperatively.
Anonymous No.106219838
>>106214357 (OP)
>I am still unable to resolve this compilation error
Shoulda put a threat in your system prompt, he would try harder.
Anonymous No.106220228
>>106214357 (OP)
because it's overly complicated language that only mentally ill people can understand.

just wrangling with the borrow checker requires great mental energy, working memory and reasoning skills.
Anonymous No.106220403
>>106216738
It's like you didn't even bother to understand anything, "A Bayesian Approximation Method for Online Ranking" was published like 10-15 years ago and it derives three models, a Brandley-Terry one, a Plackett-Luce one and a Thurstone-Mosteller one - the Brandley-Terry one turns out to be the best in benchmarks. Elo and Glicko themselves are related to the Brandley-Terry model. This paper is also what the OpenSkill library is based on.
Anonymous No.106220520 >>106220669
>>106214357 (OP)
In theory, you would never need to emit rust, AI should be able to emit C code without the issues Rust purports to solve.
Anonymous No.106220669
>>106220520
>oh I got another segmentation fault let me burn credits looking at the core dump
Anonymous No.106220806 >>106220941 >>106223260
>>106219564
> feels like it is generating C/Java code and then transpiling it to Rust
That’s because 99.999% of *all* rust code was generated that way.
AI is a competitor to Rust β€” both are different ways to launder IP.
β€œI wrote it in rust” is practically announcing to the world that you stole the code and deleted the attributions, and changed the license so it can be re-stolen and made proprietary by other companies.
Time is of the essence before the courts catch on to the Rust scam.
Anonymous No.106220900
>>106215353
Anonymous No.106220941
>>106220806
>announcing to the world that you stole the code
I've got news for you that you might want to sit down for
Anonymous No.106221260
>>106218420
I assume they don't actually use Glicko-2 as-is with some heuristic to make it work for team games, but rather a modification of Glicko-2 for team games that makes sense mathematically. But I don't really know exactly, didn't Dota 2 literally use Elo (or a modification of it, presumably without any kind of deviation or uncertainty values, like in the original) until very recently?
Anonymous No.106222219 >>106223125
>>106216409
Open/TrueSkill suck balls when teams have roles (TF/ET-like) unless the player picks always the same role. You have to add heuristics that destroy the point of memeskill
Anonymous No.106223125 >>106223221
>>106222219
But isn't that an issue with every rating system
Anonymous No.106223221
>>106223125
But if you're gonna tune it for that, better use the best building block for it
Anonymous No.106223260
>>106220806
Nothing you have said makes any sense.
Anonymous No.106223272
>>106214357 (OP)
It gets stumped by fairly simple Haskell bugs too. Goes to show that these models have not advanced on a technical level after several years and billions of dollars. Despite the companies using words like "thinking" and "agents" these are still stochastic parrots who can't generalize for shit.
Anonymous No.106225418
>>106214357 (OP)
wtf I love rust now