this post was submitted on 01 Apr 2024
1 points (100.0% liked)

Technology

1377 readers
74 users here now

Which posts fit here?

Anything that is at least tangentially connected to the technology, social media platforms, informational technologies and tech policy.


Rules

1. English onlyTitle and associated content has to be in English.
2. Use original linkPost URL should be the original link to the article (even if paywalled) and archived copies left in the body. It allows avoiding duplicate posts when cross-posting.
3. Respectful communicationAll communication has to be respectful of differing opinions, viewpoints, and experiences.
4. InclusivityEveryone is welcome here regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
5. Ad hominem attacksAny kind of personal attacks are expressly forbidden. If you can't argue your position without attacking a person's character, you already lost the argument.
6. Off-topic tangentsStay on topic. Keep it relevant.
7. Instance rules may applyIf something is not covered by community rules, but are against lemmy.zip instance rules, they will be enforced.


Companion communities

[email protected]
[email protected]


Icon attribution | Banner attribution

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 0 points 7 months ago (1 children)

I think you're missing the point. I don't like copilot/chat gpt for important stuff because if I have to double check their solutions I barely gained any time. Especially since it's correct more often than not because it will make me complacent over enough time (the professors who were patient enough to actually explain why we shouldn't be using Wikipedia as a primary source also used the same point which I thought made a lot of sense).

[–] [email protected] 0 points 7 months ago (1 children)

You're going to need to fact check any code you get online anyways, why not have it hyper specific to your current use case? If you're a good developer, review does not take nearly as long as manual implementation

[–] [email protected] 0 points 7 months ago* (last edited 7 months ago) (2 children)

I very rarely grab code online because I work in videogames and it's very hard to find good code for the things I struggle with since all the publicly available stuff is for hobbyists and thus usually very basic/unoptimized as hell

Most of the time the stuff I can't figure out myself isn't even mentioned anywhere on hobbyist forums because it's not needed for these applications (for a recent example: assets management. For hobby projects you can usually get away with hard references to all of your assets, so it's not even a thing)

[–] [email protected] 0 points 7 months ago* (last edited 7 months ago)

If what you want is difficult to find publicly, then that also means an LLM is going to be weak in that area as well

What you want is a "general AI" LLM, something capable of stringing together a solution based on past somewhat related solutions. We're not here yet, so basically you're asking it to do something beyond what it is capable of and it's trying its best anyways

Alternatively, you could try fine tuning your own LLM, if you have access to some sort of large repository with non-public solutions or something

[–] [email protected] 0 points 7 months ago

So you're rewriting the wheel every time? I also have worked in games and we definitely utilized public resources whenever possible to save time/money. Asset management in particular has a lot of resources unless you're talking about truly huge scale things like MMO scale streaming stuff.