Earlier quoted context omitted.
I agree that the font should be bigger. I need to learn more CSS in order to switch between font sizes per platform. The font of the text is easy but all of the images were generated from latex using a specific font size. I need to scale the in-line equation images as the font size bumps up.
the magic incantation here is probably media queries @media (max-width: 768px) { p { font-size: 1rem; } }
Matrix Calculus for Deep Learning
71–80 of 84 posts
Re: Matrix Calculus for Deep Learning
#72Re: Matrix Calculus for Deep Learning
#73Jeremy here. Here to answer any questions or comments that you have. But more importantly - I need to mention that Terence Parr did nearly all the work on this. He shared my passion for making something that anyone could read on any device to such an extent that he ended up creating a new tool for generating fast, mobile-friendly math-heavy texts: https://github.com/parrt/bookish . (We tried Katex, Mathjax, and prett…
This is great! my graduate advisor a long time ago made a really great matrix calculus study sheet for me that was absolutely invaluable in learning ML ( i mean really this is great for not just DL but all sorts of reasoning in ML)
Re: Matrix Calculus for Deep Learning
#74Are you pulling my leg here, or do I need to scrap my understanding of calculus?
If they exist, how could they not be equivalent?
Re: Matrix Calculus for Deep Learning
#75In school, I didn't make it much past basic calculus/algebra. As a self-taught programmer (my highest level of education is a high-school diploma), I seriously wish I could go back and put more effort into math. I love looking at these types of topics, but I have absolutely no clue what I'm looking at. If anyone can recommend any books, courses, or any other material that starts from high-school level math, and gradu…
Re: Matrix Calculus for Deep Learning
#76Jeremy here. Here to answer any questions or comments that you have. But more importantly - I need to mention that Terence Parr did nearly all the work on this. He shared my passion for making something that anyone could read on any device to such an extent that he ended up creating a new tool for generating fast, mobile-friendly math-heavy texts: https://github.com/parrt/bookish . (We tried Katex, Mathjax, and prett…
Eg. In the first line in 'References'
HTML: "When looking for resources on the web, search for “matrix calculus” not “vector calculus.” "
Latex/pdf: "When looking for resources on the web, search for “elements” not “elements” "
Re: Matrix Calculus for Deep Learning
#77Re: Matrix Calculus for Deep Learning
#78Jeremy here. Here to answer any questions or comments that you have. But more importantly - I need to mention that Terence Parr did nearly all the work on this. He shared my passion for making something that anyone could read on any device to such an extent that he ended up creating a new tool for generating fast, mobile-friendly math-heavy texts: https://github.com/parrt/bookish . (We tried Katex, Mathjax, and prett…
There are discrepancies between the HTML and pdf version. Eg. In the first line in 'References' HTML: "When looking for resources on the web, search for “matrix calculus” not “vector calculus.” " Latex/pdf: "When looking for resources on the web, search for “elements” not “elements” "
Re: Matrix Calculus for Deep Learning
#79Jeremy here. Here to answer any questions or comments that you have. But more importantly - I need to mention that Terence Parr did nearly all the work on this. He shared my passion for making something that anyone could read on any device to such an extent that he ended up creating a new tool for generating fast, mobile-friendly math-heavy texts: https://github.com/parrt/bookish . (We tried Katex, Mathjax, and prett…
Terence here. Jeremy's role was critical in terms of direction and content for the article. Who better than he to describe the math needs for deep learning. :)
Re: Matrix Calculus for Deep Learning
#80Earlier quoted context omitted.
Like this, perhaps? A = {{1,2},{3,4}} vec = {x^2, x^3} D[vec.A.vec, x] Or perhaps like this, again the table of derivatives: xvec = {x1,x2} Table[ D[xvec.A.xvec,x] ,{x,xvec}] (all untested... one typo caught...)
http://www.wolframalpha.com/input/?i=D%5B%7Bx%5E2,+x%5E3%7D....