summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-04-18 12:58:11 +0200
committerJules Laplace <julescarbon@gmail.com>2018-04-18 12:58:11 +0200
commit5459b3fb7e4eeb2f507937bea42372cfc1975f41 (patch)
treed225b3a49f72ba8db98d6b01e2454521e875f80f
parenteb8e0d995e30b47486b0b5efdec009a3171fe244 (diff)
k
-rw-r--r--models/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/__init__.py b/models/__init__.py
index 72a0d2e..a3d7aa8 100644
--- a/models/__init__.py
+++ b/models/__init__.py
@@ -10,7 +10,7 @@ def create_model(opt):
from .pix2pix_model import Pix2PixModel
model = Pix2PixModel()
elif opt.model == 'test':
- assert(opt.dataset_mode == 'single' or opt.dataset_mode == 'recursive')
+ # assert(opt.dataset_mode == 'single' or opt.dataset_mode == 'recursive')
from .test_model import TestModel
model = TestModel()
else: