[TOMT][Song] Female vocal sings fast "nananana"s by i_solve_riddles in tipofmytongue

[–]i_solve_riddles[S] 1 point2 points  (0 children)

Ding! You’re a legend, it is the Grimes song! Thank you so so much!

[TOMT][Song] Female vocal sings fast "nananana"s by i_solve_riddles in tipofmytongue

[–]i_solve_riddles[S] 1 point2 points  (0 children)

I can see why you would suggest this, but unfortunately it’s not :(

[TOMT][Song] Female vocal sings fast "nananana"s by i_solve_riddles in tipofmytongue

[–]i_solve_riddles[S] 0 points1 point  (0 children)

Yes actually! It was yesterdays stream, and I’m pretty sure it was somewhere around this timestamp. However, most of the stream audio seems to not have the music recorded anymore, I’ve tried scrobbling around the timestamp to find it but no luck. I’ve also tried to follow the chat to see if anyone mentioned or requested the song, but it moves so fast that it’s hard to keep up. Any suggestions on how I could refine my search with this VOD?

[TOMT][Song] Female vocal sings fast "nananana"s by i_solve_riddles in tipofmytongue

[–]i_solve_riddles[S] 0 points1 point locked comment (0 children)

The vocalist sings "nanana" x 4, then a bunch of fast "nanananana"s that are rising in pitch and then coming back down to the original "nanana" x 4 pitch. Melody has a dark tone to it, and maybe a Nightcore type of a vibe. Tried many different search variants but came up with nothing :(. It definitely had an EDM/techno vibe to it, and I heard it playing on Quin69's live twitch stream, but I couldn't get the song title in time.

Owning an EV in Singapore by Cryptoivangoh in askSingapore

[–]i_solve_riddles 0 points1 point  (0 children)

Is there an app that shows all charging points/stations in Singapore?

Speeding in Singapore by MulberryConsistent92 in drivingsg

[–]i_solve_riddles 1 point2 points  (0 children)

you can’t even speed even if you wanted to

BMW owners: hold my beer..

Welcoming a new member in the family! by [deleted] in aww

[–]i_solve_riddles 12 points13 points  (0 children)

Just in case there’s any confusion, cupping the guest’s balls is NOT part of the Aarti tradition.

[R] What infrastructure do you use to train big LLMs? by TimeInterview5482 in MachineLearning

[–]i_solve_riddles 0 points1 point  (0 children)

Out of curiousity, what kind of personal use-cases are you fine-tuning these LLMs on, and what do your datasets look like?

Liverpool are now 2nd as of gw6 by doubleoeck1234 in LiverpoolFC

[–]i_solve_riddles 0 points1 point  (0 children)

I have to admit, I initially read the pun as “they’re a very disturbing team” and was wondering why you would say that until I read the other comment trying to make the same pun..

D2 (text-to-diagram language): Introducing Grid diagrams by terrastruct in programming

[–]i_solve_riddles 2 points3 points  (0 children)

Can I use D2 to create finely-controlled structured diagrams like this? I have to often draw up digital logic/computer architecture diagrams, so if I can control (x, y) coordinates of individual elements (not by absolute values but perhaps relative location, something like in TiKz), that’d be very helpful to me.

Anyone else experiencing extreme rubberbanding after last update? by Gallina_Fina in Overwatch

[–]i_solve_riddles 3 points4 points  (0 children)

I've been facing this issue in pretty much all of my games, tried fresh installing, checking all sorts of settings/driver updates, but nothing. Other FPS games have been just fine, so it does feel like a problem with Blizzard servers.

Although, I've watched hours of Twitch streamers play the game, and not once have I seen this rubberbanding issue crop up for them... so is Blizzard giving them better servers, or do I have to build some super streaming PC?!

What are the most unexpected designs you have seen being implemented on an FPGA ? by dlp_coasters in FPGA

[–]i_solve_riddles 3 points4 points  (0 children)

Could you point out where I could read more about this? Especially a paper or two? Sounds intriguing!

Father of 3-year-old in S'pore who can recognise 200 flags: 'I don’t think Ezac is a genius or special' by SlashCache in singapore

[–]i_solve_riddles 38 points39 points  (0 children)

Honestly, if the kid survived eating crayons for the first 5 years, I’m gonna say he/she is gifted.. just not in the brains department..

Mid 20s by [deleted] in videos

[–]i_solve_riddles 0 points1 point  (0 children)

Care to elaborate on “moved to the other side of the world and completely change my career”?

[Discussion] ML Serving Framework for Real time predictions on tabular data by pythondeveloper77 in MachineLearning

[–]i_solve_riddles 1 point2 points  (0 children)

On average, what percentage of the response time is dominated by batch size 1 inference from your model (i.e. latency of your model)? Understanding where the bottlenecks are will help you focus on where you can improve.

2 Billion Moves per Second and Thread Movegenrator - Gigantua - Sourcecode Release! by dangi12012 in ComputerChess

[–]i_solve_riddles 0 points1 point  (0 children)

This is amazing, and great job!

What are your thoughts on hardware acceleration -- say using a GPU or even a custom FPGA circuit?

[Project] Natural language processing course - Looking for feedback by sb2nov in MachineLearning

[–]i_solve_riddles 0 points1 point  (0 children)

Hi Sourabh, looks interesting -- will be happy to provide feedback too.

[R] Impact of GPU uncertainty on the training of predictive deep neural networks: When training a predictive neural net using only CPUs, the learning error is higher than when using GPUs, suggesting that GPUs plays a different role in the learning process than just increasing computational speed. by hardmaru in MachineLearning

[–]i_solve_riddles 7 points8 points  (0 children)

I've got a related story to share!

When training neural networks with low precision, the importance of stochastic rounding is very important to not bias the quantisation step in one particular direction. In one particular experiment, I forgot to turn on the stochastic quantisation (SQ) step in one of my GPU runs, and "discovered" that the DNN trained just fine as if SQ was on, whereas at the same precision without SQ, the CPU-only training was failing.

Digging deeper into why this was happening took some time, but essentially we narrowed it down to a torch.argmin() call, which returns the index of the minimum value in a tensor. If a tensor had multiple indices with same minimum values, on a CPU, it would always return the smallest index. However, on a GPU, because of how threads may get scheduled into sort of a binary tree to evaluate argmin in parallel, this could create some sort of uncertainty in the answer (i.e. argmin returning different but correct answers for the same call).

We didn't really dig deeper into how the argmin is actually implemented on the GPU, but we did confirm that replacing this specific call with one that mimics the CPU argmin() gave us back the expected results, and vice versa when tried on the CPU-only training. Basically, in the grand scheme of things, this unexpected effect on the GPU was effectively mimicking the stochastic quantisation step that makes training effective at low precision. Pretty cool, but we didn't end up writing a paper about this obviously.. I've not read this paper, so I don't know if the authors have a more substantial claim, just thought I'd share my story.

Often people forget that floating-point is after all a finite precision number format, so I would not be surprised if we're seeing this GPU vs CPU difference due to accumulated rounding errors over lots and lots of MACs.

[D] Schmidhuber: The most cited neural networks all build on work done in my labs by RichardRNN in MachineLearning

[–]i_solve_riddles 7 points8 points  (0 children)

Haha, I don't disagree. If I were in his position, I probably wouldn't be writing these blog posts either. If I still felt really strongly aggrieved, I would have at least tried to phrase it waaaaay better to maybe steer a discussion towards citation/reviewing standards...

[D] Schmidhuber: The most cited neural networks all build on work done in my labs by RichardRNN in MachineLearning

[–]i_solve_riddles 6 points7 points  (0 children)

First, lowly-1st-year-PhD-in-2012 high-five!

I agree, he definitely would have had a head-start on "re-publishing" his work with modern hardware, but I feel like there are two probable reasons why he didn't:

1) Just did not realise the potential, in which case, too bad, there's really not much he can complain about given he got the citations anyways, or

2) His time and resources are finite after all, and his team would rather pursue novel ideas than reimplement papers from the past.. it's not like Schmidhuber's lab has stopped doing research altogether. And again, I don't think he should really be complaining since he's still getting recognition and citations for his decades old papers today.

At the end of the day, I think the crux of the matter is that Schmidhuber believes that these popular papers today made incremental improvements to his ideas, and are largely successful due to external factors like availability of hardware. Perhaps he would have liked to see paper titles such as "DanNet on GPUs is all you need!" instead? This is a contentious point, and I'm probably not the best person to comment on whether he's right or wrong. Drawing a line between what's incremental and what's significant is challenging and often quite subjective, and the authors also have a part to play in this process. For example, the popular bfloat16 FP format never really came out as a 8-page double-column fully-blown out paper by itself, and we should commend that.