Rafael Schouten
Rafael Schouten
I'm just trying to reduce duplication by using the weave files as docs pages without actually weaving them. The code blocks just become example code and doctests. The make.jl run...
I've also hit this problem. Optim should work with units.
It's not a big deal, I just got the complaint from a coworker that adding units broke optim in one of my packages... And I can't think of why they...
Edit: to make more sense. There seems to be a relatively easy solution of stripping the units from the input vector and reapplying the units to the Dual number vector...
I remember finding a few other problems besides loosening Real types, but I can't remember details. It would be good to have tests for units working here and in packages...
@chriselrod what ArrayInterface.jl methods do we have to implement for this to work?
I would be happy to support this and work on any required changes to DimensionalData.jl. Something not mentioned here is that with a `DimArray` broadcasting and most base/stats methods (e.g....
I don't really have a horse in this race or know Turing.jl internals, I was just offering to help out if any changes are needed to DimensionalData.jl. But there shouldn't...
I was imagining using DimensionalData.jl could simplify some code _in this package_, more than for the user! That code is from this package. It should be essentially the same for...
Please do subtype `AbstractDiskArray`. You can also just use the macros to apply the interface to you own types without subtyping, but subtyping is simpler for dispatch. Myself and @meggart...