Project- Iris Flowers Classification using Deep Learning & Keras

3 / 17

Keras Project - Iris Flower Identification - Import the required Modules

First, we will import the modules that we will require for this project.

INSTRUCTIONS
  • Import Numpy as np, Pandas as pd, Tensorflow as tf. From Tensorflow, import Keras:

    import << your code goes here >> as np
    import << your code goes here >> as pd
    import << your code goes here >> as tf
    from tensorflow import << your code goes here >>
    
  • From Sklearn's datasets, import load_iris. From Sklearn's model_selection, import train_test_split

    from sklearn.datasets import << your code goes here >>
    from sklearn.<< your code goes here >> import train_test_split
    
  • Finally, import Matplotlib, and Pyplot as plt

    import << your code goes here >>
    import matplotlib.<< your code goes here >> as plt
    
Get Hint See Answer


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...