mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-08 05:51:40 -07:00
Converter: added Apply super resolution? (y/n skip:n) : , Enhance details by applying DCSCN network.
refactorings
This commit is contained in:
parent
4683c362ac
commit
85c01e3b4a
12 changed files with 271 additions and 77 deletions
9
utils/pickle_utils.py
Normal file
9
utils/pickle_utils.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
class AntiPickler():
|
||||
def __init__(self, obj):
|
||||
self.obj = obj
|
||||
|
||||
def __getstate__(self):
|
||||
return dict()
|
||||
|
||||
def __setstate__(self, d):
|
||||
self.__dict__.update(d)
|
Loading…
Add table
Add a link
Reference in a new issue