Earlier quoted context omitted.
The great thing about Scheme is that you can learn it in less than 10 minutes and focus on the ideas.
Sure - but I think that's the least important part of my comment. The preview is basically just an intro to Scheme. I would rather be able to see how well the book covers interesting ideas about deep learning. While the jury is still out, my personal skepticism is that this is a really beautiful passion project that looks great on bookshelves, but that any serious learner would be better served dedicating their time…
The Little Learner: A Straight Line to Deep Learning
51–60 of 102 posts
Re: The Little Learner: A Straight Line to Deep Learning
#52I went through some of the eBook providers but none seem to be offering a PDF version. Did anyone notice if a PDF version was for sale?
Re: The Little Learner: A Straight Line to Deep Learning
#53I went through some of the eBook providers but none seem to be offering a PDF version. Did anyone notice if a PDF version was for sale?
Re: The Little Learner: A Straight Line to Deep Learning
#54I helped proofread this book, definitely check it out.
Re: The Little Learner: A Straight Line to Deep Learning
#55No way. Does it use Scheme? EDIT: Half Life 3 confirmed: "Presents key ideas of machine learning using a small, manageable subset of the Scheme language"
Some time ago I wrote this: https://notabug.org/ZelphirKaltstahl/guile-ml -- It contains a parallelized decision tree implementation in GNU Guile, a Scheme dialect. There is also https://github.com/lloda/guile-ffi-cblas which at least gives fast matrix multiplication. Example usage I have here: https://notabug.org/ZelphirKaltstahl/guile-math-examples/src... I don't know what is in the book, but things are possible.
I think with a little of patience I can get by.
Re: The Little Learner: A Straight Line to Deep Learning
#56I went through some of the eBook providers but none seem to be offering a PDF version. Did anyone notice if a PDF version was for sale?
Re: The Little Learner: A Straight Line to Deep Learning
#57Earlier quoted context omitted.
Sure - but I think that's the least important part of my comment. The preview is basically just an intro to Scheme. I would rather be able to see how well the book covers interesting ideas about deep learning. While the jury is still out, my personal skepticism is that this is a really beautiful passion project that looks great on bookshelves, but that any serious learner would be better served dedicating their time…
This is what the book has to say (part of a foreword by Peter Norvig): > Maybe, maybe not. But even if you use a machine learning toolkit like TensorFlow or PyTorch, what you will take away from this book is an appreciation for how the fundamentals work.
There are two books that do exactly this:
1. Deep Learning from Scratch
2. Data Science from Scratch
In these books, you implement each part of the ML/DL pipeline, from scratch, in Python.
There is also a GitHub project call Minitorch that teaches you the inner workings of a framework like PyTorch.
And then there are several other good resources for exactly this.
What he claims to have as a content is neithet new nor unique.
Re: The Little Learner: A Straight Line to Deep Learning
#58Wow, I would really like to get this book to complete my set of the Little Schemer, the Seasoned Schemer and the Reasoned Schemer. But 55$ is almost twice as expensive as the other books. Yes, it is bigger than those but still... Have to think about this for a while :)
The little schemer is $40 now, reasoned schemer is $30, and the little typer is $38 (about twice as thick as the other two). I had to think on the little schemer, but grabbed it because my ten year old said that the little typer was "interesting", and I thought he might learn something from it. Probably should finish working through what I have before getting another, though.
Re: The Little Learner: A Straight Line to Deep Learning
#59Earlier quoted context omitted.
Some time ago I wrote this: https://notabug.org/ZelphirKaltstahl/guile-ml -- It contains a parallelized decision tree implementation in GNU Guile, a Scheme dialect. There is also https://github.com/lloda/guile-ffi-cblas which at least gives fast matrix multiplication. Example usage I have here: https://notabug.org/ZelphirKaltstahl/guile-math-examples/src... I don't know what is in the book, but things are possible.
Love the beauty of Scheme, but lack of types (mypy Python / Java dev/ TS dev) infuses fear to me. I think with a little of patience I can get by.
Re: The Little Learner: A Straight Line to Deep Learning
#60Earlier quoted context omitted.
This is what the book has to say (part of a foreword by Peter Norvig): > Maybe, maybe not. But even if you use a machine learning toolkit like TensorFlow or PyTorch, what you will take away from this book is an appreciation for how the fundamentals work.
I think all serious researchers have implemented core Deep Learning algorithms from scratch. I know I have. There are two books that do exactly this: 1. Deep Learning from Scratch 2. Data Science from Scratch In these books, you implement each part of the ML/DL pipeline, from scratch, in Python. There is also a GitHub project call Minitorch that teaches you the inner workings of a framework like PyTorch. And then the…