Fix Google Drive download and specify opencv version #151
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In trying to set up the repository to recreate the World Consistent Video2Video, I hit two errors that I have fixed in this PR.
The Google Drive download protocol used in
io.py
no longer works due to a change in how Google Drive handles requests. The currentio.py
will cause all downloads to silently fail because it will download a Google Drive HTML warning. The original logic appears to be similar to that of this StackOverflow post and so I adapted the last comment so that it uses aPOST
request including the&confirm=t
parameter. This can be verified by trying to download one of the models. Swapping to a library may be preferred for long-term support.Separately, the installation with Docker would not run due to an error on
import cv2
. This appears to due to a change inopencv-python
sincerequirements.txt
was uploaded. This fixes that error by forcing all of theopencv-python
dependencies to version4.5.4.58
which was the current version as of Nov 12, 2021 whenrequirements.txt
was originally committed. I do not know that this is the correct version, but it resulted in a working build for me.