Skip to content
Open

1 #99

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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ conda install -c nvidia/label/cuda-12.4.1 cuda-runtime
```sh
conda install -c conda-forge cudnn
```
#### CUDA 12.8
```sh
conda install -c nvidia/label/cuda-12.8.0 cuda-runtime
```
Compatible with GPUs having compute capability 9.0 or higher (e.g., RTX 5090).

### **4. Install Additional Dependencies**
```sh
Expand All @@ -80,12 +85,17 @@ conda install scikit-image
```sh
pip install -r requirements_cu124.txt
```
```sh
pip install -r requirements_cu128.txt
```

### **5. Download Models and Other Dependencies**
1. Download all the required models
```sh
python download_models.py
```
For CUDA 12.8 you can run `scripts\update_cu128.bat` to install the correct
packages and download the models in one step.
2. Download all the files from this [page](https://github.com/visomaster/visomaster-assets/releases/tag/v0.1.0_dp) and copy it to the ***dependencies/*** folder.

**Note**: You do not need to download the Source code (zip) and Source code (tar.gz) files
Expand Down
2 changes: 1 addition & 1 deletion requirements_cu124.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pillow==9.5.0
onnx==1.16.1
protobuf==4.23.2
psutil==6.0.0
onnxruntime-gpu==1.20.0
onnxruntime-gpu==1.22.0
packaging==24.1
PySide6==6.8.2.1
kornia
Expand Down
29 changes: 29 additions & 0 deletions requirements_cu128.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
--extra-index-url https://download.pytorch.org/whl/cu128

numpy==1.26.4
opencv-python==4.10.0.84
scikit-image==0.21.0
pillow==9.5.0
onnx==1.16.1
protobuf==4.23.2
psutil==6.0.0
onnxruntime-gpu==1.22.0
packaging==24.1
PySide6==6.8.2.1
kornia
torch==2.4.1+cu128
torchvision==0.19.1+cu128
torchaudio==2.4.1+cu128
tensorrt==10.6.0 --extra-index-url https://pypi.nvidia.com
tensorrt-cu12_libs==10.6.0
tensorrt-cu12_bindings==10.6.0
tqdm
ftfy
regex
pyvirtualcam==0.11.1
numexpr
onnxsim
requests
pyqt-toast-notification==1.3.2
qdarkstyle
pyqtdarktheme
6 changes: 6 additions & 0 deletions scripts/update_cu128.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo off
call scripts\setenv.bat
"%GIT_EXECUTABLE%" fetch origin main
"%GIT_EXECUTABLE%" reset --hard origin/main
"%PYTHON_EXECUTABLE%" -m pip install -r requirements_cu128.txt --default-timeout 100
"%PYTHON_EXECUTABLE%" download_models.py