Open ShreeshaM07 opened 6 months ago
@fkiraly Do you recommend any other resources to refer for implementing this?
Also do I have to implement the Kernel Density Estimation
for Gaussian
, tophat
for this histogram?
Sure!
Some classical ones:
This is mostly kernel based.
Also, what is tophat
?
Also, what is
tophat
?
Its a type of kernel in sklearn
KDE
the K(x,h) is proportional to 1 for x<h.
It mostly resembles a bin itself.
Oh, I see, the "top-hat kernel", which is the same as a box kernel. It corresponds to a uniform distribution.
Here are a few things I noticed:
skpro
yet. That might be a simpler implementation item, as it does not hinge on design decisions? Issue here: https://github.com/sktime/skpro/issues/323sklearn
and similar estimators for DE and the "right interfaces"? That would be a bit of a pivot, but might help arriving at the right design and implementation choices step-by-step.
Describe the solution you'd like
Histogram estimation is not present in skpro. Implement them from scratch using the conditional density estimate finding the optimal binwidth(h) and find the function that fits the histograms most aptly without over smoothing nor undersmoothing.
Additional context
Useful resources