Skip to content

Instantly share code, notes, and snippets.

View FurkanGozukara's full-sized avatar

Furkan Gözükara FurkanGozukara

View GitHub Profile
@FurkanGozukara
FurkanGozukara / kandinsky.txt
Last active July 14, 2023 23:18
Save kandinsky generated images
# tutorial video link : https://youtu.be/dYt9xJ7dnpU
# colab link : https://colab.research.google.com/drive/1xSbu-b-EwYd6GdaFPRVgvXBX_mciZ41e?usp=sharing
# repo link : https://github.com/ai-forever/Kandinsky-2
# used repo commit hash : a4354c04d5fbd48851866ef7d84ec444d3d50102
# those who getting cuda error
# pip uninstall torch
# pip3 install torch==1.13.1 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
import os
@FurkanGozukara
FurkanGozukara / robocopy.txt
Created April 4, 2023 17:00
How to copy entire disk into another disk via Windows utility RoboCopy command
channel url : https://www.youtube.com/@SECourses
video tutorial : Seagate Exos ST8000NM000A Review - Performance Tests of SanDisk Ultra 3D NVMe & KINGSTON SNV2S2000G
https://youtu.be/xc9-4lYfhzk
robocopy D:\ E:\ /Copyall /S /E /dcopy:T /b /R:3 /W:1 /Log:C:\robocopy-log3.txt /NP
This command is using the Robocopy (Robust File Copy) utility to copy all files and directories from the source directory "D:" to the destination directory "E:" while preserving all file attributes and timestamps. Here's a breakdown of the different options used in this command:
robocopy: This is the command to invoke the Robocopy utility.
@FurkanGozukara
FurkanGozukara / windows torch 1.13.txt
Last active April 6, 2023 02:02
How to use Torch 1.13 and latest xformers on Windows
our channel https://www.youtube.com/@SECourses
our discord : https://discord.com/servers/software-engineering-courses-secourses-772774097734074388
First watch this tutorial video to learn : https://youtu.be/pom3nQejaTs
activate venv
execute below command
@FurkanGozukara
FurkanGozukara / runpod xformers.txt
Last active July 29, 2023 20:33
How to run and install Automatic1111 Web UI and DreamBooth on RunPod with latest xformers
video of this gist : https://youtu.be/zA4LksIVas8
dreambooth extension commit id : 3324b6ab7fa661cf7d6b5ef186227dc5e8ad1878
sd web ui commit : 22bcc7be428c94e9408f589966c2040187245d81
fuser -k 3000/tcp
python relauncher.py
@FurkanGozukara
FurkanGozukara / 0 How to convert a real video into an animation - anime video by using Stable Diffusion and Automatic1111 Web UI
Last active September 4, 2024 07:48
How to convert a real video into an animation - anime video by using Stable Diffusion and Automatic1111 Web UI
Video tutorial of this gist file : https://www.youtube.com/watch?v=kmT-z2lqEPQ
Used web UI commit hash id: a9eef1fbb1dcdce4f0eb0b8e0f79dcd4c96713e1
Used ControlNet commit hash id : 241c05f8c9d3c5abe637187e3c4bb46f17447029
git checkout a9eef1fbb1dcdce4f0eb0b8e0f79dcd4c96713e1
git checkout master
@FurkanGozukara
FurkanGozukara / gist:ad1aa55e64576d49f829450278a15885
Last active July 29, 2023 20:46
Massive dreambooth experiment
video link : https://www.youtube.com/watch?v=sRdtVanSRl4
first run below command to install fuser - this is necessary after recent template change
apt update && apt install psmisc
fuser -k 3000/tcp
python relauncher.py
this below command will be executed in this folder : /workspace/stable-diffusion-webui/extensions/sd_dreambooth_extension
https://www.youtube.com/@SECourses
1:
pip uninstall torch torchvision
2:
pip uninstall torchaudio
3:
pip uninstall xformers