From f6e94f9664f69816db05e9d57c58b65b7bfe06c7 Mon Sep 17 00:00:00 2001 From: Kelvin Clien <99217852+bulutthecat@users.noreply.github.com> Date: Mon, 26 Jun 2023 14:47:46 -0400 Subject: [PATCH 1/2] added windows GUI bat file --- scripts/gui.bat | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/gui.bat diff --git a/scripts/gui.bat b/scripts/gui.bat new file mode 100644 index 0000000..d0ad247 --- /dev/null +++ b/scripts/gui.bat @@ -0,0 +1,12 @@ +@echo off +python visualizer_drag.py ^ + checkpoints/stylegan2_lions_512_pytorch.pkl ^ + checkpoints/stylegan2-ffhq-512x512.pkl ^ + checkpoints/stylegan2-afhqcat-512x512.pkl ^ + checkpoints/stylegan2-car-config-f.pkl ^ + checkpoints/stylegan2_dogs_1024_pytorch.pkl ^ + checkpoints/stylegan2_horses_256_pytorch.pkl ^ + checkpoints/stylegan2-cat-config-f.pkl ^ + checkpoints/stylegan2_elephants_512_pytorch.pkl ^ + checkpoints/stylegan_human_v2_512.pkl ^ + checkpoints/stylegan2-lhq-256x256.pkl From 9059a77f8e92eb477e2f80de9c61c060c9ae9140 Mon Sep 17 00:00:00 2001 From: Kelvin Clien <99217852+bulutthecat@users.noreply.github.com> Date: Mon, 26 Jun 2023 14:49:00 -0400 Subject: [PATCH 2/2] Update requirements.txt added - imgui - glfw - pyopengl (all requirements for GUI) --- requirements.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 177fdde..e71044d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,7 @@ torchvision Ninja gradio huggingface_hub -hf_transfer \ No newline at end of file +hf_transfer +pyopengl +imgui +glfw