NeoSerge commited on
Commit
65e2ea0
·
verified ·
1 Parent(s): 4992f2d

Upload models.py

Browse files
Files changed (1) hide show
  1. 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