Skip to content

Commit

Permalink
[Apre] Fix typo on linear regression (#974)
Browse files Browse the repository at this point in the history
  • Loading branch information
gazev authored Oct 13, 2023
1 parent bd3e795 commit ef9ecf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/apre/0008-linear-regression.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ De modo a simplificar a expressão, adiciona-se um termo $x_0 = 1$ ao vetor
$\vec{x}$.

$$
y = y(x,w) = \sum\limits_{j=1}^{D} (w_j \cdot x_j) = w^Tx
y = y(x,w) = \sum\limits_{j=0}^{D} (w_j \cdot x_j) = w^Tx
$$

## Erro Quadrático Médio
Expand Down

0 comments on commit ef9ecf6

Please sign in to comment.