Skip to content

Commit 0d3c6d0

Browse files
committed
assign question id 145 and fix typo in tests
1 parent 59827c4 commit 0d3c6d0

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
lines changed
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "X",
2+
"id": "145",
33
"title": "Adagrad Optimizer",
44
"difficulty": "easy",
55
"category": "Deep Learning",
File renamed without changes.
File renamed without changes.

questions/XX_adagrad-optimizer/tests.json renamed to questions/145_adagrad-optimizer/tests.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
{
77
"test": "print(adagrad_optimizer(np.array([1., 2.]), np.array([0.1, 0.2]), np.array([1., 1.]), 0.01, 1e-8))",
8-
"expected_output": "(array([0.999, 1.99804]), array([1.01, 1.04])"
8+
"expected_output": "(array([0.999, 1.99804]), array([1.01, 1.04]))"
99
},
1010
{
1111
"test": "print(adagrad_optimizer(np.array([1., 2.]), np.array([0., 0.2]), np.array([0., 1.]), 0.01, 1e-8))",

0 commit comments

Comments
 (0)