Day 3
Day 3
Shipping 2/23
Todays Plan: Setup Ubuntu from USB, Install Miniconda, Create a Conda Environment, Run Multi-Image Visualization Homework on Ubuntu, Discuss U-Net Training Model Implementation (Blake will present his U-Net implementation).
What is Ubuntu ? and why Linux for ml ?
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
source ~/.bashrc
conda --version
source ~/miniconda3/bin/activate (if conda not found)
To Install
Now we set up a conda environment
source ~/.bashrc
conda create -n impact python=3.10
conda activate impact
conda install -y numpy matplotlib scikit-learn tqdm jupyter
pip install tensorflow
jupyter notebook