Skip to content

M2 ICP1

Tarik Salay edited this page Dec 11, 2019 · 2 revisions

to have an introduction to Deep Learning programming on Keras. Before to that, we will introduce some of the applications of the Deep Learning in the area of vision and NLP.

Use Case Description: Predicting the diabetes disease

Programming elements: Keras Basics

Source Code: https://umkc.box.com/s/3cvfiwc81lhgygc67deyeqs8m858lld0

In class programming:

  1. Use the use case in the class: a. Add more Dense layers to the existing code and check how the accuracy changes.

  2. Change the data source to Breast Cancer dataset * available in the source folder and make required changes

  3. Normalize the data before feeding the data to the model and check how the normalization change your accuracy (code given below). from sklearn.preprocessing import StandardScaler

sc = StandardScaler()

Breast Cancer dataset is designated to predict if a patient has Malignant (M) or Benign = B cancer

Clone this wiki locally