Skip to content

Commit c7b3e2a

Browse files
Merge pull request OpenMined#1739 from npinto/patch-1
FIX: typo in part 2 tutorial
2 parents 41a5254 + d5f1c22 commit c7b3e2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/tutorials/Part 2 - Intro to Federated Learning.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
" # 2) make a prediction\n",
7575
" pred = model(data)\n",
7676
"\n",
77-
" # 3) calculate how much the missed\n",
77+
" # 3) calculate how much we missed\n",
7878
" loss = ((pred - target)**2).sum()\n",
7979
"\n",
8080
" # 4) figure out which weights caused us to miss\n",
@@ -192,7 +192,7 @@
192192
" # 2) make a prediction\n",
193193
" pred = model(data)\n",
194194
"\n",
195-
" # 3) calculate how much the missed\n",
195+
" # 3) calculate how much we missed\n",
196196
" loss = ((pred - target)**2).sum()\n",
197197
"\n",
198198
" # 4) figure out which weights caused us to miss\n",

0 commit comments

Comments
 (0)