Daniel C. Jones
Daniel C. Jones
I think a more general ChainRules adjoint may be blocked by https://github.com/JuliaDiff/ChainRulesCore.jl/issues/68. The adjoint is peculiar and relies on running AD on the incomplete gamma function, and it looks like...
Well `rand(::Gamma)` doesn't come automatically from `gamma_inc`. The trick is pretty simple (code below). The hard part is that `SpecialFunctions.gamma_inc` mutates arrays an doesn't work with AD, so I implemented...
I think this has been fixed on master for a while but I neglected to tag a new version. I just did so, so you can try 0.8 here: http://homes.cs.washington.edu/~dcjones/fastq-tools/fastq-tools-0.8.tar.gz
I had the same problem. It seems like seurat-disk can't load multidimensional arrays, so it fails when trying to read any images saved in the object. It fails on this...
> Maybe @dcjones would be interested in transferring Zlib.jl to JuliaLang? Sure, and I'm all for merging the two.
For those interested I wrote another set of zlib bindings that's generally faster than both Zlib.jl and GZip.jl (and @jiahao's code in #32) and mostly encompasses the features of both:...
It would be easy to do, but I'd feel slightly uncomfortable about it. First, with the currently implemented color spaces you can convert any type `T
I think it depends on whether we change the meaning of `ColorValue` or keep it the same and name the supertype something new. If we change `ColorValue`, probably a bunch...
:+1: We should also think about what to do with `AlphaColorValue`. Maybe something like ``` julia module Colors abstract Color abstract BasicColor
It makes me a little uncomfortable to have the graphics part of this package encroach on the colorimetry part by making color inseparable from alpha values. But that's a superficial...