MortenTabaka / Deep-learning-exercises-with-TensorFlow2

The repository contains three deep learning models created for Kaggle and PASCAL datasets.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Machine learning excersises

1. Download datasets

All datasets must be downloaded to ./data/

Run mkdir data in working directory or in Python:

if not os.path.exists('./data'):
    os.mkdir('./data')

2. Create Anaconda Environment

  • To install Anaconda follow Anaconda documentation
  • Open terminal in project directory and run conda env create --name CHOSEN_ENV_NAME --file tf2.yml or conda create --name CHOSEN_ENV_NAME --file pkgs.txt
  • Run environment by conda activate CHOSEN_ENV_NAME
  • Run Jupyter by jupyter-notebook
  • Open and run notebooks

About

The repository contains three deep learning models created for Kaggle and PASCAL datasets.

License:MIT License


Languages

Language:HTML 52.3%Language:Jupyter Notebook 47.7%