Spaces:
baselqt
/
No application file

simswap55 / src /Blend /blend.py
LB5's picture
Upload 45 files
22b8701
raw
history blame contribute delete
290 Bytes
import torch
import torch.nn as nn
class BlendModule(nn.Module):
def __init__(self, model_path, device):
super().__init__()
self.model = torch.jit.load(model_path).to(device)
def forward(self, swap, mask, att_img):
return self.model(swap, mask, att_img)