Spaces:
Configuration error
Configuration error
File size: 491 Bytes
24bde82 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import warnings
from gfpgan import GFPGANer
warnings.filterwarnings("ignore")
def load_sr():
run_params = GFPGANer(
model_path="checkpoints/GFPGANv1.4.pth",
upscale=1,
arch="clean",
channel_multiplier=2,
bg_upsampler=None,
)
return run_params
def upscale(image, properties):
_, _, output = properties.enhance(
image, has_aligned=False, only_center_face=False, paste_back=True
)
return output
|