Spaces:
Running
Running
File size: 1,582 Bytes
966ae59 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
## Installation
Create a new conda environment:
```shell
conda create --name svgrender python=3.10
conda activate svgrender
```
Install pytorch and the following libraries:
```shell
conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.6 -c pytorch -c nvidia
pip install hydra-core omegaconf
pip install freetype-py shapely svgutils
pip install opencv-python scikit-image matplotlib visdom wandb BeautifulSoup4
pip install triton numba
pip install numpy scipy scikit-fmm einops timm fairscale=0.4.13
pip install accelerate transformers safetensors datasets
```
Install LaMa:
```shell
pip install easydict scikit-learn pytorch_lightning webdataset
pip install albumentations==0.5.2
pip install kornia==0.5.0
pip install wldhx.yadisk-direct
cd lama
# download LaMa model weights
# raw link(deprecated): curl -L $(yadisk-direct https://disk.yandex.ru/d/kHJkc7bs7mKIVA) -o big-lama.zip
curl -O -L https://huggingface.co/xingxm/PyTorch-SVGRender-models/resolve/main/big-lama.zip
unzip big-lama.zip
```
Install CLIP:
```shell
pip install ftfy regex tqdm
pip install git+https://github.com/openai/CLIP.git
```
Install diffusers:
```shell
pip install diffusers==0.20.2
```
Install xformers (require `python=3.10`):
```shell
conda install xformers -c xformers
```
Install diffvg:
```shell
git clone https://github.com/BachiLi/diffvg.git
cd diffvg
git submodule update --init --recursive
conda install -y -c anaconda cmake
conda install -y -c conda-forge ffmpeg
pip install svgwrite svgpathtools cssutils torch-tools
python setup.py install
``` |