Skip to content

Commit

Permalink
Change default activation and learning rate step
Browse files Browse the repository at this point in the history
  • Loading branch information
Wiebke committed Mar 7, 2024
1 parent 8e6e488 commit 02732a6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions assets/models.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,18 @@
"title": "Learning Rate",
"param_key": "learning_rate",
"value": 0.001,
"min": 0,
"max": 0.1,
"step": 0.0001,
"precision": 4,
"comp_group": "train_model"
},
{
"type": "dropdown",
"name": "activation",
"title": "Activation",
"param_key": "activation",
"value": "ReLU",
"value": "Sigmoid",
"data": [
{
"label": "ReLU",
Expand Down Expand Up @@ -621,14 +625,18 @@
"title": "Learning Rate",
"param_key": "learning_rate",
"value": 0.001,
"min": 0,
"max": 0.1,
"step": 0.0001,
"precision": 4,
"comp_group": "train_model"
},
{
"type": "dropdown",
"name": "activation",
"title": "Activation",
"param_key": "activation",
"value": "ReLU",
"value": "Sigmoid",
"data": [
{
"label": "ReLU",
Expand Down Expand Up @@ -1009,14 +1017,18 @@
"title": "Learning Rate",
"param_key": "learning_rate",
"value": 0.001,
"min": 0,
"max": 0.1,
"step": 0.0001,
"precision": 4,
"comp_group": "train_model"
},
{
"type": "dropdown",
"name": "activation",
"title": "Activation",
"param_key": "activation",
"value": "ReLU",
"value": "Sigmoid",
"data": [
{
"label": "ReLU",
Expand Down
2 changes: 1 addition & 1 deletion components/control_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ def layout():
placeholder="Select a model...",
),
),
dmc.Space(h=25),
dmc.Space(h=15),
html.Div(id="model-parameters"),
dcc.Store(id="model-parameter-values", data={}),
dmc.Space(h=25),
Expand Down

0 comments on commit 02732a6

Please sign in to comment.