forked from deepfakes/faceswap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tensorflow 2.6 Support (deepfakes#1182)
* lib.cli.launcher - Bump max tf version to 2.6 * Remove pathlib requirement * Update requirements files * Update setup.py * bugfix - GUI: Supress errors when attempting to load previews in extract * GUI: Suppress ptxas error messages for Windows
- Loading branch information
Showing
18 changed files
with
104 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
tqdm>=4.42 | ||
psutil>=5.7.0 | ||
pathlib==1.0.1 | ||
tqdm>=4.62 | ||
psutil>=5.8.0 | ||
numpy>=1.18.0,<1.20.0 | ||
opencv-python>=4.1.2.0 | ||
pillow>=7.0.0 | ||
scikit-learn>=0.22.0 | ||
fastcluster==1.1.26 | ||
opencv-python>=4.5.3.0 | ||
pillow>=8.3.1 | ||
scikit-learn>=0.24.2 | ||
fastcluster>=1.1.26 | ||
# matplotlib 3.3.1 breaks custom toolbar in graph popup | ||
matplotlib>=3.0.3,<3.3.0 | ||
imageio>=2.8.0 | ||
imageio-ffmpeg>=0.4.2 | ||
matplotlib>=3.2.0,<3.3.0 | ||
imageio>=2.9.0 | ||
imageio-ffmpeg>=0.4.5 | ||
ffmpy==0.2.3 | ||
# Revert back to nvidia-ml-py3 when windows/system32 patch is implemented | ||
git+https://github.com/deepfakes/nvidia-ml-py3.git | ||
#nvidia-ml-py3 | ||
pywin32>=227 ; sys_platform == "win32" | ||
nvidia-ml-py>=11.470.66 | ||
pywin32>=228 ; sys_platform == "win32" | ||
pynvx==1.0.0 ; sys_platform == "darwin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
# NB Do not install from this requirements file | ||
# It is for documentation purposes only | ||
|
||
tqdm==4.42 | ||
psutil==5.7.0 | ||
pathlib==1.0.1 | ||
tqdm==4.62 | ||
psutil==5.8.0 | ||
numpy==1.18.0 | ||
opencv-python==4.1.2.30 | ||
pillow==7.0.0 | ||
scikit-learn==0.22.0 | ||
opencv-python==4.5.3.0 | ||
pillow==8.3.1 | ||
scikit-learn==0.24.2 | ||
fastcluster==1.1.26 | ||
matplotlib>3.0.3,<3.3.0 | ||
imageio==2.8.0 | ||
imageio-ffmpeg==0.4.2 | ||
matplotlib>3.2.0,<3.3.0 | ||
imageio==2.9.0 | ||
imageio-ffmpeg==0.4.5 | ||
ffmpy==0.2.3 | ||
nvidia-ml-py3 | ||
pywin32==227 ; sys_platform == "win32" | ||
pywin32==228 ; sys_platform == "win32" | ||
pynvx==1.0.0 ; sys_platform == "darwin" | ||
plaidml-keras==0.7.0 | ||
tensorflow==2.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
-r _requirements_base.txt | ||
tensorflow>=2.2.0,<2.5.0 | ||
tensorflow>=2.2.0,<2.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
-r _requirements_base.txt | ||
tensorflow-gpu>=2.2.0,<2.5.0 | ||
tensorflow-gpu>=2.2.0,<2.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.