Login using Social Account
     Continue with GoogleLogin using your credentials
First, we will import the modules that we will require for this project.
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
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...