pete88b / deep_learning_with_python

Study notes: Deep Learning with Python, Second Edition François Chollet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Study notes: Deep Learning with Python

Working through Second Edition François Chollet

Exploring fit_residual

The fit_residual idea is to build a model that has direct access to baseline results - in the hope that the model can learn to correct the errors of the baseline with a result that is;

  • more accurate than without fit_residual and/or
  • achieved with less compute / smaller models.

i.e. this is feature engineering and problem framing engineering to inject useful assumptions into the model.

Anaconda environment creation

I use this for trying things out on my CPU-only windows machine.

conda create -n tf python==3.9 -y
conda activate tf
pip install tensorflow
pip install nbdev jupyterlab pandas matplotlib
pip install --upgrade jupyter notebook

About

Study notes: Deep Learning with Python, Second Edition François Chollet

License:Apache License 2.0


Languages

Language:Jupyter Notebook 100.0%Language:Python 0.0%