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

cgan random search now includes scatter correction as a parameter

parent e6dca898
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ class cGANRandomSearch(RandomSearch):
self.param_sampler["patch_offset"] = ChoiceSampler([0])
self.param_sampler["patch_size"] = ChoiceSampler([32, 64])
self.param_sampler["patch_number"] = DependentChoiceSampler(patch_number)
self.param_sampler["scatter_correction"] = ChoiceSampler([False])
self.param_sampler["scatter_correction"] = ChoiceSampler([False, True])
self.param_sampler["shuffle"] = ChoiceSampler([False, True])
self.param_sampler["normalization"] = ChoiceSampler(
[MeanNormTransform(), MaxNormTransform(), GaussianNormTransform()]
......
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