uberduck-ai / uberduck-ml-dev

ML models for Uberduck
Apache License 2.0
377 stars 61 forks source link

pip dependency errors in "install pipeline" step #97

Closed jpriebe closed 1 year ago

jpriebe commented 2 years ago

Running this step:

#@title Install pipeline
#!pip install -q torch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0
!pip install -q git+https://github.com/uberduck-ai/uberduck-ml-dev.git

I get this error:

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
torchvision 0.13.1+cu113 requires torch==1.12.1, but you have torch 1.9.0 which is incompatible.
torchtext 0.13.1 requires torch==1.12.1, but you have torch 1.9.0 which is incompatible.
torchaudio 0.12.1+cu113 requires torch==1.12.1, but you have torch 1.9.0 which is incompatible.
sjkoelle commented 2 years ago

Which notebook is this from?

jpriebe commented 2 years ago

Sorry, I should have provided more specifics. "Tacotron2 Training Notebook" as linked on https://app.uberduck.ai/

jpriebe commented 1 year ago

Also "Tacotron2 (CRUST) Training Notebook" is doing the same thing.

johnpaulbin commented 1 year ago

Hi @jpriebe ,

This pip message is just a warning and doesn't reflect this repository.

It is requesting a different torch version, but in colab it is compatible for this repository.

Do you encounter any problems when training?

jpriebe commented 1 year ago

Looks like the training is working. I just wasn't familiar enough with colab to understand that this wasn't a fatal error. Thanks for the explanation.