mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-05 18:30:44 +00:00
Update pyproject.toml and 02_production.ipynb with new dependencies and code adjustments
This commit is contained in:
parent
19d5b7850a
commit
073f2eb9c2
@ -2,24 +2,12 @@
|
|||||||
"cells": [
|
"cells": [
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": null,
|
"execution_count": 21,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
"#hide\n",
|
"#hide\n",
|
||||||
"! [ -e /content ] && pip install -Uqq fastbook\n",
|
"from fastbook.utils import *\n",
|
||||||
"import fastbook\n",
|
|
||||||
"fastbook.setup_book()"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"cell_type": "code",
|
|
||||||
"execution_count": null,
|
|
||||||
"metadata": {},
|
|
||||||
"outputs": [],
|
|
||||||
"source": [
|
|
||||||
"#hide\n",
|
|
||||||
"from fastbook import *\n",
|
|
||||||
"from fastai.vision.widgets import *"
|
"from fastai.vision.widgets import *"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -384,7 +372,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": null,
|
"execution_count": 7,
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"hide_input": true
|
"hide_input": true
|
||||||
},
|
},
|
||||||
@ -396,9 +384,21 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": null,
|
"execution_count": 8,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [
|
||||||
|
{
|
||||||
|
"ename": "NameError",
|
||||||
|
"evalue": "name 'download_url' is not defined",
|
||||||
|
"output_type": "error",
|
||||||
|
"traceback": [
|
||||||
|
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
|
||||||
|
"\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
|
||||||
|
"Cell \u001b[0;32mIn[8], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m dest \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mimages/grizzly.jpg\u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[0;32m----> 2\u001b[0m \u001b[43mdownload_url\u001b[49m(ims[\u001b[38;5;241m0\u001b[39m], dest)\n",
|
||||||
|
"\u001b[0;31mNameError\u001b[0m: name 'download_url' is not defined"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
"source": [
|
"source": [
|
||||||
"dest = 'images/grizzly.jpg'\n",
|
"dest = 'images/grizzly.jpg'\n",
|
||||||
"download_url(ims[0], dest)"
|
"download_url(ims[0], dest)"
|
||||||
@ -2004,9 +2004,21 @@
|
|||||||
"split_at_heading": true
|
"split_at_heading": true
|
||||||
},
|
},
|
||||||
"kernelspec": {
|
"kernelspec": {
|
||||||
"display_name": "Python 3",
|
"display_name": "Python 3 (ipykernel)",
|
||||||
"language": "python",
|
"language": "python",
|
||||||
"name": "python3"
|
"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.11.10"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nbformat": 4,
|
"nbformat": 4,
|
||||||
|
0
fastbook/__init__.py
Normal file
0
fastbook/__init__.py
Normal file
@ -10,7 +10,12 @@ requires-python = ">=3.6"
|
|||||||
license = {text = "custom"}
|
license = {text = "custom"}
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"azure-cognitiveservices-search-imagesearch>=2.0.1",
|
||||||
|
"fastai==2.7.18",
|
||||||
|
"graphviz>=0.20.3",
|
||||||
|
"ipywidgets>=8.1.5",
|
||||||
"jupyterlab>=2.3.2",
|
"jupyterlab>=2.3.2",
|
||||||
|
"nbdev>=2.3.31",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
@ -31,3 +36,7 @@ audience = "Developers"
|
|||||||
language = "English"
|
language = "English"
|
||||||
status = 2
|
status = 2
|
||||||
copyright = "fast.ai"
|
copyright = "fast.ai"
|
||||||
|
|
||||||
|
|
||||||
|
[tool.setuptools]
|
||||||
|
packages = ["fastbook"]
|
||||||
|
Loading…
Reference in New Issue
Block a user