All of Statistics, by Larry Wassserman (2013) [pdf]
41–50 of 55 posts
Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#42Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#43Can someone compare this with Hastie and Tibshirani ( https://lagunita.stanford.edu/courses/HumanitiesSciences/Sta... ) ? I wonder which one is more practical
Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#44Happy to see a book like this trending on hn, especially with a sentence like: "Using fancy tools like neural nets, boosting, and support vector machines without understanding basic statistics is like doing brain surgery before knowing how to use a band-aid." in it's preface. I definitely agree, since I wasted a lot of time doing fruitless surgeries before I went and learned about band aids in depth. From my look at…
> "Using fancy tools like neural nets, boosting, and support vector machines without understanding basic statistics is like doing brain surgery before knowing how to use a band-aid." Having studied both statistics and neural networks, I'm not sure if I completely agree with that quote. There are lots of neural network applications that have little to do with statistics (image recognition with convolutional neural net…
Or like programming in C without also knowing assembly and compiler theory? Or flying a plane without having a degree in aerodynamics?
I think we can extract a lot of use from high level frameworks that abstract away much of the gritty statistics and math. For most applications all we need is to have well behaved, well tested libraries and some basic intuition about how they work.
Fortunately, in machine learning almost everything is a function from inputs X to outputs y, and we know how functions work from programming. It's easy to integrate in apps. The devil is in hyperparameter tuning, but we can get away with good initializations and some measure of web research.
In time people will just use precomputed neural nets for standard tasks like Syntaxnet (text parsing), Inception (image classification) ore use web APIs to hosted services (less secure for sensitive data). We make those better, maybe fine tune them to our needs and get away with it 100x faster.
There is also work in automated hyperparameter search. Machine learning could become a black box when they get good enough.
Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#45Earlier quoted context omitted.
> "Using fancy tools like neural nets, boosting, and support vector machines without understanding basic statistics is like doing brain surgery before knowing how to use a band-aid." Having studied both statistics and neural networks, I'm not sure if I completely agree with that quote. There are lots of neural network applications that have little to do with statistics (image recognition with convolutional neural net…
> "Using fancy tools like neural nets, boosting, and support vector machines without understanding basic statistics is like doing brain surgery before knowing how to use a band-aid." Or like programming in C without also knowing assembly and compiler theory? Or flying a plane without having a degree in aerodynamics? I think we can extract a lot of use from high level frameworks that abstract away much of the gritty s…
Look at how p values are used in science journals for an example of poor stats knowledge affecting real life outputs.
There are some things in life that do require you to do the requisite reading. Things based on stats fall into that camp.
Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#46Happy to see a book like this trending on hn, especially with a sentence like: "Using fancy tools like neural nets, boosting, and support vector machines without understanding basic statistics is like doing brain surgery before knowing how to use a band-aid." in it's preface. I definitely agree, since I wasted a lot of time doing fruitless surgeries before I went and learned about band aids in depth. From my look at…
> "Using fancy tools like neural nets, boosting, and support vector machines without understanding basic statistics is like doing brain surgery before knowing how to use a band-aid." Having studied both statistics and neural networks, I'm not sure if I completely agree with that quote. There are lots of neural network applications that have little to do with statistics (image recognition with convolutional neural net…
I have a pretty weak understanding of statistics and from my perspective it was very common for grad students to also have a weak understanding (of course, those working in statistical learning theory had a strong understanding). This is a pretty ordinary occurrence - it shouldn't be surprising - this is sort of like pointing out that many theoretical statisticians have poor coding skills.
Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#47Earlier quoted context omitted.
> "Using fancy tools like neural nets, boosting, and support vector machines without understanding basic statistics is like doing brain surgery before knowing how to use a band-aid." Having studied both statistics and neural networks, I'm not sure if I completely agree with that quote. There are lots of neural network applications that have little to do with statistics (image recognition with convolutional neural net…
Image classification has everything to do with statistics: you're guessing the probability distribution over the classes conditional on the input image vector; the model is trained through a process of statistical inference (using gradient descent).
There are certainly many areas of neural networks where statistics is important (more theoretical areas), but those don't form the core of the research field.
Also, calling (stochastic) gradient descent a form of statistical inference, while technically correct, is a ridiculous stretching of the term. No researcher considers SGD to be a statistical inference algorithm.
Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#48Can someone say in few sentences what Statistics is all about? I can't shake off the feeling that it is just glorified curve fitting. Edit: Please stop the down votes, just an electrical engineer here, with one basic course in Probability and Stat. :)
Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#49Who is this book supposed to be for? Given the heavy emphasis on formalism (theorem, proof, theorem, proof, theorem, proof), and the lack of a single example that actually computes a number, I hazard a guess that this book is not for people who actually want to apply statistics to real problems. A while back I had to teach myself Fisher matrices and the Cramér–Rao bound to solve a problem I was working on. I quickly…
I cannot tell you how frustrating this was for me. I wanted just the meat: the core mathematical concepts on which statistical models and inferences are built. Don't tell me a folksy story about gathering soil samples, show me the tools and what they can do, both their power and their limitations. I can think for myself about how to apply those concepts.
I loved this book for being exceptionally clear and terse. I was hooked from the first sentence: "Probability is a mathematical language for quantifying uncertainty." That one sentence makes the concept clear in a way that the entire chapter on probability from "Statistics in a Nutshell" (http://www.amazon.com/Statistics-Nutshell-Sarah-Boslaugh/dp/...) did not.
I'm not someone who thrives on theorems and proofs, I thrive on concepts. And I found this book dense with clear explanations of the key concepts.
Re: All of Statistics, by Larry Wassserman (2013) [pdf]
#50If you're new to statistics, try Allen Downey's http://greenteapress.com/thinkstats2/index.html or Brian Blais' http://web.bryant.edu/~bblais/statistical-inference-for-ever.... Both are free.
Then, go in depth on regression. Not just feeding in the numbers and getting back a fitted model, but actually knowing how everything works, what the common issues are, how to interpret the estimates and so on. Once you've got that down, read Regression Modeling Strategies by Harrell to go really in depth.
Or if you're really just interested in prediction, Hastie and Tibshirani is wonderful of course.