Giter VIP home page Giter VIP logo

Comments (2)

reiinakano avatar reiinakano commented on July 18, 2024

HI! I am aware of this issue and am currently mulling the best way to add an option to do this in the UI.

For now, please open up a Python interpreter and run the following script to delete all queued tasks from Xcessiv.

import xcessiv

PATH_TO_XCESSIV_PROJECT_FOLDER = "/path/to/xcessiv/project/folder/"

with xcessiv.functions.DBContextManager(PATH_TO_XCESSIV_PROJECT_FOLDER) as session:
    base_learners = session.query(xcessiv.models.BaseLearner).filter_by(job_status='queued').all()
    print(len(base_learners))
    for bl in base_learners:
        session.delete(bl)
    session.commit()

OPTIONAL:
Finally, once you're done, it might be helpful to clear your Redis database to get rid of the junk. Take note that this step will cancel all pending tasks. To do this, run

redis-cli -n 8 flushdb to delete database 8 (default used by Xcessiv)

from xcessiv.

ejdanderson avatar ejdanderson commented on July 18, 2024

It would be great if you could use the checkboxes (select all/select none) to do bulk actions for base learner - Add to stack, Delete, etc...

from xcessiv.

Related Issues (20)

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.