Spaces:
Sleeping
Sleeping
Upload models.py
Browse files- SimSwap/models/models.py +8 -0
SimSwap/models/models.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
from .base_model import BaseModel
|
3 |
+
from .fs_model import FSModel
|
4 |
+
|
5 |
+
def create_model(opt):
|
6 |
+
model = FSModel()
|
7 |
+
model.initialize(opt)
|
8 |
+
return model
|