File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -85,11 +85,17 @@ The `examples` directory contains Jupyter notebook tutorials that demonstrate ho
85
85
86
86
## FAQ
87
87
88
- #### I am getting ` attributeerror: module 'cv2.face' has no attribute 'createlbphfacerecognizer' ` when running some examples in dev mode
88
+ #### → I am getting ` attributeerror: module 'cv2.face' has no attribute 'createlbphfacerecognizer' ` when running some examples in dev mode
89
89
90
90
This issue usually occurs due to the installation order of the ` opencv-contrib-python ` module. To resolve it, follow these steps:
91
91
92
92
``` bash
93
93
pip uninstall opencv-contrib-python
94
94
pip install opencv-contrib-python
95
95
```
96
+
97
+ #### → For Linux users with CUDA support
98
+ It is recommended that you install the following CUDA-compatible versions of Torch by running the command below:
99
+ ``` bash
100
+ pdm run pip install -U torch==2.1.0+cu121 torchvision==0.16.0+cu121 --index-url https://download.pytorch.org/whl/cu121
101
+ ```
You can’t perform that action at this time.
0 commit comments