-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing Modules, Colab doesn't work anymore #556
Comments
I have the same problem, does anyone know how to solve it? |
Its a persistent annoying problem #Open /usr/local/lib/python3.10/dist-packages/basicsr/data/degradations.py and on line 8, simply change: #from torchvision.transforms.functional_tensor import rgb_to_grayscale #from torchvision.transforms.functional import rgb_to_grayscale |
After u upload ur image, create a new code with mine: import fileinput def update_degradations_import(file_path):
Ruta al archivo de degradaciones que queremos modificarfile_path = '/usr/local/lib/python3.10/dist-packages/basicsr/data/degradations.py' Llamar a la función para actualizar la importaciónupdate_degradations_import(file_path) print(f"Updated import in {file_path}") |
https://gist.github.com/SaintFresh/ada893f9c4d0d9e6200c632598e8cdf9 Feel free to save a copy. |
Until a few months ago the Google Colab worked perfectly, now I find this error when I execute the block of code relating to Inference:
Traceback (most recent call last):
File "/content/GFPGAN/inference_gfpgan.py", line 7, in
from basicsr.utils import imwrite
File "/usr/local/lib/python3.10/dist-packages/basicsr/init.py", line 4, in
from .data import *
File "/usr/local/lib/python3.10/dist-packages/basicsr/data/init.py", line 22, in
_dataset_modules = [importlib.import_module(f'basicsr.data.{file_name}') for file_name in dataset_filenames]
File "/usr/local/lib/python3.10/dist-packages/basicsr/data/init.py", line 22, in
_dataset_modules = [importlib.import_module(f'basicsr.data.{file_name}') for file_name in dataset_filenames]
File "/usr/lib/python3.10/importlib/init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "/usr/local/lib/python3.10/dist-packages/basicsr/data/realesrgan_dataset.py", line 11, in
from basicsr.data.degradations import circular_lowpass_kernel, random_mixed_kernels
File "/usr/local/lib/python3.10/dist-packages/basicsr/data/degradations.py", line 8, in
from torchvision.transforms.functional_tensor import rgb_to_grayscale
ModuleNotFoundError: No module named 'torchvision.transforms.functional_tensor'
ls: cannot access 'results/cmp': No such file or directory
The text was updated successfully, but these errors were encountered: