Skip to content
Snippets Groups Projects
Commit 97e5adf7 authored by Pat Alt's avatar Pat Alt
Browse files

cut down grid params for small datasets

parent 7f0b2188
No related branches found
No related tags found
1 merge request!8985 overshooting
......@@ -182,12 +182,13 @@ const GRID_SEARCH = "grid_search" ∈ ARGS
"Generator tuning parameters."
DEFAULT_GENERATOR_TUNING = (
Λ = [[0.1, 0.1, 0.05], [0.1, 0.1, 0.1], [0.1, 0.1, 0.5], [0.1, 0.1, 1.0]],
reg_strength = [0.0, 0.1, 0.25, 0.5, 1.0],
Λ=[[0.1, 0.1, 0.1], [0.1, 0.1, 0.5],],
reg_strength = [0.0, 0.1, 1.0],
opt = [
Descent(0.01),
Descent(0.05),
Descent(0.1),
Optimiser(ClipValue(0.01), Descent(0.01)),
Optimiser(ClipValue(0.05), Descent(0.05)),
],
decay = [(0.0, 1), (0.01, 1), (0.1, 1)],
)
......
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