bobgus commited on
Commit
6187fd6
·
verified ·
1 Parent(s): 1df0e2c

Upload 7 files

Browse files
0001_european_20_female.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8ccc039b6c811328902b51db4513f29fac32c072568d4583a3f623b5928cf98
3
+ size 216872600
SBai_style_100.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e82e60d1d876b6b5c66ad4836a59d43634e55b731547a20d4029e62128273cc
3
+ size 317075136
SBai_style_82.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53b5057fac15218fa8fef457ac04b86a33232ebd40cc12290c3752d0b274ed77
3
+ size 317075128
ae.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afc8e28272cd15db3919bacdb6918ce9c1ed22e96cb12c4d5ed0fba823529e38
3
+ size 335304388
european35MALE_Rank_1_T5-000150.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a2fb19ac59212cab6c633de1aacad485589fab158765918af262a085dde8979
3
+ size 433535568
install-linux.txt ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+ # Ensure correct local path.
4
+ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
5
+ cd $SCRIPT_DIR
6
+
7
+ # Accidental run prevention
8
+ if [ -d "SwarmUI" ]; then
9
+ echo "SwarmUI already exists in this directory. Please remove it before installing."
10
+ exit 1
11
+ fi
12
+ if [ -f "SwarmUI.sln" ]; then
13
+ echo "SwarmUI already exists in this directory. Please remove it before installing."
14
+ exit 1
15
+ fi
16
+
17
+ # Download swarm
18
+ git clone https://github.com/mcmonkeyprojects/SwarmUI
19
+
20
+ mkdir -p /workspace/SwarmUI/dlbackend
21
+
22
+ cd /workspace/SwarmUI/dlbackend
23
+
24
+ git clone https://github.com/comfyanonymous/ComfyUI
25
+
26
+ mkdir -p /workspace/SwarmUI/dlbackend/ComfyUI/custom_nodes
27
+
28
+ cd /workspace/SwarmUI/dlbackend/ComfyUI/custom_nodes
29
+
30
+ git clone https://github.com/ltdrdata/ComfyUI-Manager.git
31
+
32
+ cd /workspace/SwarmUI
33
+
34
+ # install dotnet
35
+ cd launchtools
36
+ rm dotnet-install.sh
37
+ # https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install
38
+ wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
39
+ chmod +x dotnet-install.sh
40
+
41
+ # Note: manual installers that want to avoid home dir, add to both of the below lines: --install-dir $SCRIPT_DIR/.dotnet
42
+ ./dotnet-install.sh --channel 8.0 --runtime aspnetcore
43
+ ./dotnet-install.sh --channel 8.0
44
+ cd ..
45
+
46
+ # export DOTNET_ROOT=~/.dotnet
47
+ # export PATH="$( pwd )/.dotnet:~/.dotnet:$PATH"
48
+
49
+
50
+ # Launch
51
+ ./launch-linux.sh --launch_mode none --host 0.0.0.0
install-linux_fix_step2.sh ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # Activate the virtual environment
2
+ cd /workspace/SwarmUI/dlbackend/ComfyUI
3
+ source venv/bin/activate
4
+
5
+ # Install onnxruntime and rembg
6
+ pip install onnxruntime
7
+ pip install rembg
8
+
9
+ # If you need to install a specific version, use:
10
+ # pip install onnxruntime==<version>