9 ms·
It is a bit like in "Profession" by Isaac Asimov. We will still have the need for some people who will write code manually, fix the craft. We will need the "Fe
by _glass 2mo ago
It is a bit like in "Profession" by Isaac Asimov. We will still have the need for some people who will write code manually, fix the craft. We will need the "Feeble Minded" asylum that is actually a secret sanctuary for society's true creators. Because everyone else relies on generated code, they can only repeat what is already known. Only the people who learn the hard way through actual studying possess the creativity and intelligence required to invent new knowledge and create new educational tapes.
- cedws 2mo agoThe reason LLMs seem powerful is that they can churn out the Nth variation of a CRUD app in minutes. But it’s hard to imagine they’ll ever independently develop a compiler for a truly novel programming language, for instance. They don’t have creativity. They are pattern generators.
- igortg 2mo agoIsn't "creativity" the result of a combination of patterns (usually from different contexts) that casually works? I bet LLMs/agents can do that (we can't know how far that can goes).
- _glass 2mo agoFor me that creativity is very well expressed by the principle of abduction. With induction, generalise towards rules, or deduction, use rules on data, we have this combination of patterns via different contexts. I think abduction might not be possible via LLMs.
- elzbardico 2mo agoI'd say that even if the task is "a compiler for an existing language" the empirical results are far from stellar, and indeed, border the terrain of comedy.
- vidarh 2mo agoClaude has made my Ruby compiler pass 8k more rubyspecs tests over the last two weeks, and that includes solving crashing bugs in hours that I'd failed to fix for weeks in the past. Compilers for existing languages is if anything one of the lower bars for LLMs, given existing implementations or test suites provides an oracle to test against. It's not lack of ability that is stopping this, but that it's a space where very few people are experimenting and willing to burn enough tokens.
- mech998877 2mo agoReminds me of 'I don't think a computer will ever beat a human at chess'.
- Zak 2mo ago> it’s hard to imagine they’ll ever independently develop a compiler for a truly novel programming language I did exactly that using an LLM. It may not count as independent depending on how strict you are about that, but then LLMs don't do anything independently. I wrote a small sample program and expected output, then told the LLM to write a compiler for it in C using LLVM. I subsequently told it to extend the language until it could be used for its own compiler, and rewrite the compiler in the new language. It did. I don't think that contradicts your point about creativity. A compiler is probably a more mechanical task than a CRUD app is. There's a non-negotiable definition of done and correct. Designing a language is a creative task of course, and I wouldn't expect an LLM to come up with a novel or ergonomic design on its own. In fact subsequent experiments have shown me that LLMs will consistently ignore terrible ergonomics in a language, never seeking opportunities to add abstraction or beauty.
- cedws 2mo agoBut what was novel about the language?
- Zak 2mo agoAt the time the LLM generated the compiler, just syntax. The semantics it generated were the subset of C that the C version of the compiler already used. You could set the goalposts such that it wasn't novel enough to count, but for a short time I had code running in a language that nobody had ever known. Getting it from that point to a language that's ergonomic to use, teaches something about computing, or both is a longer journey, and certainly not one an LLM could take on its own. An LLM won't come up with an interesting CRUD app on its own either. Parts of that process are pretty mechanical, but we had skeletons and templates before we had LLMs.
- fn-mote 2mo agoMy main argument about this kind of work is that it is (essentially if not exactly) in the training set. I want a different argument before I believe that LLMs are doing “out of training dataspace creativity” (extrapolation not interpolation).