Recent comments in /f/MachineLearning
v_krishna t1_j3rfc1k wrote
Reply to comment by MrEloi in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
I can definitely imagine Newton posting this, "that fucker Leibiniz gets his name on the notation it's not fair!"
rduke79 t1_j3rdqx1 wrote
Reply to comment by Competitive-Rub-1958 in [Discussion] Is there any alternative of deep learning ? by sidney_lumet
I agree. I just enjoyed diving into HTM at the time and learning cool stuff about the brain. It was a nice break from the math/engineering heavy DL concepts.
Iwishtoeatfish t1_j3rcglx wrote
Reply to comment by fakesoicansayshit in [R] AMD Instinct MI25 | Machine Learning Setup on the Cheap! by zveroboy152
It can. You would need to flash the vbios to a wx9100. It would only have a single mini-displayport out though
taleofbenji t1_j3rb5yl wrote
Reply to comment by SharkyLV in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
Remember--you're unique just like everyone else!
bill_klondike t1_j3r9lj5 wrote
Reply to comment by [deleted] in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
I disagree with your supervisor and your post pretty much illustrates why!
Glitched-Lies t1_j3r89e2 wrote
Reply to [D] Special-purpose "neuromorphic" chips for AI - current state of the art? by currentscurrents
I just bought one from Brainchip. They seem pretty good. I asked them some of their use cases, they have some videos on their YouTube on classification tasks of images of beer bottles, but they seem to be the same kind of tasks you can do on a regular GPU.
Brainchip PCI chip is interesting because you can code for them like regularly, and then send the built neural network to the chip and convert it from a CNN into a SNN, but there doesn't seem to be a great reason to use it this way. It seems like the main use case would be to run a native SNN on it. NPUs don't seem to scale the way GPUs do though either.
MrEloi t1_j3r6x80 wrote
I think this is called 'syncronous serendipity'
benanne OP t1_j3r3stl wrote
Reply to comment by 5death2moderation in [R] Diffusion language models by benanne
DiffWave and WaveGrad are two nice TTS examples (see e.g. here https://andrew.gibiansky.com/diffwave-and-wavegrad-overview/), Riffusion (https://www.riffusion.com/) is also a fun example. Advances in audio generation always tend to lag behind the visual domain a bit, because it's just inherently more unwieldy to work with (listening to 100 samples one by one takes a lot more time and patience than glancing at a 10x10 grid of images), but I'm pretty sure the takeover is also happening there.
If you're talking about text-to-audio in the vein of current text-to-image models, I'm pretty sure that's in the pipeline :)
adalca t1_j3r2zyd wrote
Reply to comment by [deleted] in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
you might want to mention how excited you are that a fancy lab like theirs is working on similar stuff ... maybe you can give them a talk or something :)
[deleted] OP t1_j3r2ukn wrote
Reply to comment by Lanky_Neighborhood70 in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
Thanks man! I appreciate the words of encouragement.
[deleted] OP t1_j3r2rkl wrote
Reply to comment by anon011358 in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
Since it would technically be advertising as per cvpr rules. If you’re interested I can send you some after the review process finishes.
serge_cell t1_j3r2q99 wrote
If both paper have similar results that's acually good IMO. That mean approach is actually works and not some hyperparameters fiddling.
[deleted] OP t1_j3r1bxt wrote
Reply to comment by Tricky_Condition_279 in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
Got it. Thanks a million for the advice!
Tricky_Condition_279 t1_j3r0ysy wrote
Reply to comment by [deleted] in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
I edit and would not mind if an author reached out as it’s my job. I would do it as soon as possible. But tread lightly and ask your advisor her opinion.
LetGoAndBeReal t1_j3r0p45 wrote
Reply to comment by I-am_Sleepy in [D] Simple Questions Thread by AutoModerator
Thank you for this. It seems this paper could surely help answer my question, if only I could understand it!
A challenge I keep coming up against in my quest to quickly learn about ML/NN is that almost everything I read is either too high level to provide meaningful explanation or too technically dense for me to follow. I guess I will just take note of this paper for now and circle back to it when I'm a bit further along.
[deleted] OP t1_j3r0c1m wrote
Reply to comment by Tricky_Condition_279 in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
I see, and would this be done after the reviewed are released or should I reach out to the editor now?
[deleted] OP t1_j3qzu4v wrote
Reply to comment by adalca in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
Will do that!
5death2moderation t1_j3qzs9j wrote
Reply to [R] Diffusion language models by benanne
>as it has in perceptual domains, like audio
citation needed
Tricky_Condition_279 t1_j3qzs7x wrote
Reply to comment by [deleted] in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
You could ask very politely to discuss this with your editor and just point out that the new work validates and demonstrates the importance of your idea. You can acknowledge the preprint in your revision making it clear it came after your original submission.
chief167 t1_j3qzdfl wrote
Reply to comment by [deleted] in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
arxiv is really planting your flag on the topic. I dont trust it because its not peer reviewed, but its definitely a good way to call dibbs
benanne OP t1_j3qzbcr wrote
Reply to comment by themrzmaster in [R] Diffusion language models by benanne
If you were to graph the weighting that ensures the training loss corresponds to likelihood, you would find that it looks roughly like exp(-x). In other words, the importance of the noise levels decreases more or less exponentially (but not exactly!) as they increase. So if you want to train a diffusion model to maximise likelihood (which can be a valid thing to do, for example if you want to use it for lossless compression), your training set should have many more examples of low noise levels than of high noise levels (orders of magnitude more, in fact).
Usually when we train diffusion models, we sample noise levels uniformly, or from a simple distribution, but certainly not from a distribution which puts exponentially more weight on low noise levels. Therefore, relative to the likelihood loss, the loss we tend to use puts a lot less emphasis on low noise levels, which correspond to high spatial frequencies. Section 5 of my earlier blog post is an attempt at an intuitive explanation why this correspondence between noise levels and spatial frequencies exists: https://benanne.github.io/2022/01/31/diffusion.html#scale
"Variational diffusion models" is another paper that focuses on optimising likelihood, which you might find more accessible: https://arxiv.org/abs/2107.00630
adalca t1_j3qz367 wrote
Reply to comment by [deleted] in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
these are concurrent works, the first to put on arxiv by a few days is not the one that gets bragging rights :) One thing you could do is send them your arxiv link, tell them it's concurrent work, and in the next arxiv iteration or whatever you should each cite eachother as concurrent work.
[deleted] OP t1_j3qz0fp wrote
Reply to comment by Fenzik in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
My supervisor advised me against it. She’s not a big fan of putting papers there before they’re published.
[deleted] OP t1_j3qyvu1 wrote
Reply to comment by buyingacarTA in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
Will do so! Thank you :)
DevFRus t1_j3rk8qb wrote
Reply to comment by [deleted] in [D] Found very similar paper to my submitted paper on Arxiv by [deleted]
I think that your supervisor is using arxiv wrong, and giving you bad advice on how to use arxiv.