-
Notifications
You must be signed in to change notification settings - Fork 30
Mistakes in Trid function #2
New issue
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
Comments
Hello, Thank you for the issues I have note so much time now so if you want you can make a Pull Request and I'll review it |
Hi, |
Thank you very much for the review There are so many functions that I might have made a lot of mistakes so it is a great help ! |
And what research purpose if it is not secret ? |
You can read about it here, if you're interested about the use case of your implementation: https://github.com/gbelouze/forward-gradient (it also links to the associated paper) |
Two mistakes
r"f(\mathbf{x})=\sum_{i=1}^{d}(x_i-1)^2-\sum_{i=2}^{d}(x_ix_{i-1})"
np.sum((X - 1) ** 2) - np.sum(X[1:] * X[:-1])
The text was updated successfully, but these errors were encountered: