From cc19538b51bc77eaddce0441bbb0bfce55e30699 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Mon, 27 Feb 2023 20:36:22 +0200 Subject: [PATCH 01/24] Updated for m1 --- requirements_3.9_arm64.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements_3.9_arm64.txt b/requirements_3.9_arm64.txt index c63501c..6e60fb0 100644 --- a/requirements_3.9_arm64.txt +++ b/requirements_3.9_arm64.txt @@ -10,4 +10,6 @@ Pillow==8.4.0 scikit-image==0.19.1 scipy==1.8.0 tensorflow-macos==2.7.0 +tensorflow-metal +PySide6 PyQt6==6.2.3 -- 2.52.0 From ba10df16d61c1a42f5d99e305460e415e800d9f7 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Mon, 27 Feb 2023 20:37:52 +0200 Subject: [PATCH 02/24] Updated for m1 --- scripts/0_setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/0_setup.sh b/scripts/0_setup.sh index dea6d70..7c5df1f 100755 --- a/scripts/0_setup.sh +++ b/scripts/0_setup.sh @@ -14,7 +14,7 @@ is_arm64 && echo "Running on Apple M1 chip" if [ ! -d .dfl/DeepFaceLab ]; then echo "Cloning DeepFaceLab" - git clone --no-single-branch --depth 1 "https://github.com/chychkan/DeepFaceLab.git" .dfl/DeepFaceLab + git clone --no-single-branch --depth 1 "https://github.com/jkennedyvz/DeepFaceLab.git" .dfl/DeepFaceLab if is_arm64; then (cd .dfl/DeepFaceLab; git checkout support-arm64) @@ -22,7 +22,7 @@ if [ ! -d .dfl/DeepFaceLab ]; then fi if [ ! -d .dfl/env ]; then - virtualenv -p python3 .dfl/env + virtualenv -p python3.9 .dfl/env fi source .dfl/env/bin/activate -- 2.52.0 From c45ae54092f878c23f57b72824a4de62bdfb1c9d Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:01:47 +0200 Subject: [PATCH 03/24] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bfde164..002792d 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Check if you have it with `brew ls --versions hdf5`. Install it with `brew insta **Clone and setup** -1. Clone this repository (`git clone https://github.com/chychkan/DeepFaceLab_MacOS.git`) +1. Clone this repository (`git clone https://github.com/ngardelis/MacOS.git`) 2. Run script `./scripts/0_setup.sh` to get [DeepFaceLab](https://github.com/iperov/DeepFaceLab), create virtual env and install necessary Python dependencies. This may take several minutes to run. Now you can put your `data_src.mp4` and `data_dst.mp4` files into the `workspace/` dir and start running scripts from the `scripts/` dir. -- 2.52.0 From 07ace2284ebaee5f9831a44ae12916e39d6bcd5d Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:40:05 +0200 Subject: [PATCH 04/24] added correct path for python --- scripts/env.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/env.sh b/scripts/env.sh index e4d31d6..cdeb142 100644 --- a/scripts/env.sh +++ b/scripts/env.sh @@ -1,3 +1,4 @@ +DFL_PYTHON=/opt/homebrew/bin/python3.11 DFL_MAIN=.dfl/DeepFaceLab/main.py WORKSPACE=workspace -- 2.52.0 From 8c678e3fda789252055dffcf31382c1298e1c237 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:40:54 +0200 Subject: [PATCH 05/24] Update xseg.sh --- scripts/xseg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xseg.sh b/scripts/xseg.sh index bc5b6a8..a576a5e 100755 --- a/scripts/xseg.sh +++ b/scripts/xseg.sh @@ -2,5 +2,5 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" xseg editor \ +python3.9 "$DFL_MAIN" xseg editor \ --input-dir "$WORKSPACE/data_src/aligned" -- 2.52.0 From 9803f48be36953dde95833cb1d7561a4bc39861b Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:42:02 +0200 Subject: [PATCH 06/24] 3.9 --- scripts/2_extract_images_from_video_data_src.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/2_extract_images_from_video_data_src.sh b/scripts/2_extract_images_from_video_data_src.sh index 77e7417..0bc8ed9 100755 --- a/scripts/2_extract_images_from_video_data_src.sh +++ b/scripts/2_extract_images_from_video_data_src.sh @@ -2,6 +2,6 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" videoed extract-video \ +python3.9 "$DFL_MAIN" videoed extract-video \ --input-file "$WORKSPACE/data_src.*" \ --output-dir "$WORKSPACE/data_src" -- 2.52.0 From 323b74fc8c15e31d16c93f1235f5d218772aa77a Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:42:59 +0200 Subject: [PATCH 07/24] 3.9 --- scripts/3_extract_images_from_video_data_dst.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/3_extract_images_from_video_data_dst.sh b/scripts/3_extract_images_from_video_data_dst.sh index a3f0d2e..7385918 100755 --- a/scripts/3_extract_images_from_video_data_dst.sh +++ b/scripts/3_extract_images_from_video_data_dst.sh @@ -2,6 +2,6 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" videoed extract-video \ +python3.9 "$DFL_MAIN" videoed extract-video \ --input-file "$WORKSPACE/data_dst.*" \ --output-dir "$WORKSPACE/data_dst" -- 2.52.0 From ec69fa3a32b3c0ac3396b615de74de9c9a621216 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:43:13 +0200 Subject: [PATCH 08/24] Update 4.1_data_src_extract_faces_MANUAL.sh --- scripts/4.1_data_src_extract_faces_MANUAL.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/4.1_data_src_extract_faces_MANUAL.sh b/scripts/4.1_data_src_extract_faces_MANUAL.sh index 60dc5c7..5e1ffa8 100755 --- a/scripts/4.1_data_src_extract_faces_MANUAL.sh +++ b/scripts/4.1_data_src_extract_faces_MANUAL.sh @@ -2,7 +2,7 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" extract \ +python3.9 "$DFL_MAIN" extract \ --input-dir "$WORKSPACE/data_src" \ --output-dir "$WORKSPACE/data_src/aligned" \ --detector manual -- 2.52.0 From 7d7b2e4756e36ce81b47fd3d4004f7b4ccee04c0 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:43:54 +0200 Subject: [PATCH 09/24] Update 4.1_data_src_extract_faces_S3FD.sh --- scripts/4.1_data_src_extract_faces_S3FD.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/4.1_data_src_extract_faces_S3FD.sh b/scripts/4.1_data_src_extract_faces_S3FD.sh index 52226d8..0596803 100755 --- a/scripts/4.1_data_src_extract_faces_S3FD.sh +++ b/scripts/4.1_data_src_extract_faces_S3FD.sh @@ -2,7 +2,7 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" extract \ +python3.9 "$DFL_MAIN" extract \ --input-dir "$WORKSPACE/data_src" \ --output-dir "$WORKSPACE/data_src/aligned" \ --detector s3fd -- 2.52.0 From 06590a56da998a37fdbf7a8a6c0b6c5e561a4609 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:44:24 +0200 Subject: [PATCH 10/24] Update 4.2_data_src_sort.sh --- scripts/4.2_data_src_sort.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/4.2_data_src_sort.sh b/scripts/4.2_data_src_sort.sh index 62ca31b..effad83 100755 --- a/scripts/4.2_data_src_sort.sh +++ b/scripts/4.2_data_src_sort.sh @@ -2,5 +2,5 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" sort \ +python3.9 "$DFL_MAIN" sort \ --input-dir "$WORKSPACE/data_src/aligned" -- 2.52.0 From 84a5621807051a6d47671ed32faf6cf7c9348a84 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:44:49 +0200 Subject: [PATCH 11/24] Update 5.1_data_dst_extract_faces_S3FD.sh --- scripts/5.1_data_dst_extract_faces_S3FD.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/5.1_data_dst_extract_faces_S3FD.sh b/scripts/5.1_data_dst_extract_faces_S3FD.sh index dff6592..0e1e2b0 100755 --- a/scripts/5.1_data_dst_extract_faces_S3FD.sh +++ b/scripts/5.1_data_dst_extract_faces_S3FD.sh @@ -2,7 +2,7 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" extract \ +python3.9 "$DFL_MAIN" extract \ --input-dir "$WORKSPACE/data_dst" \ --output-dir "$WORKSPACE/data_dst/aligned" \ --detector s3fd -- 2.52.0 From 05d9a857631de9498f592add070084633412efec Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:45:36 +0200 Subject: [PATCH 12/24] Update 6_train_Quick96.sh --- scripts/6_train_Quick96.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/6_train_Quick96.sh b/scripts/6_train_Quick96.sh index ca8e9c8..2fbd8a1 100755 --- a/scripts/6_train_Quick96.sh +++ b/scripts/6_train_Quick96.sh @@ -2,7 +2,7 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" train \ +python3.9 "$DFL_MAIN" train \ --training-data-src-dir "$WORKSPACE/data_src/aligned" \ --training-data-dst-dir "$WORKSPACE/data_dst/aligned" \ --model-dir "$WORKSPACE/model" \ -- 2.52.0 From f404baebcbb2f4aafe1f5140d6ed1d94b6cc0806 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:45:54 +0200 Subject: [PATCH 13/24] Update 6_train_SAEHD.sh --- scripts/6_train_SAEHD.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/6_train_SAEHD.sh b/scripts/6_train_SAEHD.sh index 2be58f0..d315512 100755 --- a/scripts/6_train_SAEHD.sh +++ b/scripts/6_train_SAEHD.sh @@ -2,7 +2,7 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" train \ +python3.9 "$DFL_MAIN" train \ --training-data-src-dir "$WORKSPACE/data_src/aligned" \ --training-data-dst-dir "$WORKSPACE/data_dst/aligned" \ --model-dir "$WORKSPACE/model" \ -- 2.52.0 From 0d1a324160bc5cafb9a0c118a71076e1c0edb7ae Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:46:11 +0200 Subject: [PATCH 14/24] Update 7_merge_Quick96.sh --- scripts/7_merge_Quick96.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/7_merge_Quick96.sh b/scripts/7_merge_Quick96.sh index f59aa53..e5266d7 100755 --- a/scripts/7_merge_Quick96.sh +++ b/scripts/7_merge_Quick96.sh @@ -2,7 +2,7 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" merge \ +python3.9 "$DFL_MAIN" merge \ --input-dir "$WORKSPACE/data_dst" \ --output-dir "$WORKSPACE/data_dst/merged" \ --output-mask-dir "$WORKSPACE/data_dst/merged_mask" \ -- 2.52.0 From 853851b84f3148ba415562712f5f190aa9bc8571 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:46:27 +0200 Subject: [PATCH 15/24] Update 7_merge_SAEHD.sh --- scripts/7_merge_SAEHD.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/7_merge_SAEHD.sh b/scripts/7_merge_SAEHD.sh index f7d91df..616aa57 100755 --- a/scripts/7_merge_SAEHD.sh +++ b/scripts/7_merge_SAEHD.sh @@ -2,7 +2,7 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" merge \ +python3.9 "$DFL_MAIN" merge \ --input-dir "$WORKSPACE/data_dst" \ --output-dir "$WORKSPACE/data_dst/merged" \ --output-mask-dir "$WORKSPACE/data_dst/merged_mask" \ -- 2.52.0 From c722a41187f2e1998dfcea8e66d532de7b410929 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:47:02 +0200 Subject: [PATCH 16/24] Update 8_merged_to_mp4.sh --- scripts/8_merged_to_mp4.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/8_merged_to_mp4.sh b/scripts/8_merged_to_mp4.sh index f048453..39eb81c 100755 --- a/scripts/8_merged_to_mp4.sh +++ b/scripts/8_merged_to_mp4.sh @@ -2,7 +2,7 @@ cd "$(dirname $0)/.." source scripts/env.sh -python "$DFL_MAIN" videoed video-from-sequence \ +python3.9 "$DFL_MAIN" videoed video-from-sequence \ --input-dir "$WORKSPACE/data_dst/merged" \ --output-file "$WORKSPACE/result.mp4" \ --reference-file "$WORKSPACE/data_dst.*" \ -- 2.52.0 From e3e89b4ef491afd5934ca7eea5c50a6f9d8ea4ae Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:49:46 +0200 Subject: [PATCH 17/24] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 002792d..12320a2 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,21 @@ You'll need `git`, `ffmpeg`, `python3` and python module `virtualenv` available Currently there's limited support for Apple M1 laptops. You can do model training, but the XSeg editor currently does not work (the DeepFaceLab codebase is not compatible with PyQt6). +## NOTE: FULL RUN M1 + +``` + +cd scripts +./2_extract_images_from_video_data_src.sh +./3_extract_images_from_video_data_dst.sh +./4.1_data_src_extract_faces_S3FD.sh <<< on GPU +./5_data_dst_extract_faces_S3FD_best_GPU.sh <<< on GPU +./6_train_Quick96.sh <<< on GPU +./7_convert_Quick96.sh <<< on CPU +./8_converted_to_avi.sh + +``` + ## Setup **Tools** -- 2.52.0 From e079e534c6863a61d313fae4b3aa51b86729e391 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 08:58:09 +0200 Subject: [PATCH 18/24] updated --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 12320a2..43e1d91 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,14 @@ Check if you have it with `brew ls --versions hdf5`. Install it with `brew insta 1. Clone this repository (`git clone https://github.com/ngardelis/MacOS.git`) 2. Run script `./scripts/0_setup.sh` to get [DeepFaceLab](https://github.com/iperov/DeepFaceLab), create virtual env and install necessary Python dependencies. This may take several minutes to run. +**Temporary bug and workaround** + +At this point, you may run into different problems. It appears there is a bug in the latest update to protobuf. To get around this, force a downgrade in your Python environment: + +- Run: source .dfl/env/bin/activate +- Run: pip3.9 install 'protobuf~=3.19.0' +- Run: deactivate + Now you can put your `data_src.mp4` and `data_dst.mp4` files into the `workspace/` dir and start running scripts from the `scripts/` dir. ## Tutorials and docs -- 2.52.0 From 81d6953de04e35ac53aa4463c476a16ba63df154 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 09:00:01 +0200 Subject: [PATCH 19/24] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 43e1d91..d2edd00 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ You'll need `git`, `ffmpeg`, `python3` and python module `virtualenv` available ## NOTE: Apple M1 chip -Currently there's limited support for Apple M1 laptops. You can do model training, but the XSeg editor currently does not work (the DeepFaceLab codebase is not compatible with PyQt6). +Currently there's limited support for Apple M1 laptops. You can do model training, but the XSeg editor currently does not work (the DeepFaceLab codebase is not compatible with PyQt6). Although this repo uses PySide6 instead of PyQt from [DeepFaceLab-iperov]https://github.com/iperov/DeepFaceLab ## NOTE: FULL RUN M1 -- 2.52.0 From 8d7abe0056bd584a616e4ca5b938d41de457fc58 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 09:00:23 +0200 Subject: [PATCH 20/24] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2edd00..d86b170 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ You'll need `git`, `ffmpeg`, `python3` and python module `virtualenv` available ## NOTE: Apple M1 chip -Currently there's limited support for Apple M1 laptops. You can do model training, but the XSeg editor currently does not work (the DeepFaceLab codebase is not compatible with PyQt6). Although this repo uses PySide6 instead of PyQt from [DeepFaceLab-iperov]https://github.com/iperov/DeepFaceLab +Currently there's limited support for Apple M1 laptops. You can do model training, but the XSeg editor currently does not work (the DeepFaceLab codebase is not compatible with PyQt6). Although this repo uses PySide6 instead of PyQt from https://github.com/iperov/DeepFaceLab ## NOTE: FULL RUN M1 -- 2.52.0 From 2661400c0bcab90d6df42f5674b7fd346eabe0ac Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 09:18:41 +0200 Subject: [PATCH 21/24] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d86b170..2f688ae 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ You'll need `git`, `ffmpeg`, `python3` and python module `virtualenv` available ## NOTE: Apple M1 chip -Currently there's limited support for Apple M1 laptops. You can do model training, but the XSeg editor currently does not work (the DeepFaceLab codebase is not compatible with PyQt6). Although this repo uses PySide6 instead of PyQt from https://github.com/iperov/DeepFaceLab +Currently there's limited support for Apple M1 laptops. You can do model training, but the XSeg editor currently does not work (the DeepFaceLab codebase is not compatible with PyQt6). Although this repo also uses PySide6 from https://github.com/iperov/DeepFaceLab ## NOTE: FULL RUN M1 -- 2.52.0 From 675d029a639b52ddba4fe172f741fd81d701e246 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 09:28:49 +0200 Subject: [PATCH 22/24] Update requirements_3.9_arm64.txt --- requirements_3.9_arm64.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/requirements_3.9_arm64.txt b/requirements_3.9_arm64.txt index 6e60fb0..90d1a51 100644 --- a/requirements_3.9_arm64.txt +++ b/requirements_3.9_arm64.txt @@ -10,6 +10,5 @@ Pillow==8.4.0 scikit-image==0.19.1 scipy==1.8.0 tensorflow-macos==2.7.0 -tensorflow-metal -PySide6 -PyQt6==6.2.3 +tensorflow-metal==0.3.0 +PySide6==6.2.2 -- 2.52.0 From ac1f44ec6f7264abad2df205d99a8fcbcad78d11 Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 21:35:51 +0200 Subject: [PATCH 23/24] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f688ae..9e6b8a4 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ cd scripts ./3_extract_images_from_video_data_dst.sh ./4.1_data_src_extract_faces_S3FD.sh <<< on GPU ./5_data_dst_extract_faces_S3FD_best_GPU.sh <<< on GPU -./6_train_Quick96.sh <<< on GPU +./6_train_SAEHD.sh <<< on GPU ./7_convert_Quick96.sh <<< on CPU ./8_converted_to_avi.sh -- 2.52.0 From cab5ed2beaee8b786f9891f5d005b2ecd46ca6ec Mon Sep 17 00:00:00 2001 From: ngardelis <118944371+ngardelis@users.noreply.github.com> Date: Tue, 28 Feb 2023 21:37:52 +0200 Subject: [PATCH 24/24] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9e6b8a4..589e012 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ cd scripts ./4.1_data_src_extract_faces_S3FD.sh <<< on GPU ./5_data_dst_extract_faces_S3FD_best_GPU.sh <<< on GPU ./6_train_SAEHD.sh <<< on GPU -./7_convert_Quick96.sh <<< on CPU -./8_converted_to_avi.sh +./7_merge_SAEHD.sh <<< on CPU +./8_merged_to_mp4.sh ``` -- 2.52.0