mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-10 15:23:32 -07:00
converter: now writes a filename of current frame config,
SAE: removed multiscale decoder, because it's not effective
This commit is contained in:
parent
bef4e5d33c
commit
b6b92bded0
6 changed files with 325 additions and 450 deletions
|
@ -1,6 +1,9 @@
|
|||
from pathlib import Path
|
||||
|
||||
class FrameInfo(object):
|
||||
def __init__(self, filename=None, landmarks_list=None):
|
||||
self.filename = filename
|
||||
self.filename_short = str(Path(filename).name)
|
||||
self.landmarks_list = landmarks_list or []
|
||||
self.motion_deg = 0
|
||||
self.motion_power = 0
|
Loading…
Add table
Add a link
Reference in a new issue