Home > Mathematics and Science Textbooks > Mathematics > Algebra > Linear Algebra for Machine Learning LiveLessons (Video Training)
Linear Algebra for Machine Learning LiveLessons (Video Training)

Linear Algebra for Machine Learning LiveLessons (Video Training)

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

6.5 Hours of Video Instruction An introduction to the linear algebra behind machine learning models Overview Linear Algebra for Machine Learning LiveLessons provides you with an understanding of the theory and practice of linear algebra, with a focus on machine learning applications. Customer Review Abeautiful overview of several key topics. Lots of hands-on exercises to reinforcethe material. Good stuff, Jon. About the Instructor Jon Krohn is Chief Data Scientist at the machine learning company untapt. He authored the book Deep Learning Illustrated (Addison-Wesley, 2020), an instant #1 bestseller that has been translated into six languages. Jon is renowned for his compelling lectures, which he offers in-person at Columbia University and New York University, as well as online via O'Reilly, YouTube, and the Super Data Science Podcast. Jon holds a PhD from Oxford and has been publishing on machine learning in leading academic journals since 2010; his papers have been cited over a thousand times. Skill Level Intermediate Learn How To Appreciate the role of algebra in machine and deep learning Understand the fundamentals of linear algebra, a ubiquitous approach for solving for unknowns within high-dimensional spaces Develop a geometric intuition of what's going on beneath the hood of machine learning algorithms, including those used for deep learning Be able to more intimately grasp the details of machine learning papers as well as all of the other subjects that underlie ML, including calculus, statistics, and optimization algorithms Manipulate tensors of all dimensionalities including scalars, vectors, and matrices, in all of the leading Python tensor libraries: NumPy, TensorFlow, and PyTorch Reduce the dimensionality of complex spaces down to their most informative elements with techniques such as eigendecomposition (eigenvectors and eigenvalues), singular value decomposition, and principal components analysis Who Should Take This Course Users of high-level software libraries (e.g., scikit-learn, Keras, TensorFlow) to train or deploy machine learning algorithms who would now like to understand the fundamentals underlying the abstractions, enabling them to expand their capabilities Software developers who would like to develop a firm foundation for the deployment of machine learning algorithms into production systems Data scientists who would like to reinforce their understanding of the subjects at the core of their professional discipline Data analysts or AI enthusiasts who would like to become a data scientist or data/ML engineer and are keen to deeply understand from the ground up the field they're entering (very wise!) Course Requirements Mathematics: Familiarity with secondary school-level mathematics will make the course easier to follow. If you are comfortable dealing with quantitative information -- such as understanding charts and rearranging simple equations -- then you should be well-prepared to follow along with all of the mathematics. Programming: All code demos are in Python so experience with it or another object-oriented programming language would be helpful for following along with the hands-on examples.   Lesson Descriptions Lesson 1: Orientation to Linear Algebra In Lesson 1, Jon starts with a definition of linear algebra. He then shows you how to use it to solve for unknowns in a system of linear equations. Next, he discusses why linear algebra is so crucial in modern machine learning, including deep learning. Finally, he finishes up with a brief history of algebra and some comprehension exercises. Lesson 2: Data Structures for Algebra Lesson 2 focuses on tensors, the fundamental data structure of linear algebra. Jon starts off with zero-dimensional scalar tensors. Then, he covers one-dimensional vector tensors, including the topics of transposition, norms, and unit vectors, as well as the bases for orthogonal and orthonormal vectors. The lesson wraps up with two-dimensional matrix tensors and higher-dimensional n tensors and a few exercises. Lesson 3: Common Tensor Operations Lesson 3 is about common tensor operations, including transposition, basic tensor arithmetic, reduction, and the dot product. It finishes up with exercises. Lesson 4: Solving Linear Systems In Lesson 4 you take a brief break from hands-on code demos to learn how to solve systems of linear systems by hand. The focus is on substitution and elimination strategies. The lesson finishes with exercises to reinforce those concepts. Lesson 5: Matrix Multiplication Lesson 5 is about matrix multiplication. Matrix-by-vector multiplication is covered first, followed by matrix-by-matrix multiplication. Next, the concepts of symmetric and identity matrices are discussed, followed by exercises that show their relevance to matrix multiplication. Finally, Jon wraps up with an explanation of the critical role of matrix multiplication in machine learning and deep learning applications. Lesson 6: Special Matrices and Matrix Operations Lesson 6 covers a number of special matrices and special matrix operations that are essential to machine learning. These include the Frobenius norm, matrix inversion, diagonal matrices, orthogonal matrices, and the trace operator. Lesson 7: Eigenvectors and Eigenvalues Lesson 7 begins with Jon discussing what the eigenconcept is all about. He follows this with some exercises to warm you up for playing around with eigenvectors in Python, including high-dimensional eigenvectors. Lesson 8: Matrix Determinants and Decomposition Jon begins Lesson 8 by illustrating how to calculate the determinant of a 2 x 2 matrix as well as the determinant for larger matrices. This prepares you for being able to work on some exercises on determinants on your own. The second half of the lesson discusses the relationship between determinants and eigenvalues and provides an overview of the broad range of eigendecomposition applications in the real world. Lesson 9: Machine Learning with Linear Algebra In Lesson 9 Jon helps you tie together many of the concepts you have been introduced to previously to power many useful machine learning applications. You learn singular value decomposition to compress a media file, the Moore-Penrose pseudoinverse to form a regression, and principal component analysis to break down a dataset into its most influential components. Finally, Jon provides you with resources for your further study of linear algebra. Notebooks are available at github.com/jonkrohn/ML-foundations About Pearson Video Training Pearson publishes expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. These professional and personal technology videos feature world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, Pearson IT Certification, Sams, and Que Topics include: IT Certification, Network Security, Cisco Technology, Programming, Web Development, Mobile Development, and more. Learn more about Pearson Video training at http://www.informit.com/video. Video Lessons are available for download for offline viewing within the streaming format. Look for the green arrow in each lesson.

Table of Contents:
Introduction Lesson 1: Orientation to Linear Algebra Topics 1.1 Defining Linear Algebra 1.2 Solving a System of Equations Algebraically 1.3 Linear Algebra in Machine Learning and Deep Learning 1.4 Historical and Contemporary Applications 1.5 Exercise Lesson 2: Data Structures for Algebra Topics 2.1 Tensors 2.2 Scalars 2.3 Vectors and Vector Transposition 2.4 Norms and Unit Vectors 2.5 Basis, Orthogonal, and Orthonormal Vectors 2.6 Matrices 2.7 Generic Tensor Notation 2.8 Exercises Lesson 3: Common Tensor Operations Topics 3.1 Tensor Transposition 3.2 Basic Tensor Arithmetic 3.3 Reduction 3.4 The Dot Product 3.5 Exercises Lesson 4: Solving Linear Systems Topics 4.1 The Substitution Strategy 4.2 Substitution Exercises 4.3 The Elimination Strategy 4.4 Elimination Exercises Lesson 5: Matrix Multiplication Topics 5.1 Matrix-by-Vector Multiplication 5.2 Matrix-by-Matrix Multiplication 5.3 Symmetric and Identity Matrices 5.4 Exercises 5.5 Machine Learning and Deep Learning Applications Lesson 6: Special Matrices and Matrix Operations Topics 6.1 The Frobenius Norm 6.2 Matrix Inversion 6.3 Diagonal Matrices 6.4 Orthogonal Matrices 6.5 The Trace Operator Lesson 7: Eigenvectors and Eigenvalues Topics 7.1 The Eigenconcept 7.2 Exercises 7.3 Eigenvectors in Python 7.4 High-Dimensional Eigenvectors Lesson 8: Matrix Determinants and Decomposition Topics 8.1 The Determinant of a 2 x 2 Matrix 8.2 The Determinants of Larger Matrices 8.3 Exercises 8.4 Determinants and Eigenvalues 8.5 Eigendecomposition Lesson 9: Machine Learning with Linear Algebra Topics 9.1 Singular Value Decomposition 9.2 Media File Compression 9.3 The Moore-Penrose Pseudoinverse 9.4 Regression with the Pseudoinversion 9.5 Principal Component Analysis 9.6 Resources for Further Study of Linear Algebra Summary


Best Sellers


Product Details
  • ISBN-13: 9780137380596
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Language: English
  • ISBN-10: 0137380593
  • Publisher Date: 09 Dec 2020
  • Binding: Digital online


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Linear Algebra for Machine Learning LiveLessons (Video Training)
Pearson Education (US) -
Linear Algebra for Machine Learning LiveLessons (Video Training)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Linear Algebra for Machine Learning LiveLessons (Video Training)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA