nerdyrodent / VQGAN-CLIP

Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.
Other
2.61k stars 428 forks source link

pytorch-optimizer 0.2.0 drops radam optimizer #80

Closed dandrewbarlow closed 2 years ago

dandrewbarlow commented 2 years ago

pytorch-optimizer very recently removed their RAdam optimizer, because pytorch 1.10.0 includes it. Recommended dependencies for this repo recommend torch 1.9.0 but no specified version of pytorch-optimizer. Easiest fix would be specifying older version of pytorch-optimizer, but I don't want to make presumptions.

squizm commented 2 years ago

Ran into this issue today. Used "pip install torch_optimizer==0.1.0" to resolve it.

dandrewbarlow commented 2 years ago

@squizm yeah me too, just spent a while fixing it and thought it'd be worth saving people the trouble

nerdyrodent commented 2 years ago

Thanks - requirments.txt has been updated!