Spaces:
Runtime error
Runtime error
add setup.sh
Browse files
setup.sh
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/bash
|
2 |
+
|
3 |
+
|
4 |
+
# Install detectron2
|
5 |
+
pip install git+https://github.com/facebookresearch/[email protected]
|
6 |
+
|
7 |
+
# Compile ms_deform_attn op
|
8 |
+
cd annotator/entityseg/mask2former/modeling/pixel_decoder/ops
|
9 |
+
sh make.sh
|
10 |
+
|
11 |
+
# download models
|
12 |
+
mkdir .cache
|
13 |
+
git clone https://huggingface.co/nowsyn/anycontrol .cache/anycontrol
|
14 |
+
|
15 |
+
ln -s `pwd`/.cache/anycontrol/ckpts ./ckpts
|
16 |
+
ln -s `pwd`/.cache/anycontrol/annotator/ckpts ./annotator/ckpts
|