Winter 2022 UCI CS273A Machine Learning Final Project
- An NVIDIA GPU
- Enable GPU with docker
- Familiar with Pytorch
- Hardware: NVIDIA GEFORCE RTX 3060
cd cifar10-uci-cs273a-final-project
docker build . -t final
docker run --gpus all -v $(pwd)/.:/source/. -it final /bin/bash
python3 train.py
We implement 4 different deep learning neaural network: basic CNN, RestNet, GoogleNet, VGGNet to do the image classfication for CIFAR10. Please check the source code for further imformation.
python3 test.py