Giter Site home page Giter Site logo

Comments (4)

crumleyc avatar crumleyc commented on July 30, 2024

pydata/sparse#198

from dr1dl-dask.

crumleyc avatar crumleyc commented on July 30, 2024

I have tried other unsuccessful attempts:

v = cp.random.random(176) #(176,)
indices = np.argpartition(v,-20)[-20:] #(20,)
col = cp.ones(20) #(20,)

cupyx.scipy.sparse.coo_matrix((v[indices],(indices,col)))

This results in an error saying that all parameters needs to be 1D arrays, even though they are all 1D.

v = cp.random.random(176) #(176,)
indices = np.argpartition(v,-20)[-20:] #(20,)
min = v[indices].min()
v[v < min] = 0
cupyx.scipy.sparse.coo_matrix(v)

I think this method only works when v is already a sparse matrix.

from dr1dl-dask.

crumleyc avatar crumleyc commented on July 30, 2024

I noticed in dask's distributed repository, they had some unit testing where they implemented the cupyx.scipy.sparse.coo_matrix here. I got that to work.

from dr1dl-dask.

crumleyc avatar crumleyc commented on July 30, 2024

u_new = da.dot(S,_V_.result()).compute() is causing an error:

TypeError: 'coo_matrix' object is not subscriptable

Where V.result() returns a dask cupy sparse array.

Looks like it is being looked into cupy/cupy#3178.

from dr1dl-dask.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.