add solution to incompatible torchvision version
Browse files- README.md +5 -0
- __pycache__/utils.cpython-39.pyc +0 -0
README.md
CHANGED
@@ -29,6 +29,11 @@ If you encounter an issue of opencv, you may need to reinstall opencv-python:
|
|
29 |
pip install opencv-contrib-python
|
30 |
```
|
31 |
|
|
|
|
|
|
|
|
|
|
|
32 |
## Inference
|
33 |
``` python
|
34 |
from utils import *
|
|
|
29 |
pip install opencv-contrib-python
|
30 |
```
|
31 |
|
32 |
+
If you meet a problem of `incompatible torchvision version`, try the following:
|
33 |
+
``` shell
|
34 |
+
pip install torchvision==0.15.2+cu118 --index-url https://download.pytorch.org/whl/cu118
|
35 |
+
```
|
36 |
+
|
37 |
## Inference
|
38 |
``` python
|
39 |
from utils import *
|
__pycache__/utils.cpython-39.pyc
CHANGED
Binary files a/__pycache__/utils.cpython-39.pyc and b/__pycache__/utils.cpython-39.pyc differ
|
|