-
I've been using the following command: !pip install pygit2==1.12.2 When ever I want to download a new model, I use the command like the following !wget, the problem lies within the fact that download speed with the !wget command are very slow (20-26MB/s) compared to how the traditional Juggernautv6 (256MB/s) model that comes with the Fooocus git pull, is there a way to accelerate the download speed for this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Problem resolved by downloading the model straight to Google Drive, mounting it to the colab, and follow it with the code import shutil I know this is newbie programing, but perhaps this will help someone new like me in the future. |
Beta Was this translation helpful? Give feedback.
Problem resolved by downloading the model straight to Google Drive, mounting it to the colab, and follow it with the code
import shutil
colab_link = "/content/filename.type"
gdrive_link = "/content/drive/MyDrive/foldername/"
shutil.copy(colab_link, gdrive_link)
I know this is newbie programing, but perhaps this will help someone new like me in the future.