Slide 9
Slide 9 text
9 ©2017 RISELab
Grid Search
tl;dr - Cross-product of all possible
configurations.
for rate in [0.1, 0.01, 0.001]:
for hidden_layers in [2, 3, 4]:
for param in ["a", "b", "c"]:
train_model(
rate,
hidden_layers,
param)
Benefit:
1. Explainable
2. Easily parallelizable
Problems:
Inefficient/expensive
⇐ 27 evaluations!