Skip to content

Commit 08e493f

Browse files
authored
Update linearAlgebra.md
1 parent 4b63c69 commit 08e493f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

math/linearAlgebra.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ It is the study of vectors and linear functions.
3131
- it is common to encode categorical variables to make them easier to work with
3232
4. Linear Regression
3333
- Used for predicting numerical values in simple regression problems
34-
- the most common way of solving linear regression is via the least squares optimization that is solved using matrix factorization methods from linear regression
34+
- the most common way of solving linear regression is via the least squares optimization which is solved using matrix factorization methods from linear regression
3535
5. Regularization
3636
- Overfitting is 1 of the greatest obstacles in ML
37-
- When a model is too close a fit for the available data to the point that i does not perform well with any new or outside data
37+
- When a model is too close a fit for the available data to the point that it does not perform well with any new or outside data
3838
- It is a concept from Linear algebra that is used to prevent the model from overfitting
3939
- Simple models are models that have smaller coefficient values
4040
- It is a technique that is often used to encourage a model to minimize the size of coefficients while it's being fit on data
@@ -61,8 +61,12 @@ It is the study of vectors and linear functions.
6161
### Vector
6262
![Vectors](../images/vectors.png)
6363
- The 2 most important characteristics of vectors
64+
6465
![Vectors Characteristics](../images/vectorCharacteristics.png)
6566
1. Dimensionality
6667
- the number of elements in a vector
6768
2. Orientation
6869
- whether the vector is in column orientation standing up tall, or row orientation laying flat and wide
70+
- Vector Examples
71+
72+
![Vector Examples](../images/vectorExamples.png)

0 commit comments

Comments
 (0)