Skip to content

Commit

Permalink
remove duplicate import
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Mar 20, 2024
1 parent ff26d9a commit 83ea93a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ch05/01_main-chapter-code/ch05.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"name": "stdout",
"output_type": "stream",
"text": [
"numpy version: 1.25.2\n",
"matplotlib version: 3.7.2\n",
"numpy version: 1.25.2\n",
"tiktoken version: 0.5.1\n",
Expand All @@ -42,7 +41,7 @@
"source": [
"from importlib.metadata import version\n",
"\n",
"pkgs = [\"numpy\", \"matplotlib\", \"numpy\", \"tiktoken\", \"torch\"]\n",
"pkgs = [\"matplotlib\", \"numpy\", \"tiktoken\", \"torch\"]\n",
"for p in pkgs:\n",
" print(f\"{p} version: {version(p)}\")"
]
Expand Down

0 comments on commit 83ea93a

Please sign in to comment.