2024-01-21 20:16:19 -06:00
{
"cells": [
2024-03-19 09:26:26 -05:00
{
"cell_type": "markdown",
"id": "c31e08b0-f551-4d67-b95e-41f49de3b392",
"metadata": {},
"source": [
"<font size=\"1\">\n",
"Supplementary code for \"Build a Large Language Model From Scratch\": <a href=\"https://www.manning.com/books/build-a-large-language-model-from-scratch\">https://www.manning.com/books/build-a-large-language-model-from-scratch</a> by <a href=\"https://sebastianraschka.com\">Sebastian Raschka</a><br>\n",
"Code repository: <a href=\"https://github.com/rasbt/LLMs-from-scratch\">https://github.com/rasbt/LLMs-from-scratch</a>\n",
"</font>"
]
},
2024-01-21 20:16:19 -06:00
{
"cell_type": "code",
"execution_count": 1,
"id": "67f6f7ed-b67d-465b-bf6f-a99b0d996930",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
2024-03-18 08:00:49 -05:00
"[OK] Your Python version is 3.10.12\n",
2024-03-18 11:58:37 -05:00
"[OK] numpy 1.26.0\n",
"[OK] matplotlib 3.8.2\n",
"[OK] jupyterlab 4.0.6\n",
"[OK] tensorflow 2.15.0\n",
"[OK] torch 2.2.1\n",
"[OK] tqdm 4.66.1\n",
"[OK] tiktoken 0.5.1\n"
2024-01-21 20:16:19 -06:00
]
}
],
"source": [
"from python_environment_check import check_packages, get_requirements_dict\n",
"\n",
"d = get_requirements_dict()\n",
"check_packages(d)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
2024-03-19 09:26:26 -05:00
"version": "3.10.6"
2024-01-21 20:16:19 -06:00
}
},
"nbformat": 4,
"nbformat_minor": 5
}