Skip to content

Commit

Permalink
fix: use correct path to downloaded checkpoint (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Mar 19, 2024
1 parent 16b89d6 commit 1071844
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/electron/future/ipc/sdk.ts
Expand Up @@ -69,7 +69,9 @@ ipcMain.on(
const scriptPath = getDirectory("python/live-painting/main.py");
const scriptArguments = [
"--model_path",
getCaptainDownloads("stable-diffusion/checkpoints/stabilityai/sd-turb/fp16"),
getCaptainDownloads(
"stable-diffusion/checkpoints/stabilityai/sd-turbo/fp16/sd-turbo-fp16"
),
"--vae_path",
getCaptainDownloads("stable-diffusion/vae/madebyollin/taesd"),
"--input_image_path",
Expand Down

0 comments on commit 1071844

Please sign in to comment.