Skip to content

Commit 2d0a3de

Browse files
committed
[skip ci] Remove placeholder comments
1 parent 47826a5 commit 2d0a3de

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

32_language_modeling_1.ipynb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@
192192
"metadata": {},
193193
"outputs": [],
194194
"source": [
195-
"#% Student code\n",
196195
"from collections import defaultdict\n",
197196
"\n",
198197
"bigrams = defaultdict(int)\n",
@@ -294,7 +293,6 @@
294293
"metadata": {},
295294
"outputs": [],
296295
"source": [
297-
"#% Student code\n",
298296
"for w in words:\n",
299297
" chs = ['.'] + list(w) + ['.']\n",
300298
" for ch1, ch2 in zip(chs, chs[1:]):\n",

0 commit comments

Comments
 (0)