Earlier quoted context omitted.
In grad school I asked that so many times trying to figure out why it was the "right" solution and this historical cheat caused so much cognitive dissonance. Then again, on the other hand, "calculus works nicely" and "it's simple" probably are good spooky directors toward useful models anyway.
It's not really a cheat, as it produces the MLE (i.e. most likely) estimate under certain assumptions (e.g. errors are normally distributed, which occurs naturally if the errors are large sums of many unrelated measurements errors).
Machine learning works spectacularly well, but mathematicians aren’t sure why
21–30 of 137 posts
Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#22I'm reminded of the time Google Translate autodetected "Gesundheit" as Spanish. And Gmail kindly offering to translate "hahaha" from Portuguese, putting an ad for coconuts next to it.
Data science is improving, but you might be surprised how slowly. Especially in the consumer space, because the metrics on effectiveness are so warped.
Voice recognition of numbers only, over a phone connection, can be below 40% accuracy! Much of the perceived success of these systems comes not from the core machine algorithm, but from clever human tweaks around it. Also end-users who are happy with what they get, not quite realizing how goofy it all is if they were to get a glimpse of the raw data.
Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#23Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#24One problem with understanding ANNs is that the weight matrix carries a lot of spurious interactions. Running perturbation analysis you can see that many of the interactions do not contribute to the information processing of the circuit. This is the same for Gene Regulatory Networks. I wrote a paper published in Nature's "Systems Biology" entitled Survival of the Sparsest Gene Networks are Parsimonious. It's been cit…
http://papers.nips.cc/paper/5784-learning-both-weights-and-c...
Not sure if it tells us more about why the network works, but they sure as heck get rid of a lot of connections.
Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#25The fact that the class of NN functions is universal is almost vacuous: the basic idea is that if you allow a "neuron" for every point in your input space then you can mimic any function you like (i.e. each neuron handles a single input). Obviously such representations become arbitrarily large. Which almost immediately suggests a solution to why NN learning works: the processes that produce the types of datasets huma…
Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#26One problem with understanding ANNs is that the weight matrix carries a lot of spurious interactions. Running perturbation analysis you can see that many of the interactions do not contribute to the information processing of the circuit. This is the same for Gene Regulatory Networks. I wrote a paper published in Nature's "Systems Biology" entitled Survival of the Sparsest Gene Networks are Parsimonious. It's been cit…
Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#27Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#28I can chime in for the theoretical computer scientists. Deep learning (in its simplest form) corresponds to the class of circuits whose gates are linear threshold functions. Our primary goal with such functions is not to show what problems can be solved by small circuits using linear threshold gates, but what problems cannot be solved with such circuits. Until last week [1], it was an open problem whether every funct…
Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#29The fact that the class of NN functions is universal is almost vacuous: the basic idea is that if you allow a "neuron" for every point in your input space then you can mimic any function you like (i.e. each neuron handles a single input). Obviously such representations become arbitrarily large. Which almost immediately suggests a solution to why NN learning works: the processes that produce the types of datasets huma…
My gut response was, I think, a less rigorous version of this: Humans care about tasks our own brains are good at. If NNs are in fact decent approximations of the way our brains work, then it makes sense they will be anomalously effective on this subset of the "actual" problem space.
OTOH, the parent comment suggested we should draw our attention to the processes that produce the data and find correspondences to how NNs decompose it.
Re: Machine learning works spectacularly well, but mathematicians aren’t sure why
#30Can anyone give me a pointer on what techniques the author is talking about for unsupervised learning at the end of the article?