14 ms·
The initial preview is a little disappointing because it feels like it does a great job displaying the pedagogical style but not enough to demonstrate the pedag
by bzhang255 4y ago
The initial preview is a little disappointing because it feels like it does a great job displaying the pedagogical style but not enough to demonstrate the pedagogical value (i.e. whether this resource actually does a good job teaching a complex topic).
Given the wealth of information and the problem of appraising it all, I don't think it helps this book that it costs $55 and requires the reader to learn an esoteric language (for the field), when there are so many educational books and lecture series by experts in the field that you can find freely available online.
- jhbadger 4y agoI would think that the main audience for this books would be people who enjoyed the other books in the authors' "Little" series, which almost all use Scheme, so it wouldn't be something new to learn.
- sn9 4y agoThe great thing about Scheme is that you can learn it in less than 10 minutes and focus on the ideas.
- bzhang255 4y agoSure - 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 to working through the existing, more traditional, and very high-quality resources available online.
- zelphirkalt 4y agoThis 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.
- rg111 4y agoI 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 there are several other good resources for exactly this. What he claims to have as a content is neithet new nor unique.
- rosetremiere 4y agoHow tied are those two books to python? If very much, are there books covering the same content with a different programming language?
- rg111 4y agoThey are aren’t that tied to Python. Even if you think so, Python is really an easy language, and you can easily port the code to something else. If you already have the basic ideas about the parts of a Neural Network pipeline, you can just search google "implement part-X in Y language", and you will get well written articles/tutorials. Many learners/practitioners of Deep Learning, when they have the big enough picture, write an NN training loop in their favorite language(s) and post it online. I remember seeing a good enough "Neural Network in APL" playlist in YT. It implements every piece in APL and gains like 90%+ accuracy in MNIST. I also remember seeing articles in Lisp (of course!), C, Elixir, and Clojure. I am writing one in J-lang in my free time.
- dachryn 4y agothey mostly use numpy (matrix maths library). So if you use a library for matrix multiplication, inverse, transpose, ... with a nice syntax, you're good to go.
- bmitc 4y agoI suggest the book Programming Machine Learning. I'm slowly going through the book using another language, and it's easy to translate since the book doesn't use Python's machine learning libraries.
- fumeux_fume 4y agoMore than happy to leave the traditional, high quality resources available online to the serious learners
- greymalik 4y agoCan you suggest any?
- joxel 4y ago[dead]
- timmg 4y ago> The initial preview is a little disappointing because it feels like it does a great job displaying the pedagogical style but not enough to demonstrate the pedagogical value (i.e. whether this resource actually does a good job teaching a complex topic). This is exactly the concern I had when I saw what it was. I'll definitely keep my eye on it and read the reviews.
- veqq 4y agoChecking the library the book implements can help: https://github.com/themetaschemer/malt https://github.com/themetaschemer/malt