Template for the jupyter notebook to use in order to submit CSEN1022 assignments
Data
├── test
│ └── airplane (1000 images)
│ └── bird (1000 images)
│ └── truck (1000 images)
└── train
└── airplane (5000 images)
└── bird (5000 images)
└── truck (5000 images)
Assignment_3.ipynb ── This is the only file that you need to work on and submit
This repository requires that you have:-
Install Anaconda then just run Jupyter.
Install Python3+
Make sure Python and pip are added to environment variables
From your Linux, Mac, or Windows terminal, verify that both are installed correctly.
$ python --version
$ pip --version
Using the same terminal install numpy, matplotlib, pillow and notebook
$ pip install numpy matplotlib pillow notebook
Create a New Notebook from here Google Colab
Upload the Data.zip folder
from google.colab import files
uploaded = files.upload()
Extract the zipped folder into the cloud
!unzip [foldername].zip
From your terminal, run this command then navigate to the Assignment.ipynb file
jupyter notebook
BSD 3-Clause "New" or "Revised" License