Skip to content

Latest commit

 

History

History
82 lines (66 loc) · 2.87 KB

README.md

File metadata and controls

82 lines (66 loc) · 2.87 KB

ml-notebooks

My Machine Learning Notebooks and Experimentation

Setup

Install Conda

mkdir -p ~/miniconda3
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh -o ~/miniconda3/miniconda.sh
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
rm -rf ~/miniconda3/miniconda.sh

Install Just

brew install just

clone with git lfs

brew install git-lfs
  • clone this repo
git clone git@github.com:mudiarto/ml-notebooks.git
cd ml-notebooks

Run just commands

  • just to see all commands
  • just conda-init
  • just env-init
  • conda activate ml-notebooks

Usage

  • list all notebooks: just list
  • create/edit notebook: just edit <notebook-name>
  • run notebook as app: just run <notebook-name>

References, Links

Collection of links found that maybe useful for learning and reference. Currently not on particular order, will be organized later.

NN

PyTorch

Python