Gabriel Mongaras

Results 27 comments of Gabriel Mongaras

What error are you receiving when running the cells in `main.ipynb`?

For the `ModuleNotFoundError: No module named 'diffusers'` and `NameError: name 'mixer' is not defined`, you can run the first cell by uncommenting each line, or by highlighting the entire cell...

You may also need to install PyTorch to utilize the GPU depending on your machine setup: https://pytorch.org/get-started/locally/

Do you happen to have a GPU on your device?

Depending on what version of cuda you are running, you will have to install a different PyTorch version. You can check your version in your command line and typing `nvcc...

Did you pip install the rest of the packages? ``` !pip install diffusers==0.11.1 !pip install --ignore-installed Pillow==9.3.0 !pip install openai==0.26.4 !pip install SpeechRecognition==3.9.0 !pip install pygame==2.1.2 !pip install opencv-python==4.7.0.68 !pip...

What error are you receiving? I was able to create a virtual environment, cloned the repository, install the necessary packages and didn't run into any issues. It looks like pip...

It looks like pickle is having issues loading in one of the pretrained image mover models. I wonder if this is a torch versioning issue. What version of PyTorch do...

During development, I used torch version 1.0. PyTorch probably updated the model loader in torch version 2.0, maybe try downgrading to torch version 1.0 and see if that fixes it....

Could be due to an incomplete model download: `https://github.com/svip-lab/PlanarReconstruction/issues/28`. Try downloading the pretrained models from `https://github.com/gmongaras/AI_Girlfriend/tree/master/Img_Mover/pretrained` using LFS again.