diff options
author | David Doan <daviddoan@davids-mbp-3.devices.brown.edu> | 2022-05-04 16:40:39 -0400 |
---|---|---|
committer | David Doan <daviddoan@davids-mbp-3.devices.brown.edu> | 2022-05-04 16:40:39 -0400 |
commit | c70019f1a6e03d4325881c5beeedb653a752c975 (patch) | |
tree | 192160d7cfc4a65f8bc27855a908220750929a41 /main.py | |
parent | 6d4c7a0608a91e3a94d1b174aa9094616c778cb6 (diff) |
added a dataset, tried testing (unsuccessfully)
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -42,7 +42,7 @@ def parse_args(): return parser.parse_args() def train(model): - for _ in hp.num_epochs: + for _ in range(hp.num_epochs): model.train_step() def main(): @@ -52,6 +52,7 @@ def main(): if os.path.exists(ARGS.style): ARGS.style = os.path.abspath(ARGS.style) os.chdir(sys.path[0]) + print('this is',ARGS.content) content_image = imread(ARGS.content) style_image = imread(ARGS.style) |