未验证 提交 673c1587 编写于 作者: C Chang Xu 提交者: GitHub

Update NAS Demo (#1743)

上级 18eebf80
...@@ -140,12 +140,12 @@ def search_mobilenetv2(config, args, image_size, is_server=True): ...@@ -140,12 +140,12 @@ def search_mobilenetv2(config, args, image_size, is_server=True):
fetches = [avg_cost.name] fetches = [avg_cost.name]
s_time = time.time() s_time = time.time()
outs = exe.run( outs = exe.run(
train_compiled_program, feed=data, fetch_list=fetches)[0] train_compiled_program, feed=data[0], fetch_list=fetches)
batch_time = time.time() - s_time batch_time = time.time() - s_time
if batch_id % 10 == 0: if batch_id % 10 == 0:
_logger.info( _logger.info(
'TRAIN: steps: {}, epoch: {}, batch: {}, cost: {}, batch_time: {}ms'. 'TRAIN: steps: {}, epoch: {}, batch: {}, cost: {}, batch_time: {}ms'.
format(step, epoch_id, batch_id, outs[0], batch_time)) format(step, epoch_id, batch_id, outs, batch_time))
reward = [] reward = []
for batch_id, data in enumerate(test_loader()): for batch_id, data in enumerate(test_loader()):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册