diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 12:58:11 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 12:58:11 +0200 |
| commit | 5459b3fb7e4eeb2f507937bea42372cfc1975f41 (patch) | |
| tree | d225b3a49f72ba8db98d6b01e2454521e875f80f | |
| parent | eb8e0d995e30b47486b0b5efdec009a3171fe244 (diff) | |
k
| -rw-r--r-- | models/__init__.py | 2 |
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: |
