Zachary P Christensen
Zachary P Christensen
Are there any plans to support ND formats here or some way of formally writing custom metadata that supports reading a vector of data into an array structure?
Thanks for the example. Perhaps it's a more effective use of developer time to heavily document how to write custom metadata? I'm trying to find ways to sell some other...
I think formalizing size and strides would be a great thing to have in place. I imagine it would be best to write most other things as small dictionaries so...
Part of start up time is due to Requires. We're trying to resolve that by getting rid of it now that ArrayInterface.jl is better established. I don't have a strong...
We've always planned on getting rid of Requires, so resolution of JuliaLang/Pkg.jl#1285 shouldn't make a difference.
> My understanding of ArrayInterface is that it is still experimental and if anything that is stable enough it should goes to Base first. The parts I've been working into...
I'm working on something similar to this right now (OffsetAxes.jl) that builds on AxisIndices.jl. If I understand correctly (which it's possible I don't) then `similar` was originally designed to handle...
Could we instead have something like... ```julia offset(x::AbstractUnitRange, o::Integer) = IdOffsetRange(x, o) offset(x::AbstractArray{T,N}, o::Tuple{Vararg{Integer,N}}) where {T,N} = OffsetArray(x, o) offset(o::Union{Integer,Tuple{Vararg{Integer}}) = Base.Fix2(offset, o) ``` ...which would allow constructing the offset...
It seems odd to me that monai created a dropbox for this when the downloads can be accessed via a link to a public google drive account. I mentioned [Artifacts](https://julialang.github.io/Pkg.jl/dev/artifacts/)...
I didn't know we hosted the download associated with each artifact. Why do we download the url associated with an artifact? According to the Pkg documentation the user still receives...