diff options
| -rwxr-xr-x | bootstrap | 10 | ||||
| -rw-r--r-- | steps/.gitignore | 1 | 
2 files changed, 8 insertions, 3 deletions
| @@ -1,13 +1,17 @@  #!/bin/bash +set -xe +  git clone https://github.com/openai/CLIP  git clone https://github.com/CompVis/taming-transformers -pip install ftfy regex tqdm omegaconf pytorch-lightning +pip install ftfy +pip install regex +pip install omegaconf +pip install pytorch-lightning  pip install kornia  pip install einops  pip install torchvision  pip install imageio -   pip install stegano  pip install python-xmp-toolkit  pip install imgtag @@ -15,7 +19,7 @@ pip install pillow  pip install imageio-ffmpeg  #apt install exempi -pacman -Sy emempi +pacman -Sy exempi  curl -L -o vqgan_imagenet_f16_16384.yaml -C - 'http://mirror.io.community/blob/vqgan/vqgan_imagenet_f16_16384.yaml'  curl -L -o vqgan_imagenet_f16_16384.ckpt -C - 'http://mirror.io.community/blob/vqgan/vqgan_imagenet_f16_16384.ckpt' diff --git a/steps/.gitignore b/steps/.gitignore new file mode 100644 index 0000000..4446212 --- /dev/null +++ b/steps/.gitignore @@ -0,0 +1 @@ +*png | 
