imnos
imnos t1_iy0wz76 wrote
Reply to comment by Polend2030 in Google Has a Secret Project That Is Using AI to Write and Fix Code by nick7566
I've been coding for 5+ years professionally so I mostly use it to save the effort of typing.
You need to be able to look at what Copilot spits out and understand if it's correct or not, so I'd say it wouldn't be much use for a newbie. You have to know how to structure your code and then let Copilot fill things out whilst keeping an eye on what it's doing.
Sometimes it saves me Googling something I don't know how to do if I can instruct it correctly - and then I just test that what it wrote works, so you may be able to learn some things from it but you'll be able to use it to it's full potential once you have some knowledge/experience under your belt.
imnos t1_ixyvu0j wrote
Reply to comment by dasnihil in Google Has a Secret Project That Is Using AI to Write and Fix Code by nick7566
I'm not sure if it's safe for a decade but I've been using Copilot for over a year and it's a huge time saver like you say. 90% of the time it gets what I need with at least 90% accuracy. Really helpful for writing repetitive code.
I find it works best if your codebase is consistent and well structured.
With GPT-4 on the horizon, and DeepMind also having a model that can compete with "the average developer", I'm super interested to see how things change in the next few years.
imnos t1_ixyq8xw wrote
Cue the software developers and naysayers saying how bad it will be and how development jobs are safe for many years to come.
imnos t1_ixjyfb9 wrote
Reply to comment by wordyplayer in Over 1,000 songs with human-mimicking AI vocals have been released by Tencent Music in China. One of them has 100m streams. by mutherhrg
The video on their homepage is just their AI regurgitating known tunes.
imnos t1_ixielu7 wrote
imnos t1_ixhw99a wrote
Reply to comment by blueSGL in Over 1,000 songs with human-mimicking AI vocals have been released by Tencent Music in China. One of them has 100m streams. by mutherhrg
It's a track called "Today" apparently.
The generic name and fact that anything with Tencent in the search returns Chinese results makes it a little tough to find. No idea why they didn't link the track.
Any Chinese folk here that can help?
imnos t1_ivv0z4t wrote
Reply to comment by SFTExP in Amazon introduces Sparrow—a state-of-the-art robot that handles millions of diverse products by maxtility
Just wait for the space ads at night..
imnos t1_iuxawjn wrote
Reply to Scientists Create Glow In The Dark Plants That Could Replace Streetlights In The Future by sopadebombillas
As long as they don't spread their seeds far and wide so that we have entire fields lit up at night. I'm sure the ecosystem would love that!
imnos t1_ius8zt2 wrote
Faster than..what? How does this compare to what DeepMind accomplished with AlphaFold?
imnos t1_isq0vsu wrote
And the AI race to see who can profit the most out of it, continues.
imnos t1_isoxw0v wrote
Reply to comment by byttle in Vaccines to treat cancer possible by 2030, say BioNTech founders by Shelfrock77
Great. More for the rest of us then.
imnos t1_ishe9nj wrote
Reply to comment by Desperate_Donut8582 in Developer combines Stable Diffusion, Whisper and GPT-3 for a futuristic design assistant by Peaking_AI
"Nah I'm good"
~ some luddite, 2022
imnos t1_iqsapyg wrote
Reply to comment by thehourglasses in How John Deere plans to build a world of fully autonomous farming by 2030 by Shelfrock77
Right. All for automation but there's little point in it unless you sort out the issues caused by monocultures. Can't automate farming if your soil has all turned to dust.
imnos t1_iy0xy2v wrote
Reply to comment by VisibleSignificance in Google Has a Secret Project That Is Using AI to Write and Fix Code by nick7566
Er, a lot? If your codebase is well structured most of it will follow similar patterns which you just need to repeat, with different class/variable names etc. That makes it ripe for automation with Copilot.
Then there's unit tests which cover the above - if you keep the structure similar then copilot can fly through it.
Likewise for generating things like seed data. Need to create some seeds for your database just write out what you need in a comment and Copilot gets it mostly right.
So much time saved.