From e6cc97daaba0d02a13f557c8a0b8fd71872875b2 Mon Sep 17 00:00:00 2001 From: Somdev Sangwan Date: Mon, 5 Jun 2023 15:28:04 +0530 Subject: [PATCH 1/2] add henryruhs to credits --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1416826..9d19aa9 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ Looking for a CLI mode? Using the -f/--face argument will make the program in cl - [ ] Support for replacing multiple faces ## Credits +- [henryruhs](https://github.com/henryruhs): for being an irreplacable contributor to the project - [ffmpeg](https://ffmpeg.org/): for making video related operations easy - [deepinsight](https://github.com/deepinsight): for their [insightface](https://github.com/deepinsight/insightface) project which provided a well-made library and models. - and all developers behind libraries used in this project. From 30713c3c0e51ef93069977fc275f0cd0361e61c7 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Mon, 5 Jun 2023 12:10:23 +0200 Subject: [PATCH 2/2] Hotfix --- roop/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roop/core.py b/roop/core.py index c14bc48..f09674b 100755 --- a/roop/core.py +++ b/roop/core.py @@ -3,7 +3,7 @@ import os import sys # single thread doubles performance of gpu-mode - needs to be set before torch import -if any(arg.startswith('--gpu-vendor=') for arg in sys.argv): +if any(arg.startswith('--gpu-vendor') for arg in sys.argv): os.environ['OMP_NUM_THREADS'] = '1' import platform import signal