Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Mathematics of Machine Learning

You're reading from   Mathematics of Machine Learning Master linear algebra, calculus, and probability for machine learning

Arrow left icon
Product type Paperback
Published in May 2025
Publisher Packt
ISBN-13 9781837027873
Length 730 pages
Edition 1st Edition
Arrow right icon
Author (1):
Arrow left icon
Tivadar Danka Tivadar Danka
Author Profile Icon Tivadar Danka
Tivadar Danka
Arrow right icon
View More author details
Toc

Table of Contents (36) Chapters Close

Introduction Part 1: Linear Algebra FREE CHAPTER
1 Vectors and Vector Spaces 2 The Geometric Structure of Vector Spaces 3 Linear Algebra in Practice 4 Linear Transformations 5 Matrices and Equations 6 Eigenvalues and Eigenvectors 7 Matrix Factorizations 8 Matrices and Graphs References
Part 2: Calculus
9 Functions 10 Numbers, Sequences, and Series 11 Topology, Limits, and Continuity 12 Differentiation 13 Optimization 14 Integration References
Part 3: Multivariable Calculus
15 Multivariable Functions 16 Derivatives and Gradients 17 Optimization in Multiple Variables References
Part 4: Probability Theory
18 What is Probability? 19 Random Variables and Distributions 20 The Expected Value References
Part 5: Appendix
Other Books You May Enjoy
Index
Appendix A It’s Just Logic 1. Appendix B The Structure of Mathematics 2. Appendix C Basics of Set Theory 3. Appendix D Complex Numbers

17.1 Multivariable functions in code

It’s been a long time since we put theory into code. So, let’s take a look at multivariable functions!

Last time, we built a Function base class with two main methods: one for computing the derivative (Function.prime) and one for getting the dictionary of parameters (Function.parameters).

This won’t be much of a surprise: the multivariate function base class is not much different. For clarity, we’ll appropriately rename the prime method to grad.

class MultivariableFunction: 
    def __init__(self): 
        pass 
 
    def __call__(self, *args, **kwargs): 
        pass 
 
    def grad(self): 
        pass 
 
    def parameters(self): 
        return dict()

Let’s see a few examples right away. The simplest one is the squared Euclidean norm f(x) = ∥x∥2, a close relative to the mean squared error function. Its gradient is given by

∇f (x) = 2x,

thus everything is ready to implement it. As we’ve used...

lock icon The rest of the chapter is locked
Visually different images
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Mathematics of Machine Learning
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Modal Close icon
Modal Close icon