Eric Hanson
Eric Hanson
> This all looks great to me, I appreciate the effort to get this functionality into UMAP.jl. I haven't been as focused on the refactor (in the v0.2-dev branch) lately,...
Awesome! My version of that is https://github.com/dillondaudert/UMAP.jl/blob/de7a46771cdb3d11cb115fe07e298f1be83c2ae6/src/utils.jl#L157-L173, by the way.
Hey @dillondaudert, hope all is well! I was wondering what the status of 0.2-dev was and in particular what steps are needed to bring it to a release-- I think...
Sounds great! Thanks for the great package, by the way; I am new to dimensionality reduction but it was pretty easy to get some plots quickly with UMAP.jl and the...
Cool, thanks for the update! Using Tables.jl is an interesting idea. Just to check that I understand: in the case in which I have say a collection of vectors +...
> As for your other question, could you clarify a bit what functionality you're after? Is it that you want to be able to pass a KNNGraph to UMAP (instead...
Cool, looks good to me!
I saw http://www.cs.cornell.edu/~arb/papers/GLANCE-WWW-2020.pdf today (from https://twitter.com/nassarhuda/status/1319675786085978114?s=21) and it seemed like an interesting way to visualize graphs. As I understand it, UMAP has three steps: calculate knns, construct a weighted graph,...
I like how doctests currently work; I think copy-pasting can be avoided by `doctest(MyPackage; fix=true)`. That’s not always 100% robust but I think it’s a good API, because you can...
> Julia serialization is stable in 1.x versions in the sense that data save by Julia 1.x will be readable by Julia 1.y for x ≤ y, so it's fine...