All Projects → minireference → Nobslanotebooks

minireference / Nobslanotebooks

Licence: mit
Jupyter notebooks with exercises for the No bullshit guide to linear algebra.

Projects that are alternatives of or similar to Nobslanotebooks

Person remover
People removal in images using Pix2Pix and YOLO.
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Spark Py Notebooks
Apache Spark & Python (pySpark) tutorials for Big Data Analysis and Machine Learning as IPython / Jupyter notebooks
Stars: ✭ 1,338 (+1293.75%)
Mutual labels:  jupyter-notebook
Pythonplot.com
📈 Interactive comparison of Python plotting libraries for exploratory data analysis. Examples of using Pandas plotting, plotnine, Seaborn, and Matplotlib.
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Mimic Cxr
Code, documentation, and discussion around the MIMIC-CXR database
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Machinelearning
A repo with tutorials for algorithms from scratch
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Ngsim env
Learning human driver models from NGSIM data with imitation learning.
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
3dpeople Dataset
Visualize 3DPeople Dataset
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
How to do style transfer in tensorflow
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Python Cheatsheet
Basic Cheat Sheet for Python (PDF, Markdown and Jupyter Notebook)
Stars: ✭ 1,334 (+1289.58%)
Mutual labels:  jupyter-notebook
Ubernet
Demo for CVPR 2017 paper
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Bert Token Embeddings
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Rexgen direct
Template-free prediction of organic reaction outcomes
Stars: ✭ 95 (-1.04%)
Mutual labels:  jupyter-notebook
Ml At Work
電子書籍『仕事ではじめる機械学習』のサポートリポジトリです
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Gcp For Bioinformatics
GCP Essentials for Bioinformatics Researchers
Stars: ✭ 95 (-1.04%)
Mutual labels:  jupyter-notebook
Holiday Similarity
Finding similar images in the Holidays dataset
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Pytorch Pos Tagging
A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Objdet train tensorflow colab
Google Colab (Jupyter) notebook to retrain Object Detection Tensorflow model with custom dataset.
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Data Exploration
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Ijcai cup 2017
IJCAI-17 口碑商家客流量预测
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook
Ox Ipynb
org-mode exporter to Jupyter notebooks
Stars: ✭ 96 (+0%)
Mutual labels:  jupyter-notebook

No bullshit guide to linear algebra notebooks

Jupyter notebooks with exercises for the No bullshit guide to linear algebra.

Abstract

Linear algebra is the study of vectors and linear transformations. You may be familiar with vectors from learning about them in physics class, but in linear algebra vectors will play a central role so you'll get to know them very well, and also study the types of functions you can apply to vectors. In particular we'll study the linear transformations, which are functions that take vectors as inputs and produce vectors as outputs. Linear transformations can be represented by matrices, thus we can also say that linear algebra is the study of vectors and matrices.

Contents

Chapters overview

Video: https://www.youtube.com/watch?v=2G3PmEZI6n8
Notebook: Linear_algebra_chapters_overview.ipynb

Ch2: Definitions of vectors and matrices

Video: https://www.youtube.com/watch?v=5ohBydRZvIU
Notebook: chapter02_definitions.ipynb

Ch2: Linearity

Video: https://www.youtube.com/watch?v=WfrwVMTgrfc
Notebook: chapter02_linearity_intuition.ipynb

Ch3: Gauss-Jordan elimination and Reduced row echelon form

Video: https://www.youtube.com/watch?v=Lfz27_MK-5M
Notebook: chapter03_exercises.ipynb

Ch3: Problems

Notebook: chapter03_problems.ipynb

Ch4: Problems

Notebook: chapter04_problems.ipynb

Other stuff

cut_material/               Less interesting things lessons, and testing
   python_basics_zero_based_indexing.ipynb
   plotting_work.ipynb      example usage for plot_helpers
   Linear_algebra_overview_proj_example.ipynb   first draft of Overview notebook

extra/
   Determinants.ipynb                       Determinant formula from first principles
   Vector fields 2D.ipynb                   examples of vector fields (can be used for vector calc)
   jupyter widgets math demo.ipynb          example interactives in notebook
   python_basics_zero_based_indexing.ipynb  

requirements.txt            python packages required to tun these notebooks

util/                       Utility and support functions
   md_to_ipynb_helper.ipynb convert an outline (markdown list) to notebook cells
   notebook_helpers.py      used in above
   plot_helpers.py          functions for potting vectors, lines, and planes

Install

Create a virtual env and install the packages from requirements.txt:

virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt

Running

Start the jupyter notebook server using

source pydev/bin/activate
jupyter notebook

then click on the link printed in the terminal to open access the notebook interface in your web browser.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].