加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.py 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
tthuang 提交于 2019-04-19 22:30 . initial codes
import time
import os
from options.test_options import TestOptions
from data.data_loader import CreateDataLoader
from models.models import create_model
from util.visualizer import Visualizer
from util import html
import time
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
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))
print(opt.how_many)
print(len(dataset))
model = model.eval()
print(model.training)
opt.how_many = 999999
# test
for i, data in enumerate(dataset):
print(' process %d/%d img ..'%(i,opt.how_many))
if i >= opt.how_many:
break
model.set_input(data)
startTime = time.time()
model.test()
endTime = time.time()
print(endTime-startTime)
visuals = model.get_current_visuals()
img_path = model.get_image_paths()
img_path = [img_path]
print(img_path)
visualizer.save_images(webpage, visuals, img_path)
webpage.save()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化