So are we all going to be out of a job?
Not yet, but I think our role will get more and more "meta"
Demo of an OpenAI language model applied to code generation [video]
61–70 of 158 posts
Re: Demo of an OpenAI language model applied to code generation [video]
#62Re: Demo of an OpenAI language model applied to code generation [video]
#63I had trouble accessing the relevant video snippet even after going through the conference registration, so here's a summary. You can view the demo at https://twitter.com/i/broadcasts/1OyKAYWPRrWKb starting around 29:00. It's Sam Altman demoing a massive Open AI model that was trained on GitHub OSS repos using a Microsoft supercomputer. It's not Intellicode, but the host says that they're working on compressing the m…
Re: Demo of an OpenAI language model applied to code generation [video]
#64Are those two entirely separate and yet exactly similar initiatives?
Re: Demo of an OpenAI language model applied to code generation [video]
#65These are just baby steps, but holy shit is that impressive. It kind of feels like working with offshore devs, but it's in real time.
Re: Demo of an OpenAI language model applied to code generation [video]
#66Re: Demo of an OpenAI language model applied to code generation [video]
#67I mean it is cool. But there is the thing, the natural description of a function is not always this unambiguous. When you are telling a function to 'compute XYZ', what you are actually doing is 'check whether X.a exists, if so execute branch 1), else branch 2)'. If the logic gets really complicated, then describing it accurately in human language isn't necessarily faster than doing it in code directly. Otherwise, we…
But I think the example given of unit testing - ie. natural language description of specific behavior of function -> code is extremely useful.
Re: Demo of an OpenAI language model applied to code generation [video]
#68I had trouble accessing the relevant video snippet even after going through the conference registration, so here's a summary. You can view the demo at https://twitter.com/i/broadcasts/1OyKAYWPRrWKb starting around 29:00. It's Sam Altman demoing a massive Open AI model that was trained on GitHub OSS repos using a Microsoft supercomputer. It's not Intellicode, but the host says that they're working on compressing the m…
Re: Demo of an OpenAI language model applied to code generation [video]
#69Re: Demo of an OpenAI language model applied to code generation [video]
#70I mean it is cool. But there is the thing, the natural description of a function is not always this unambiguous. When you are telling a function to 'compute XYZ', what you are actually doing is 'check whether X.a exists, if so execute branch 1), else branch 2)'. If the logic gets really complicated, then describing it accurately in human language isn't necessarily faster than doing it in code directly. Otherwise, we…
Or implementing a sophisticated protocol that has a formal specification. If you can express the correct behavior in some kind of pithy pseudocode, a tool like this could "compile" that to code in various programming languages. Like a super-powered version of SWIG.