mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-04 18:00:48 +00:00
start fastbook with faststart
This commit is contained in:
parent
2c5db23a34
commit
9190bc9165
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@ __pycache__/
|
||||
.last_checked
|
||||
.gitconfig
|
||||
.ipynb_checkpoints/
|
||||
env
|
12
README.md
12
README.md
@ -16,6 +16,18 @@ Instead of cloning this repo and opening it on your machine, you can read and wo
|
||||
|
||||
You can open any chapter of the book in Colab by clicking on one of these links: [Introduction to Jupyter](https://colab.research.google.com/github/fastai/fastbook/blob/master/app_jupyter.ipynb) | [Chapter 1, Intro](https://colab.research.google.com/github/fastai/fastbook/blob/master/01_intro.ipynb) | [Chapter 2, Production](https://colab.research.google.com/github/fastai/fastbook/blob/master/02_production.ipynb) | [Chapter 3, Ethics](https://colab.research.google.com/github/fastai/fastbook/blob/master/03_ethics.ipynb) | [Chapter 4, MNIST Basics](https://colab.research.google.com/github/fastai/fastbook/blob/master/04_mnist_basics.ipynb) | [Chapter 5, Pet Breeds](https://colab.research.google.com/github/fastai/fastbook/blob/master/05_pet_breeds.ipynb) | [Chapter 6, Multi-Category](https://colab.research.google.com/github/fastai/fastbook/blob/master/06_multicat.ipynb) | [Chapter 7, Sizing and TTA](https://colab.research.google.com/github/fastai/fastbook/blob/master/07_sizing_and_tta.ipynb) | [Chapter 8, Collab](https://colab.research.google.com/github/fastai/fastbook/blob/master/08_collab.ipynb) | [Chapter 9, Tabular](https://colab.research.google.com/github/fastai/fastbook/blob/master/09_tabular.ipynb) | [Chapter 10, NLP](https://colab.research.google.com/github/fastai/fastbook/blob/master/10_nlp.ipynb) | [Chapter 11, Mid-Level API](https://colab.research.google.com/github/fastai/fastbook/blob/master/11_midlevel_data.ipynb) | [Chapter 12, NLP Deep-Dive](https://colab.research.google.com/github/fastai/fastbook/blob/master/12_nlp_dive.ipynb) | [Chapter 13, Convolutions](https://colab.research.google.com/github/fastai/fastbook/blob/master/13_convolutions.ipynb) | [Chapter 14, Resnet](https://colab.research.google.com/github/fastai/fastbook/blob/master/14_resnet.ipynb) | [Chapter 15, Arch Details](https://colab.research.google.com/github/fastai/fastbook/blob/master/15_arch_details.ipynb) | [Chapter 16, Optimizers and Callbacks](https://colab.research.google.com/github/fastai/fastbook/blob/master/16_accel_sgd.ipynb) | [Chapter 17, Foundations](https://colab.research.google.com/github/fastai/fastbook/blob/master/17_foundations.ipynb) | [Chapter 18, GradCAM](https://colab.research.google.com/github/fastai/fastbook/blob/master/18_CAM.ipynb) | [Chapter 19, Learner](https://colab.research.google.com/github/fastai/fastbook/blob/master/19_learner.ipynb) | [Chapter 20, conclusion](https://colab.research.google.com/github/fastai/fastbook/blob/master/20_conclusion.ipynb)
|
||||
|
||||
# FastStart
|
||||
## Basic Windows or Mac Computer
|
||||
If you are running this in basic computer and you are using pip here is what you should do to run this book.
|
||||
For mac or linux
|
||||
```bash
|
||||
os_linux_mac_start
|
||||
```
|
||||
|
||||
For Windows
|
||||
```bash
|
||||
os_win_start.ps1
|
||||
```
|
||||
|
||||
## Contributions
|
||||
|
||||
|
9
os_linux_mac_start.sh
Normal file
9
os_linux_mac_start.sh
Normal file
@ -0,0 +1,9 @@
|
||||
python3 -m venv env
|
||||
|
||||
source env/bin/activate
|
||||
|
||||
python3 -m pip --upgrade pip
|
||||
|
||||
pip install -r requirements.txt
|
||||
|
||||
jupyter notebook --no-browser
|
9
os_win_start.ps1
Normal file
9
os_win_start.ps1
Normal file
@ -0,0 +1,9 @@
|
||||
python3 -m venv env
|
||||
|
||||
.\env\Scripts\Activate.ps1
|
||||
|
||||
python3 -m pip install --upgrade pip
|
||||
|
||||
pip install -r .\requirements.txt
|
||||
|
||||
jupyter notebook --no-browser
|
BIN
requirements.txt
BIN
requirements.txt
Binary file not shown.
Loading…
Reference in New Issue
Block a user