GithubHelp home page GithubHelp logo

cuda is not available? about whisper-timestamped HOT 8 OPEN

eliich avatar eliich commented on June 12, 2024
cuda is not available?

from whisper-timestamped.

Comments (8)

Jeronymous avatar Jeronymous commented on June 12, 2024

I am not able to do it for this package?

What is the problem? It is not using the GPU by default, or you have errors?

If it's not using the GPU by default (it should, if CUDA is available), you can try load_model(..., device="cuda") (or --device=cuda with the CLI).

whisper-timestamped uses CUDA thru torch.

No need to downgrade anything

from whisper-timestamped.

Jeronymous avatar Jeronymous commented on June 12, 2024

I already gave this answer in #174 ...
Please stop closing and re-opening the same issue, and keep one discussion thread

from whisper-timestamped.

Jeronymous avatar Jeronymous commented on June 12, 2024

I don't see any reason why CUDA would work with whisperX and not whisper-timestamped, as both are using torch.

If you have an error message, please copy-paste it.

from whisper-timestamped.

eliich avatar eliich commented on June 12, 2024

When I just run the is cuda available test, I get that it is not available

import torch

def test_cuda_pytorch():
    # Check if CUDA is available
    if torch.cuda.is_available():
        print("CUDA is available. Using GPU.")
        
        # Get CUDA device name
        device_name = torch.cuda.get_device_name(torch.cuda.current_device())
        print(f"Device name: {device_name}")

        # Create a tensor and move it to GPU
        tensor = torch.randn(3, 3)
        tensor = tensor.to('cuda')

        # Perform a simple operation
        result = tensor * tensor
        print("Result of the operation:")
        print(result)

        print("CUDA and PyTorch are working correctly!")
    else:
        print("CUDA is not available. Please check your installation.")

if __name__ == "__main__":
    test_cuda_pytorch()

from whisper-timestamped.

eliich avatar eliich commented on June 12, 2024

Collaborator

Can I run it WSL? or docker should that work?

from whisper-timestamped.

Jeronymous avatar Jeronymous commented on June 12, 2024

WSL and docker : yes, it works, as long as nvidia tools are correctly installed (for instance for docker, you need "nvidia-container-toolkit" to be installed, and docker containers must be created with options --gpus all)

You just need investigate why torch is not detecting your GPU.
Is it just a problem torch.cuda.is_available (if torch.cuda.current_device() is working for instance)? ...

you can try load_model(..., device="cuda") (or --device=cuda with the CLI).

You haven't answer whether/how this fails.

from whisper-timestamped.

Jeronymous avatar Jeronymous commented on June 12, 2024

Also, what gives

pip show torch

?

It could be that your torch is installed for CPU only

from whisper-timestamped.

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.