Skip to content

Commit

Permalink
Merge pull request #157 from sillymultifora/patch-1
Browse files Browse the repository at this point in the history
Remove a solution in week_02_seminar.ipynb
  • Loading branch information
poedator authored Nov 2, 2024
2 parents e7942c4 + e33f1cb commit bcb16b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion week02_classification/seminar.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
"min_count = 10\n",
"\n",
"# tokens from token_counts keys that had at least min_count occurrences throughout the dataset\n",
"tokens = sorted(t for t, c in token_counts.items() if c >= min_count)#TODO<YOUR CODE HERE>\n",
"tokens = #TODO<YOUR CODE HERE>\n",
"\n",
"# Add a special tokens for unknown and empty words\n",
"UNK, PAD = \"UNK\", \"PAD\"\n",
Expand Down

0 comments on commit bcb16b5

Please sign in to comment.