Efficient computation of a single high-order partial derivative #186
kasselhingee
started this conversation in
General
Replies: 1 comment 1 reply
-
Here is one possible improvement. The idea is that each derivative only has one variable and n-1 dynamic parameters. This may greatly reduce the amount of memory for the derivative computation. On the other hand, this method has twice as many base2ad operations, so it may not be an improvement:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When computing the probability density function$f(u)$ from a cumulative density function $F(u)$ a single high-order partial derivative is needed. When $u$ is a vector of length $d$ , the density is:
My colleague and I want to avoid computing all$d$ -order partial derivatives because there are a lot of them and we only want one.
The best idea I have so far is:
I'm wondering if this is a good way to go about this, and it there are other ways to go about this.
Beta Was this translation helpful? Give feedback.
All reactions