chelate

Results 15 comments of chelate

Don't know if this is the same thing, but I'm encountering missing keys accessed directly from the SortedDict. I have a custom concrete struct (`Virus{UInt`} that is immutable, and `isbits`....

ok figured. Sorry for clogging up this delicate deep hashing issue. P.S. I'm extending Base.isless, but will try Base:< Base:>, Base:== instead. Edit: Yes my custom Base.isless was only partially...

I can't believe it. You are right. `in` is just `haskey`! The linear time membership-checking is just the magic of the dict-hash table! I think the bigger problem is the...

I have a problem that even when I wrap in a ```julia begin struct thingy end function (t::thingy) something(t::thingy) # call another dispatching on thing end end ``` it won't...

@MommaWatasu has coded this in pure julia here: https://github.com/MommaWatasu/HorseML.jl/blob/master/src/Clustering/HDBSCAN.jl Data points are rows instead of columns. It looks simple and clean, cant believe how much has been written for HorseML,...

I really don't know how to write a pr but there is decent code [here](https://discourse.julialang.org/t/how-to-extract-a-file-in-a-zip-archive-without-using-os-specific-tools/34585/5?u=cdawg), experimental, but it works for most use cases. Bump for adding this because InfoZIP is...

Just a note for others, for my large and high dimensional dataset (10^6 points of dimension 30)this package is at least 10x faster than NearestNeighbors.jl and is a great help!

Is it possible to provide macro that allows directly annotating dependency? Like ```julia x = [1] @mutation (x,1) # first mutation push!(x,2) @mutation (x,2) #second mutation push!(x,3) ``` where the...

Sorry if I'm annoying, but I have some input on this issue. I agree now that "-" is not ambiguous. It would make much more sense to translate "---" to...

I just want to point out that intervals are somewhat fundamental objects in probability (the Borel algebra), and that prob(interval,dist) = cdf(dist,interval.upper) - cdf(dist,interval.lower) or similar could be pretty neat....