.run_ce.sh 335 字节
Newer Older
W
whs 已提交
1 2 3 4 5
#!/bin/bash

# This file is only used for continuous evaluation.
export FLAGS_cudnn_deterministic=True
export ce_mode=1
K
kolinwei 已提交
6 7
(CUDA_VISIBLE_DEVICES=2 python c_gan.py --batch_size=121 --epoch=1 --run_ce=True --use_gpu=True & \
CUDA_VISIBLE_DEVICES=3 python dc_gan.py --batch_size=121 --epoch=1 --run_ce=True --use_gpu=True) | python _ce.py
W
whs 已提交
8 9