After installation steps on https://github.com/facebookresearch/multimodal cuda is not available issue occured as following;
python -c 'import torch; print(torch.__version__);print(torch.cuda.is_available())'
2.0.0.dev20230224
False
I confused about torchmultimodal installation;
In this tutorial (GitHub - facebookresearch/multimodal: TorchMultimodal is a PyTorch library for training state-of-the-art multimodal multi-task models at scale.) they said on preq. step 2
Install pytorch, torchvision, and torchtext. but pytorch nightly version is installed
conda install pytorch torchvision torchtext pytorch-cuda=\<cuda_version\> -c pytorch-nightly -c nvidia
Do we use torchmultimodal with not nightly version of pytorch?
and do we only have nightly version of torchmultimodal ?
python -m pip install torchmultimodal-nightly
Regards.