Spaces:
Runtime error
Runtime error
File size: 437 Bytes
47ff282 72f8ea7 47ff282 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/usr/bin/bash
# Install detectron2
pip install git+https://github.com/facebookresearch/[email protected]
# Compile ms_deform_attn op
pip install third-party/MultiScaleDeformableAttention-1.0-cp310-cp310-linux_x86_64.whl
# download models
mkdir .cache
git clone https://huggingface.co/nowsyn/anycontrol .cache/anycontrol
ln -s `pwd`/.cache/anycontrol/ckpts ./ckpts
ln -s `pwd`/.cache/anycontrol/annotator/ckpts ./annotator/ckpts
|