fastbook/clean/app_jupyter.ipynb
Jeremy Howard cf9fae191c clean
2020-11-29 10:40:59 -08:00

226 lines
3.5 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#hide\n",
"!pip install -Uqq fastbook\n",
"import fastbook\n",
"fastbook.setup_book()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from fastbook import *"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Appendix: Jupyter Notebook 101"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Introduction"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"1+1"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Writing"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"3/2"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Modes"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Other Important Considerations"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Markdown Formatting\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Italics, Bold, Strikethrough, Inline, Blockquotes and Links"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Headings"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Lists"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Code Capabilities"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Import necessary libraries\n",
"from fastai.vision.all import * \n",
"import matplotlib.pyplot as plt"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from PIL import Image"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"a = 1\n",
"b = a + 1\n",
"c = b + a + 1\n",
"d = c + b + a + 1\n",
"a, b, c ,d"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"plt.plot([a,b,c,d])\n",
"plt.show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"Image.open(image_cat())"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Running the App Locally"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Creating a Notebook"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Shortcuts and Tricks"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Command Mode Shortcuts"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Cell Tricks"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Line Magics"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%timeit [i+1 for i in range(1000)]"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}