cddb07a176
docs / deploy (push) Has been cancelled
docs / changes (push) Has been cancelled
docs / check-and-build (push) Has been cancelled
build container image / cpu (push) Has been cancelled
build container image / cuda (push) Has been cancelled
build container image / rocm (push) Has been cancelled
frontend checks / frontend-checks (push) Has been cancelled
frontend tests / frontend-tests (push) Has been cancelled
lfs checks / lfs-check (push) Has been cancelled
python checks / python-checks (push) Has been cancelled
python tests / py3.12: macos-default (push) Has been cancelled
python tests / py3.11: windows-cpu (push) Has been cancelled
python tests / py3.12: windows-cpu (push) Has been cancelled
python tests / py3.11: linux-cpu (push) Has been cancelled
typegen checks / typegen-checks (push) Has been cancelled
uv lock checks / uv-lock-checks (push) Has been cancelled
openapi checks / openapi-checks (push) Has been cancelled
python tests / py3.11: macos-default (push) Has been cancelled
python tests / py3.12: linux-cpu (push) Has been cancelled
19 lines
871 B
Python
19 lines
871 B
Python
"""
|
|
Adapted from https://github.com/XPixelGroup/BasicSR
|
|
License: Apache-2.0
|
|
|
|
As of Feb 2024, `basicsr` appears to be unmaintained. It imports a function from `torchvision` that is removed in
|
|
`torchvision` 0.17. Here is the deprecation warning:
|
|
|
|
UserWarning: The torchvision.transforms.functional_tensor module is deprecated in 0.15 and will be **removed in
|
|
0.17**. Please don't rely on it. You probably just need to use APIs in torchvision.transforms.functional or in
|
|
torchvision.transforms.v2.functional.
|
|
|
|
As a result, a dependency on `basicsr` means we cannot keep our `torchvision` dependency up to date.
|
|
|
|
Because we only rely on a single class `RRDBNet` from `basicsr`, we've copied the relevant code here and removed the
|
|
dependency on `basicsr`.
|
|
|
|
The code is almost unchanged, only a few type annotations have been added. The license is also copied.
|
|
"""
|