Ask HN: Papers you read in 2015?
1–10 of 46 posts
Re: Ask HN: Papers you read in 2015?
#2http://journals.plos.org/plosone/article?id=10.1371/journal....
Large cohort study done determining what the biological mechanism are of IBS (irritable bowel syndrome).
Defines a new test, IBSChek which can be used to determine if a patient has a subtype of IBS. Anyone can get this test done now.
Re: Ask HN: Papers you read in 2015?
#3Generating Text with Recurrent Neural Networks http://www.cs.utoronto.ca/~ilya/pubs/2011/LANG-RNN.pdf
Bitcoin whitepaper https://bitcoin.org/bitcoin.pdf
Ethereum paper http://gavwood.com/Paper.pdf
Re: Ask HN: Papers you read in 2015?
#4and many others but this is the one I liked the most
Re: Ask HN: Papers you read in 2015?
#5Sci-hub link: http://www.sciencedirect.com.sci-hub.io/science/article/pii/...
Re: Ask HN: Papers you read in 2015?
#6Batch Normalization http://jmlr.org/proceedings/papers/v37/ioffe15.pdf
Deep Neural Decision Forests http://research.microsoft.com/pubs/255952/ICCV15_DeepNDF_mai...
Spatial Transformer Networks https://papers.nips.cc/paper/5854-spatial-transformer-networ...
Re: Ask HN: Papers you read in 2015?
#7Re: Ask HN: Papers you read in 2015?
#8Re: Ask HN: Papers you read in 2015?
#9"Tackling the Awkward Squad: monadic input/output, concurrency, exceptions, and foreign-language calls in Haskell" (http://research.microsoft.com/en-us/um/people/simonpj/papers...) finally made me understand monads. Or rather, why they have such an unreasonable draw on Haskell people. tl;dr: Monads are useful to thread data (state, side effects, ...) through a computation, without modifying all your function signatures (the functions can be lifted to work with the monad). But mostly, it turns out you NEED monads (or something like it) to sequence side-effects (since Haskell is lazy).