Skip to content
Merged

Test #36

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions 02.forge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,13 @@ if [ ! -f "$SD02_DIR/parameters.forge.txt" ]; then
fi

pip install --upgrade pip
pip install coloredlogs flatbuffers numpy packaging protobuf==3.20.3 sympy
pip install packaging
pip install onnxruntime-gpu --extra-index-url https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/onnxruntime-cuda-12/pypi/simple/
pip install insightface
pip install insightface
pip install basicsr
#pip install protobuf==3.20.3
pip install torch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 --index-url https://download.pytorch.org/whl/cu121
pip install xformers --index-url https://download.pytorch.org/whl/cu121

# Merge Models, vae, lora, and hypernetworks, and outputs
# Ignore move errors if they occur
Expand Down
7 changes: 5 additions & 2 deletions 02.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,14 @@ if [ ! -f "$SD02_DIR/parameters.txt" ]; then
fi

pip install --upgrade pip
pip install coloredlogs flatbuffers numpy packaging protobuf==3.20.3 sympy
pip install packaging
pip install onnxruntime-gpu --extra-index-url https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/onnxruntime-cuda-12/pypi/simple/
pip install insightface
pip install basicsr
#pip install protobuf==3.20.3
pip install basicsr
pip install torch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 --index-url https://download.pytorch.org/whl/cu121
pip install xformers --index-url https://download.pytorch.org/whl/cu121


# Merge Models, vae, lora, and hypernetworks, and outputs
# Ignore move errors if they occur
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN apt-get update -y -q=2 && \
build-essential \
python3-opencv \
libopencv-dev \
dotnet-sdk-7.0 \
dotnet-sdk-8.0 \
git && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Expand Down