Visualizing Linear Systems — Machine Learning Foundations Bonus Video

preview_player
Показать описание
In this video from my Machine Learning Foundations series, I demonstrate how to visualize the systems of linear equations we solved in the preceding videos (on substitution and elimination). This video features hands-on code demos in Python that provide a crisp, geometric visualization of the lines in each system as well as the points that we solve for when we solve a system of linear equations.

Рекомендации по теме
Комментарии
Автор

Thank you for the awesome explanation. keep up

itsmsaan
Автор

well explained, really liked style you teach with and without code for better understanding

tarunakhari
Автор

y = 3x
-5x + 2y = 2

-5x + 2(3x) = 2
-5x + 6x = 2
1x = 2
x = 2

Put y in eq (2)
y = 3(2) = 6

(x, y) = (2, 6)

justsimple
Автор

I got my anaconda started. But I will take break now. Hopefully In the afternoon I will work on these visualizations on my local machine using Jupyter Notebook. What is difference between Jupyter Notebook and Jupyter Lab both available in Anaconda.

elpbm