Skip to content
Snippets Groups Projects
Commit bb53e417 authored by Tamino Huxohl's avatar Tamino Huxohl
Browse files

fix small bugs

parent 29ec133f
No related branches found
No related tags found
No related merge requests found
......@@ -269,5 +269,5 @@ if __name__ == "__main__":
args = parser.parse_args()
device = torch.device(args.device)
random_search = cGANRandomSearch(10, torch.device("cpu"), "tmp")
random_search = cGANRandomSearch(args.iterations, device, args.out_dir)
random_search.run()
......@@ -163,7 +163,7 @@ class RandomSearch:
self.logger.info(f"Random seed for iteration {i} is {seed}")
self.setup_run()
# self.training.run()
self.training.run()
score = self.eval_run()
self.logger.info(f"Iteration {i} has score {score:.6f}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment