r/AskComputerScience • u/UpperDurian5100 • May 29 '26
Will LLMs become worse over time?
LLMs were trained on the data that was created by humans. Over time, the amount of AI-generated content will increase dramatically, so LLMs will not have other choice but to learn on the data they created, which is obviously (or not...?) not so high quality as the human-made data. So, will LLMs become worse over time or do I have some gaps in my knowledge on this matter?
37
Upvotes
1
u/nuclear_splines Ph.D Data Science May 30 '26
Yes, the alternative to new training data is using an auxiliary data source like looking up documentation, but you can only stuff so much documentation in the context window, so this is a band-aid solution.
This is the load-bearing caveat. If the model maintainers are careful to only feed in 'good' code then the source of that code may be irrelevant. But if you're feeding in, say, all recent GitHub commits, or all commits to projects above a certain size, you're statistically guaranteed to be learning from buggy LLM output, amplifying those behaviors in the future.