mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2025-07-04 07:26:36 +00:00

* Set up basic test gh worklows * update file paths * env check * add env check * Update requirements.txt * simplify * upd
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 1,
|
|
"id": "67f6f7ed-b67d-465b-bf6f-a99b0d996930",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"[OK] Your Python version is 3.10.12\n",
|
|
"[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"
|
|
]
|
|
}
|
|
],
|
|
"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",
|
|
"version": "3.10.12"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 5
|
|
}
|