: an Intro to Neural Networks (ANNs)
from pathlib import Path
DATA_DIR = Path("/kaggle/input")
if (DATA_DIR / "ucfai-core-sp18-neural-nets-lecture").exists():
DATA_DIR /= "ucfai-core-sp18-neural-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-neural-nets-lecture/data
DATA_DIR = Path("data")