-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest_DecGAN.py
37 lines (34 loc) · 1.49 KB
/
test_DecGAN.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import os
# os.environ["CUDA_DEVICE_ORDER"] = "PCI_BUS_ID"
# os.environ["CUDA_VISIBLE_DEVICES"] = "2"
from options.test_options import TestOptions
from data import CreateDataLoader
from models import create_model
from util.visualizer import Visualizer
from util import html
if __name__ == '__main__':
opt = TestOptions().parse()
opt.nThreads = 1 # test code only supports nThreads = 1
opt.batchSize = 1 # test code only supports batchSize = 1
opt.serial_batches = True # no shuffle
opt.no_flip = True # no flip
opt.display_id = -1 # no visdom display
data_loader = CreateDataLoader(opt)
dataset = data_loader.load_data()
model = create_model(opt)
visualizer = Visualizer(opt)
# create website
web_dir = os.path.join(opt.results_dir, opt.name, '%s_%s' % (opt.phase, opt.which_epoch))
webpage = html.HTML(web_dir, 'Experiment = %s, Phase = %s, Epoch = %s' % (opt.name, opt.phase, opt.which_epoch))
# test
for i, data in enumerate(dataset):
if i >= opt.how_many:
break
model.set_input(data)
model.test(opt.alpha_bone, opt.alpha_lung, opt.alpha_other)
visuals = model.get_current_visuals()
img_path = model.get_image_paths()
# print('%04d: process image... %s' % (i, img_path))
visualizer.save_images(webpage, visuals, img_path, aspect_ratio=opt.aspect_ratio)
# visualizer.PCL_save_images(webpage, visuals, img_path,opt.results_dir, aspect_ratio=opt.aspect_ratio)
webpage.save()