Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 4.79 KB

README.md

File metadata and controls

28 lines (24 loc) · 4.79 KB

Specialization Courses of Tensorflow2 for Deep Learning

Assignments of TensorFlow 2 for Deep Learning Specialization program by Imperial London College

CONTENT

COURSE 1: Getting Started with TensorFlow2

  • 01-convolutional-neural-network: It is first coding assignment in the project. It includes additional iterations such as increasing number of epochs, adding Dropout layer (dropout = 0.5), building smaller model, and changing padding type. MNIST dataset is used.
  • 02-model-validation: It is second coding assignment in the course. Regularization techniques and callbacks methods of Keras library are studied. Iris dataset is used for the assignment.
  • 03-Capstone-project: It is final project of the course. SVHN dataset is used to train an MLP model and a CNN model using their guidelines. Previously studied techniques are implemented to the project.

COURSE 2: Customizing Models with Tensorflow2