[D] ICML 2019 decisions are out
Good luck!
submitted by /u/ohdangggg
[link] [comments]
Good luck!
submitted by /u/ohdangggg
[link] [comments]
In Pytorch, the update equation of SGD with (non-Nesterov) momentum is m[i+1] = β m[i] + g L(w[i+1]), where g means gradient, β is the momentum coefficient, m[i] is the momentum at iteration i, L is the loss function, w[i] is the value of weights at iteration i.
If we are starting with m[0] = 0, then for all i > 0 m[i] = sum({ βj g L(w[i-j]) | j∈{0, …, i-1} }).
Now, let’s write down the formulas for exponentially weighted moving average of gradients (which we’ll denote as a[i]) to show that one is equivalent to the other multiplicated by a constant. We will make a non-traditional assumption that a[0] = 0. It doesn’t matter, because as i goes to infinity, the contribution of the zeroth term goes to zero.
a[i+1] = β a[i] + (1-β) g L(w[i+1]) We can rewrite it as a[i] = (1 – β) sum({ βj g L(w[i-j]) | j ∈ {0, …, i-1} }).
Notice that ∀ β ∈ [0, 1) it holds that (1 – β) m[i] = a[i].
It seems to me that we should change the update equation of momentum SGD to the equation of exponentially weighted moving average of gradients, i.e. add the 1 – β coefficient to the gradient term. Here’s why:
I am interested to hear, what reasons are there not to change the update formula? And if you think this is a good change, how should the authors of deep learning libraries proceed?
submitted by /u/CrazyCrab
[link] [comments]
I want to start learning machine learning where do I start?
submitted by /u/WazWazMan
[link] [comments]
Hi, I’m working with a large dataset of 1-D data (think time series) with wildly varying values (decidedly non-Normal.) My goal is to train an autoregressive generative model like WaveNet using this data. I’ll need to normalize all series to the range [0, 1] so I can then quantize the data to 256 possible values for the softmax output of the WaveNet. I’ve run into a few problems and haven’t found much help on the internet (mostly searching for time series normalization, standardization, etc.)
A quick run through my current process:
Is my best option to just cull the outliers? Or am I missing a step somewhere? I’ve visualized a few of the outliers, and they are valid data. I’ve also tried median-stacking nearest neighbor series to tame some of the volatility but am not sure where to go from here. Leaving it as is will increase the effective quantization noise in my data since instead of being spread over 256 values, most series only span ~100 values in the discrete space. Any help would be much appreciated!
submitted by /u/collider_in_blue
[link] [comments]
This is a place to share machine learning research papers, journals, and articles that you’re reading this week. If it relates to what you’re researching, by all means elaborate and give us your insight, otherwise it could just be an interesting paper you’ve read.
Please try to provide some insight from your understanding and please don’t post things which are present in wiki.
Preferably you should link the arxiv page (not the PDF, you can easily access the PDF from the summary page but not the other way around) or any other pertinent links.
Previous weeks :
Most upvoted papers two weeks ago:
/u/spoiltForChoice: https://lear.inrialpes.fr/pubs/2011/JDS11/jegou_searching_with_quantization.pdf
/u/ToolTechSoftware: https://accu.org/index.php/journals/2639
Besides that, there are no rules, have fun.
submitted by /u/ML_WAYR_bot
[link] [comments]
Hi,
I’m pretty new to the whole ML thing, but I’ve a decent grasp on how it works under the hood. I’ve been mulling over a few projects I want to try, using TensorFlow in particular, it seems to be the easiest one to use (that I’ve discovered, anyway).
I just wanted to inquire here about the limits of something like TF, such as the maximum number of inputs, the complexity of an output, compute time etc.
When I say complexity of an output, I’m referring to say, having the program spit out a full engineering diagram, blueprints, measurements, 3D models and things along those lines. I’m not expecting it to be easy, but I’d like to get a rough idea of how much work I can have the machine do for me.
Thanks, and I hope this isn’t some totally off the wall, absolute misunderstanding of the technology!
submitted by /u/The_MonopolyMan
[link] [comments]
Some recently hired data scientists at work are suggesting that we start using tools like Algorithmia and FastScore for deploying machine learning models. Some of them are talking about “One click model deployment”. I took a look at the websites for these products, but I’m still having a hard time figuring out what they can do that is so special and why exactly do they make life easier for a data scientists compared to running your model on Google Cloud ML or Sagemaker?
submitted by /u/AlexSnakeKing
[link] [comments]
A small group of humans is winning consistently against OpenAI Five. There seem to be a few reproducible strategies that keep beating the bot. Can someone describe what those strategies are for someone that hasn’t played DoTA?
submitted by /u/FirstTimeResearcher
[link] [comments]
I’ve read about microsofts IntelliCode that aims to guide developers with better code completion and I want to start something similar for the Rust programming language as project both to learn ml and to use it at the end. I know that means a lot of work and the result will probably be in a whole different league than what microsoft has build.
From what I’ve read syntax checks can be implemented with autoencoders and LSTM networks, but I don’t know how to suggestion for code corrections.
LSTM networks are used for autocompletion and text generation, but I would need to implement a context aware network that gets code from before and behind the cursor. I guess I would need to tokenize the different syntax elements like natural language in NLTK is processed?
Right now this is mostly guess work for me. I would highly appreciate tipps on the network type and design and information about related work.
submitted by /u/grayfallstown
[link] [comments]