This is a Convolutional Neural Network trained on the CIFAR-10 Dataset.
Run Powershell as Admin
using command
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
Install Python
choco install python3 git.install -y
Refresh env variables (PATH):
refreshenv
Close and reopen powershell
Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Add brew executables to path
export PATH="/usr/local/opt/python/libexec/bin:$PATH"
Install Python
brew install python git
Install pip
python -m pip install -U pip
Install python packages
pip install torch pillow jupyter torchvision numpy matplotlib
Clone the repo from github using
cd Documents
git clone https://github.com/Nittany-Data-Labs/AI-Workshop
cd AI-Workshop
Inside of the proper repository run
jupyter notebook
Visit GitHub and create your own repository
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin <YOUR GITHUB>
git push -u origin main
Removing the .git
repository. We are removing this so you can put it on your own github.
rm -rf .git
del .git
Note: If you are unable to delete it may be because you cloned using the ADMIN Powershell window