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
sum
Grad
Now the sum of Grads is solved as follows:
+(x::Grad, y::Grad) = Grad(x.A .+ y.A, max(x.T, y.T), max(x.rise, y.rise), max(x.fall, y.fall), max(x.delay, y.delay))
But it would be nice if we could "stack" gradients:
Maybe this could be also extended to the rest of Sequence elements, so we could sum RF's, ADC's or even entire Sequence's in the same way.
Sequence
RF
ADC
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now the
sum
ofGrad
s is solved as follows:But it would be nice if we could "stack" gradients:
Maybe this could be also extended to the rest of
Sequence
elements, so we couldsum
RF
's,ADC
's or even entireSequence
's in the same way.The text was updated successfully, but these errors were encountered: