Isaac Virshup

Results 549 comments of Isaac Virshup

I mean like milestones or projects for upcoming releases. It look like the change that fixes the issue got marked as an improvement, so we'd be waiting on 8.2.

Sure. Did we get a list of people who are going to be there?

[Demo gist](https://gist.github.com/ivirshup/9ba2b570d541ff1393990f632bc7a6ea) I've got virtual concatenation of sparse arrays working. Dataframes should be easier. Unfortunately I can't use this with existing stores (data has to be rewritten) since the chunk...

@NikosAlexandris, that's the `indptr` array from a CSR or CSC matrix. They are offsets into the `indices` and `data` arrays. Was this your question? Also maybe better to discuss in...

Updated to allow inference of variable chunked output from input with fixed chunking. E.g. can now concatenate arrays like: ```python [zarr.ones(4, chunks=(2,)), zarr.ones(3, chunks=(3,))] # result has chunking ([2, 2,...

It's not imminent. At soonest, my guess would be late this year. But I can ping maintainers of this library ahead of that.

I have some interest but probably not time. I would love for someone to take it over. IIRC the biggest stumbling block was dispatch. If that could get worked out...

I'm still dubious of the value, especially when we provide different ways of ways of optimizing the score. What would you think of instead having `sc.metrics.modularity` where you match a...

Yeah, that's why I like having it be manually computed rather than relying on the output of the clustering. This way we can make sure similar scores are used. For...

> but maybe there is some space for a sparse specific section. :+1: I think this is a good idea. I would really like to see some level of compatibility...