Machine learning iris | Computer Science homework help
Write a program to apply Machine Learning classification models to Iris flowers dataset. Follow the steps: 1.Download the iris.csv file (example: https://gist.github.com/netj/8836201). From this file the label (target) is defined with the ‘variety’ column and the features with ‘epal.length’, ‘sepal.width’, ‘petal.length’, ‘petal.width’ columns.2.Preprocess the iris.csv file by label encoding the target ‘variety’ column.3.Apply the following Machine Learning classification models: K Nearest Neighbors and Random Forests4.Calculate […]