Skip to content
  • Home Home Home, current page.
  • Moments Moments Moments, current page.

Saved searches

  • Remove
  • In this conversation
    Verified accountProtected Tweets @
Suggested users
  • Verified accountProtected Tweets @
  • Verified accountProtected Tweets @
  • Language: English
    • Bahasa Indonesia
    • Bahasa Melayu
    • Català
    • Čeština
    • Dansk
    • Deutsch
    • English UK
    • Español
    • Filipino
    • Français
    • Hrvatski
    • Italiano
    • Magyar
    • Nederlands
    • Norsk
    • Polski
    • Português
    • Română
    • Slovenčina
    • Suomi
    • Svenska
    • Tiếng Việt
    • Türkçe
    • Ελληνικά
    • Български език
    • Русский
    • Српски
    • Українська мова
    • עִבְרִית
    • العربية
    • فارسی
    • मराठी
    • हिन्दी
    • বাংলা
    • ગુજરાતી
    • தமிழ்
    • ಕನ್ನಡ
    • ภาษาไทย
    • 한국어
    • 日本語
    • 简体中文
    • 繁體中文
  • Have an account? Log in
    Have an account?
    · Forgot password?

    New to Twitter?
    Sign up
Skiminok's profile
Alex Polozov
Alex Polozov
Alex Polozov
@Skiminok

Tweets

Alex Polozov

@Skiminok

Staff Research Scientist @Theteamatx / Alphabet • ex @MSFTResearch, @uwcse • program synthesis, deep learning, AI4Code • opinions own or borrowed • he/him

San Francisco
alexpolozov.com
Joined March 2009

Tweets

  • © 2021 Twitter
  • About
  • Help Center
  • Terms
  • Privacy policy
  • Cookies
  • Ads info
Dismiss
Previous
Next

Go to a person's profile

Saved searches

  • Remove
  • In this conversation
    Verified accountProtected Tweets @
Suggested users
  • Verified accountProtected Tweets @
  • Verified accountProtected Tweets @

Promote this Tweet

Block

  • Tweet with a location

    You can add location information to your Tweets, such as your city or precise location, from the web and via third-party applications. You always have the option to delete your Tweet location history. Learn more

    Your lists

    Create a new list


    Under 100 characters, optional

    Privacy

    Copy link to Tweet

    Embed this Tweet

    Embed this Video

    Add this Tweet to your website by copying the code below. Learn more

    Add this video to your website by copying the code below. Learn more

    Hmm, there was a problem reaching the server.

    By embedding Twitter content in your website or app, you are agreeing to the Twitter Developer Agreement and Developer Policy.

    Preview

    Why you're seeing this ad

    Log in to Twitter

    · Forgot password?
    Don't have an account? Sign up »

    Sign up for Twitter

    Not on Twitter? Sign up, tune into the things you care about, and get updates as they happen.

    Sign up
    Have an account? Log in »

    Two-way (sending and receiving) short codes:

    Country Code For customers of
    United States 40404 (any)
    Canada 21212 (any)
    United Kingdom 86444 Vodafone, Orange, 3, O2
    Brazil 40404 Nextel, TIM
    Haiti 40404 Digicel, Voila
    Ireland 51210 Vodafone, O2
    India 53000 Bharti Airtel, Videocon, Reliance
    Indonesia 89887 AXIS, 3, Telkomsel, Indosat, XL Axiata
    Italy 4880804 Wind
    3424486444 Vodafone
    » See SMS short codes for other countries

    Confirmation

     

    Welcome home!

    This timeline is where you’ll spend most of your time, getting instant updates about what matters to you.

    Tweets not working for you?

    Hover over the profile pic and click the Following button to unfollow any account.

    Say a lot with a little

    When you see a Tweet you love, tap the heart — it lets the person who wrote it know you shared the love.

    Spread the word

    The fastest way to share someone else’s Tweet with your followers is with a Retweet. Tap the icon to send it instantly.

    Join the conversation

    Add your thoughts about any Tweet with a Reply. Find a topic you’re passionate about, and jump right in.

    Learn the latest

    Get instant insight into what people are talking about now.

    Get more of what you love

    Follow more accounts to get instant updates about topics you care about.

    Find what's happening

    See the latest conversations about any topic instantly.

    Never miss a Moment

    Catch up instantly on the best stories happening as they unfold.

    1. Alex Polozov‏ @Skiminok Jun 29

      Alex Polozov Retweeted Kevin Scott

      So stoked to finally discuss Copilot! I've used it inside MSR for months, watched it evolve, and discussed collabs. [Disclaimer: the tech is by the amazing @github/@openai, I'm an informed observer.] Not exaggerating, Copilot will be in top-3 tech developments of 2020s 🧵👇https://twitter.com/kevin_scott/status/1409908648495702022 …

      Alex Polozov added,

      Kevin ScottVerified account @kevin_scott
      Today, @GitHub, @OpenAI and @Microsoft launched a technical preview of GitHub Copilot. It’s a great example of how advancements in #AI are producing powerful new tools to help developers write better code - and spur more creativity and innovation. http://copilot.github.com 
      12 replies 80 retweets 393 likes
      Show this thread
    2. Alex Polozov‏ @Skiminok Jun 29

      Q&A for my mixed tech/academic audience. 1) Is it real? Does it work like these examples? Yes. It does. As you type, it offers snippets, from small expressions to whole blocks. Shockingly good ones. You can also write a comment/docstring and explicitly ask for a top-K list. 1/

      1 reply 2 retweets 36 likes
      Show this thread
    3. Alex Polozov‏ @Skiminok Jun 29

      2) Is this program synthesis? What *is* program synthesis, really? 🙂 Are there any formal guarantees on the generated code? No, not at the moment. But it does synthesize code from scratch, given implicit intent. It does not "search" for it, conventionally speaking. 2/

      4 replies 1 retweet 36 likes
      Show this thread
    4. Alex Polozov‏ @Skiminok Jun 29

      Program synthesis = code generation in some PL, given developer intent. In contrast to classic literature, developer intent here is *context*. Context = surrounding code + language. Not hard to add formal intents like tests/examples but we'll need research to guarantee them. 3/

      2 replies 0 retweets 26 likes
      Show this thread
    5. Alex Polozov‏ @Skiminok Jun 29

      3) But w/o guarantees, will it introduce bugs? It might. In fact, it *will*. Copilot's current suggestions are mind-blowingly precise (30%), totally out of line (30%), or plausible yet buggy (40%). [Numbers pulled out of my head.] But it doesn't matter as much as you think: 4/

      2 replies 3 retweets 47 likes
      Show this thread
      Alex Polozov‏ @Skiminok Jun 29

      Boilerplate, API calls, test setup, data flow between structures, adapting SO patterns to your codebase… this is 80% of dev work. We've tried automating it for years but it's always intertwined with "smart" work. The ML/HCI model of "contextual code generation" solves that. 5/

      12:47 PM - 29 Jun 2021
      • 2 Retweets
      • 51 Likes
      • AITrdr Albert Szabo . Kia Rahmani nikhil Tobias 😷 💉+ vaibhav sagar Davit Soselia Andric
      2 replies 2 retweets 51 likes
        1. New conversation
        2. Alex Polozov‏ @Skiminok Jun 29

          Let me be precise. If your context/problem are unique, you will struggle with bugs in the current Copilot tech. And you will spend mental energy reviewing AI suggestions. But this is an *opportunity* for neuro-symbolic program synthesis research, not a reason to dismiss it. 6/

          2 replies 5 retweets 62 likes
          Show this thread
        3. Alex Polozov‏ @Skiminok Jun 29

          Neural code generation models learn a *contextualized language space* for us, in which we now apply PL analysis/synthesis methods more efficiently – with nice prelim results. Of course the goal is to get top-1 right. (And we will, eventually.) But I'm excited about the space. 7/

          2 replies 1 retweet 24 likes
          Show this thread
        4. Alex Polozov‏ @Skiminok Jun 29

          4) Does the code generation model truly understand program semantics? It's a philosophical question (define "understand" for neural nets, please) but right now – probably not. Program semantics is in execution, and neural language models don't observe execution. However: 8/

          1 reply 0 retweets 22 likes
          Show this thread
        5. Alex Polozov‏ @Skiminok Jun 29

          Program semantics is *also* in how people write, use, and communicate with/about code. People routinely "reason" about code semantics when reviewing PRs or reading Github. So do language models. Like in natural language, semantics partly arises from usage. 9/

          1 reply 0 retweets 17 likes
          Show this thread
        6. Alex Polozov‏ @Skiminok Jun 29

          It's incomplete, so new research on encoding actual execution and augmenting models with it is crucial. There's a huge (actively explored) space in deeply integrating static analysis, tracing, and other symbolic insight – *with* the language model, not to fight it. 10/

          1 reply 1 retweet 28 likes
          Show this thread
        7. Alex Polozov‏ @Skiminok Jun 29

          Maybe I'll outline more concrete research directions in a blog post, Twitter threads make me scream. I'll add to the thread as new questions arise, though. 11/

          5 replies 0 retweets 25 likes
          Show this thread
        8. End of conversation
        1. New conversation
        2. Talia Ringer‏ @TaliaRinger Jul 1
          Replying to @Skiminok

          Hmm, on this point though, people have a tendency to trust machines more than themselves sometimes (consider the field of human-robot interaction). Are you worried about people using buggy generated code, but assuming it is correct since it came from a tool?

          1 reply 0 retweets 0 likes
        3. Talia Ringer‏ @TaliaRinger Jul 1
          Replying to @TaliaRinger @Skiminok

          I'd really love to see a user study of people trusting Copilot suggestions to not be buggy when told 1) they came from Copilot, or 2) they came from a human

          1 reply 0 retweets 0 likes
        4. Show replies

      Loading seems to be taking a while.

      Twitter may be over capacity or experiencing a momentary hiccup. Try again or visit Twitter Status for more information.

        Promoted Tweet

        false

        • © 2021 Twitter
        • About
        • Help Center
        • Terms
        • Privacy policy
        • Cookies
        • Ads info