We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Context: I am currently translating this code to Rust.
Issue: I want to understand a line of code:
# (eq.46) w_io = self._weights * np.where( self._weights >= 0, 1, self._n_dim / (np.linalg.norm(C_2.dot(y_k.T), axis=0) ** 2 + _EPS), )
So, when self.weights is less than zero, it'd happen that the operation would result in a in a vector, given the norm(..., axis=0)?
Can you explain that?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context: I am currently translating this code to Rust.
Issue: I want to understand a line of code:
So, when self.weights is less than zero, it'd happen that the operation would result in a in a vector, given the norm(..., axis=0)?
Can you explain that?
The text was updated successfully, but these errors were encountered: