Skip to content

Latest commit

 

History

History
106 lines (72 loc) · 4.88 KB

README.md

File metadata and controls

106 lines (72 loc) · 4.88 KB

Notes, code snippets and scripts from "Machine Learning with PyTorch and Scikit-Learn" by Sebastian Raschka

Here are my personal notes, scripts and code snippets I've collected in the course of reading this book. The publication puts a lot of emphasis on the practical side of machine learning while attempting to cover the theory and stat fundamentals behind machine learning as deeply as possible. A great reading for anyone interested in getting started with machine learning engineering. Below I provide an overview of the chapters as per the book's table of contents linking each specific python file.

NOTE: No python notebooks have been used in here seeing them as unnecessary and an annyoing complication in terms of setup. Instead, I consider a python venv + the use of sys args enough to run the scripts and see what they do. If you really can't do without, refer the author's repository.

Setup

$ python -m venv venv && source ./venv/bin/activate
(venv) $ pip install -r requirements.txt

Usage

$ python ./ch<2..=19>/main.py <function_to_execute_from_file>
 $ python ./ch12/main.py torch_datasets

Overview