matrix-factorization-in-python
matrix-factorization-in-python copied to clipboard
Results
4
matrix-factorization-in-python issues
Sort by
recently updated
recently updated
newest added
Hello sir, I believe there is a minor error in the code. I believe the code you write still passed by reference instead of value. Since is a array generate...
slight change to last line in mse function
```bash return self.b + self.b_u[:,np.newaxis] + self.b_i[np.newaxis:,] + self.P.dot(self.Q.T) ``` ```bash self.b_i[np.newaxis:,] --> self.b_i[np.newaxis, :] ```