-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrun.py
38 lines (27 loc) · 1.4 KB
/
run.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
38
import os, inspect, warnings, argparse
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'
os.environ["CUDA_VISIBLE_DEVICES"]='0'
warnings.filterwarnings('ignore')
import tensorflow as tf
import source.datamanager as dman
import source.neuralnet as nn
import source.tf_process as tfp
PACK_PATH = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
CKPT_DIR = PACK_PATH+'/Checkpoint'
def main():
try:
physical_devices = tf.config.list_physical_devices('GPU')
tf.config.experimental.set_memory_growth(physical_devices[0], True)
except: pass
dataset = dman.Dataset(normalize=FLAGS.datnorm)
neuralnet = nn.MemAE(height=dataset.height, width=dataset.width, channel=dataset.channel, leaning_rate=FLAGS.lr, ckpt_dir=CKPT_DIR)
tfp.training(neuralnet=neuralnet, dataset=dataset, epochs=FLAGS.epoch, batch_size=FLAGS.batch, normalize=True)
tfp.test(neuralnet=neuralnet, dataset=dataset, batch_size=FLAGS.batch)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--datnorm', type=bool, default=True, help='Data normalization')
parser.add_argument('--lr', type=int, default=1e-4, help='Learning rate for training')
parser.add_argument('--epoch', type=int, default=1000, help='Training epoch')
parser.add_argument('--batch', type=int, default=32, help='Mini batch size')
FLAGS, unparsed = parser.parse_known_args()
main()