mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-06 21:12:07 -07:00
sort by final : now you can specify target number of images, converter: fix seamless mask and exception, huge refactoring
5 lines
No EOL
160 B
Python
5 lines
No EOL
160 B
Python
from .ModelBase import ModelBase
|
|
|
|
def import_model(name):
|
|
module = __import__('Model_'+name, globals(), locals(), [], 1)
|
|
return getattr(module, 'Model') |