Commit fa7743b7 authored by Alex Tamkin's avatar Alex Tamkin Committed by Christopher Shallue
Browse files

Update configurations with label mapping for simulated data and new batch_size...

Update configurations with label mapping for simulated data and new batch_size and learning_rate from vizier studies.

PiperOrigin-RevId: 208902383
parent 85b5fc42
......@@ -45,6 +45,9 @@ def base():
"PC": 1, # Planet Candidate.
"AFP": 0, # Astrophysical False Positive.
"NTP": 0, # Non-Transiting Phenomenon.
"SCR1": 0, # TCE from scrambled light curve with SCR1 order.
"INV": 0, # TCE from inverted light curve.
"INJ1": 1, # Injected Planet.
},
},
# Hyperparameters for building and training the model.
......@@ -60,10 +63,10 @@ def base():
"pre_logits_dropout_rate": 0.0,
# Number of examples per training batch.
"batch_size": 64,
"batch_size": 256,
# Learning rate parameters.
"learning_rate": 1e-5,
"learning_rate": 2e-4,
"learning_rate_decay_steps": 0,
"learning_rate_decay_factor": 0,
"learning_rate_decay_staircase": True,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment