: Deconvoluting Convolutional Neural Networks

from pathlib import Path

DATA_DIR = Path("/kaggle/input")
if (DATA_DIR / "ucfai-core-sp18-conv-nets-lecture").exists():
    DATA_DIR /= "ucfai-core-sp18-conv-nets-lecture"
else:
    # You'll need to download the data from Kaggle and place it in the `data/`
    #   directory beside this notebook.
    # The data should be here: https://kaggle.com/c/ucfai-core-sp18-conv-nets-lecture/data
    DATA_DIR = Path("data")

Other Meetings in this Series

Read more

We'll take what we learned last week and actually write up a Neural Network to train on the MNIST dataset, to recognize hand-written digits with about 92% accuracy.

Read more

We're filling this out!

Contributing Authors