TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Autocomplete Python with Deep Learning

109 pointsby vpjalmost 6 years ago

5 comments

bobajeffalmost 6 years ago
I've been thinking about using something like this for Swype-like keyboard for coding on phones.
评论 #20377584 未加载
etaioinshrdlualmost 6 years ago
Another fun idea is to make a &quot;code denoiser&quot;. Removing noise (bugs) from your code.<p>It&#x27;s quite simple to synthetically inject lots of noise into code, simply use the wrong variables, operators, numbers, structures, reverse statement ordering, transforming code at the AST level.<p>Then you can learn mappings of bad code =&gt; good code!<p>The same idea has worked for natural languages as well, correcting typos.
make3almost 6 years ago
I wished they had an online demo, or jupyter notebook with an easy to download pretrained model so I can test it in colab
nikeeealmost 6 years ago
Is this similar to Microsoft&#x27;s IntelliCode? How does it differ?
评论 #20375084 未加载
logicprogalmost 6 years ago
This is pretty cool, but I&#x27;m not sure how much better this approach would be compared to language server based completion (something like RLS).