summaryrefslogtreecommitdiff
path: root/cli/app/search/json.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-16 02:22:03 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-16 02:22:03 +0100
commit6e96d6198f5a7726e135ebae5228646ca8a22f2e (patch)
tree738cc489c22cf8b839808380290400bcc396b25f /cli/app/search/json.py
parentad434493fe0203e632d7e7abeae0ce339d0a26bb (diff)
less crazy iterations... and sorting
Diffstat (limited to 'cli/app/search/json.py')
-rw-r--r--cli/app/search/json.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/app/search/json.py b/cli/app/search/json.py
index ea70fd6..c50d716 100644
--- a/cli/app/search/json.py
+++ b/cli/app/search/json.py
@@ -16,7 +16,7 @@ def make_params_latent(tag):
"out_dataset": os.path.join(app_cfg.DIR_INVERSES, tag, "dataset.latent.hdf5"),
"inv_layer": "latent",
"decay_lr": True,
- "inv_it": 15000,
+ "inv_it": 5000,
"generator_path": "https://tfhub.dev/deepmind/biggan-512/2",
"attention_map_layer": "Generator_2/attention/Softmax:0",
"pre_trained_latent": False,
@@ -68,7 +68,7 @@ def make_params_dense(tag, folder_id):
"dataset": os.path.join(app_cfg.DIR_INVERSES, tag, "dataset.latent.hdf5"),
"inv_layer": "Generator_2/G_Z/Reshape:0",
"decay_lr": False,
- "inv_it": 15000,
+ "inv_it": 5000,
"generator_path": "https://tfhub.dev/deepmind/biggan-512/2",
"attention_map_layer": "Generator_2/attention/Softmax:0",
"pre_trained_latent": True,