fastbook icon indicating copy to clipboard operation
fastbook copied to clipboard

The fastai book, published as Jupyter Notebooks

Results 180 fastbook issues
Sort by recently updated
recently updated
newest added

I'm running chapter 1 jupyter notebook on Google Colab. https://colab.research.google.com/github/fastai/fastbook/blob/master/01_intro.ipynb#scrollTo=v6on3VNgOPMr There are three problems with image we trying to get by path 'images/chapter1_cat_example.jpg'. 1. This path doesn't exist. Correct path...

Current call passes the function directly, which fails with message: ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) [](https://localhost:8080/#) in () ----> 1 encoder = create_body(resnet34, cut=-2) 1 frames [/usr/local/lib/python3.9/dist-packages/fastai/vision/learner.py](https://localhost:8080/#)...

Regenerating before making change to one of the notebooks. Surprisingly (or because of my lack of knowledge of how to use `nbdev`/`execnb` libs) current `read_nb()` function adds these unexpected keys...

* Add missing deps `execnb` and `nbformat` to `environment.yml` * Missing include in `clean.py` I was able to execute `clean.py` after these changes as follows: ``` $ conda env create...

This fixes the issue reported [here](https://forums.fast.ai/t/beginner-basics-of-fastai-pytorch-numpy-etc/96285/56) which is blocking running a cell in [chapter 1 of the book](https://github.com/fastai/fastbook/blob/master/01_intro.ipynb). Below is a screenshot of the cell in question. This seems to...

To Fixing the following error : ‘FileNotFoundError: [Errno 2] No such file or directory: ‘images/chapter1_cat_example.jpg’’ error

The line in chapter 4 when computing the accuracy is: ``` accuracy_3s,accuracy_7s,(accuracy_3s+accuracy_7s)/2 ``` Is `/2` appropriate here? It would seem that the accuracy should take into account the number of...