-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change version to next * Refactor UI to Gradio * Refactor UI to Gradio * Refactor UI to Gradio * Autoload source and target into UI * Implement video preview * Adjust layout * Add theme * Fix dependencies * Share components * Typing for the globals * Revert export of components * Expose of components via registry * Finish basic preview * Finish basic preview * Finish basic preview * Finish basic preview * Start with settings * More settings * More settings * More settings * Implement background enhancer * Rename to frame enhancer * Introduce list frame processor names * Move get_device to core of frame processors * Add flags to settings * Sort frame processor choices * Adjust project structure * Minor fixes * Load UI dynamic, Change some CLI argument names * Rename temp_face to crop_frame * Start with reference component * Use face position slider * Use face position slider * Use face position slider * Add pre_check() to settings component to load autoload models * Make CI happy * Make CI happy * Split render() and listen(), finalize reference component * Split render() and listen() part2 * Remove limiting choices, Add error handling to start() * Remove limiting choices, Add error handling to start()
- Loading branch information
Showing
27 changed files
with
726 additions
and
536 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,13 +1,10 @@ | ||
insightface==0.7.3 | ||
numpy==1.24.3 | ||
opencv-python==4.8.0.74 | ||
onnx==1.14.0 | ||
insightface==0.7.3 | ||
psutil==5.9.5 | ||
tk==0.1.0 | ||
customtkinter==5.2.0 | ||
tkinterdnd2==0.3.0 | ||
onnxruntime==1.15.0 | ||
tensorflow==2.13.0 | ||
onnxruntime==1.15.1 | ||
opencv-python==4.8.0.74 | ||
opennsfw2==0.10.2 | ||
protobuf==4.23.4 | ||
tqdm==4.65.0 | ||
psutil==5.9.5 | ||
tensorflow==2.13.0 | ||
tqdm==4.65.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,21 +1,20 @@ | ||
--extra-index-url https://download.pytorch.org/whl/cu118 | ||
|
||
basicsr==1.4.2 | ||
gfpgan==1.3.8 | ||
gradio==3.39.0 | ||
insightface==0.7.3 | ||
numpy==1.24.3 | ||
opencv-python==4.8.0.74 | ||
onnx==1.14.0 | ||
insightface==0.7.3 | ||
psutil==5.9.5 | ||
tk==0.1.0 | ||
customtkinter==5.2.0 | ||
tkinterdnd2==0.3.0; sys_platform != 'darwin' and platform_machine != 'arm64' | ||
tkinterdnd2-universal==1.7.3; sys_platform == 'darwin' and platform_machine == 'arm64' | ||
pillow==10.0.0 | ||
onnxruntime==1.15.1; python_version != '3.9' and sys_platform == 'darwin' and platform_machine != 'arm64' | ||
onnxruntime-coreml==1.13.1; python_version == '3.9' and sys_platform == 'darwin' and platform_machine != 'arm64' | ||
onnxruntime-silicon==1.13.1; sys_platform == 'darwin' and platform_machine == 'arm64' | ||
onnxruntime-gpu==1.15.1; sys_platform != 'darwin' | ||
tensorflow==2.13.0 | ||
onnxruntime-silicon==1.13.1; sys_platform == 'darwin' and platform_machine == 'arm64' | ||
opencv-python==4.8.0.74 | ||
opennsfw2==0.10.2 | ||
pillow==10.0.0 | ||
protobuf==4.23.4 | ||
psutil==5.9.5 | ||
realesrgan==0.3.0 | ||
tensorflow==2.13.0 | ||
tqdm==4.65.0 | ||
gfpgan==1.3.8 |
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 @@ | ||
name = 'roop' | ||
version = '1.3.2' | ||
version = '2.0.0-next' |
Empty file.
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.