Skip to content

Commit

Permalink
feat: add learning-rate option 0
Browse files Browse the repository at this point in the history
  • Loading branch information
bamdadfr committed Nov 17, 2021
1 parent a1e8487 commit 06632de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ <h1 class="l--page">Tinker With a
<label for="learningRate">Learning rate</label>
<div class="select">
<select id="learningRate">
<option value="0">0</option>
<option value="0.00001">0.00001</option>
<option value="0.0001">0.0001</option>
<option value="0.001">0.001</option>
Expand Down
2 changes: 1 addition & 1 deletion src/app/ui/select-card.ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ selectCardUi.placeholders = {
};

selectCardUi.options = {
learningRate: [0.00001, 0.0001, 0.001, 0.003, 0.01, 0.03, 0.1, 0.3, 1, 3, 10],
learningRate: [0, 0.00001, 0.0001, 0.001, 0.003, 0.01, 0.03, 0.1, 0.3, 1, 3, 10],
activation: ['relu', 'tanh', 'sigmoid', 'linear'],
regularization: ['none', 'L1', 'L2'],
regularizationRate: [0, 0.001, 0.003, 0.01, 0.03, 0.1, 0.3, 1, 3, 10],
Expand Down

0 comments on commit 06632de

Please sign in to comment.