-
Notifications
You must be signed in to change notification settings - Fork 47
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
[ENH] concat
operation on distributions
#340
Comments
Hackmd notes from the previous discussion To view, click the dropdown arrow. concat operationExample usage
This
(the repetition of 0s and 1s is due to broadcasting) We observe the following:
different distributionsSR - what happens if there are two different distributions, e.g., Example:
What is FK - good question, I think it needs to be the "outer product" distribution, i.e., outer product of probability measures. This could be a separate compositee distribution object, and the same as
This happens whenever the two distribution types are different, i.e., we are not concating
Nothing would change here, except that ImplementationFK: I would do two cases First, detect whether all participating distributions are the same (type/class). If yes, unwrap and concatenate the parameters, construct again. Perhaps allow only a certain set of distributions to behave lik ethis. If no, wrap in Thought: maybe there should be an option in |
There should be a
concat
operation on distributions.This will require:
skpro.concat
, similar topd.concat
A direct consumer of this interface would be
sktime.forecasting
'spredict_proba
vectorization.The text was updated successfully, but these errors were encountered: