LLMs learn what programmers create, not how programmers work
21–30 of 31 posts
Re: LLMs learn what programmers create, not how programmers work
#22Re: LLMs learn what programmers create, not how programmers work
#23Re: LLMs learn what programmers create, not how programmers work
#24Re: LLMs learn what programmers create, not how programmers work
#25Re: LLMs learn what programmers create, not how programmers work
#26I know even we hit the same thing building internal security tooling. our model kept formatting output like documentation, not like how we would or any person in place of us would read in a terminal at 2am during an incident. I am a bit curious, did you find this behavior consistent across models or is it more pronounced with certain ones?
I ran into it while building - I should have tested different temps too - I was just trying to get cli style tool calls to be more reliable
Re: LLMs learn what programmers create, not how programmers work
#27I know even we hit the same thing building internal security tooling. our model kept formatting output like documentation, not like how we would or any person in place of us would read in a terminal at 2am during an incident. I am a bit curious, did you find this behavior consistent across models or is it more pronounced with certain ones?
Literate programming is about to become mainstream in the funniest way possible.
Re: LLMs learn what programmers create, not how programmers work
#28The moment I shifted to computing the analysis upstream and describing results in plain english, the outputs were much more coherent.
The model doesn't know what numbers/spreadsheets of data mean inherently, as in... the LLM inherently does not compute a math equation/formula within itself. Rather, an LLM would calls/creates calculation code on the side to then read off the results. And still with this side-work, the code/calculator created would give contextual wordings to the numbers; highest, average, x% growth, consolidating at y% rate, etc.
Re: LLMs learn what programmers create, not how programmers work
#29Re: LLMs learn what programmers create, not how programmers work
#30Ended up just accepting it and adjusting our parser. Fighting the model's training is a losing battle.