-
Notifications
You must be signed in to change notification settings - Fork 14
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
ObsDimArray #43
Comments
Is the "observation dimension" the dimension such that a slice with all other dimensions as |
Correct. |
This seems very similar to a lot of what https://github.com/JuliaImages/ImageAxes.jl does. Might be a helpful starting point for this. |
This would be cool to have. FWIW, I would definitely add a special case to Stheno to handle this type. |
The change from the dim-names type-params being a we could also have a helper function |
One thing, I was thinking is that we could have a special alias for just specifying the observation dimentions.
Which could be useful for dispatch.
it would be:
So the following would be equivelent:
I'm not sure yet if the dispatch fully works, for mixtures of
ObsDImArrays
andNamedDimArrays
where just one of the names is:observations
, but that can potentially be changed.(It would likely mean moving to Named being stored not as
(:a,:b)
type params but asTuple{:a, :b}
. Which would allow forTuple{:obs, :<Any}
. This wouild also allow for other bitvalues and types to be used as names. e,g #40 nut that is getting off-topic)The text was updated successfully, but these errors were encountered: