Skip to content

Experiments for machine learning lab (ETCS 402) have been added here.

Notifications You must be signed in to change notification settings

pavleen14/Machine-Learning-Lab

Repository files navigation

Machine Learning Lab Experiments - Sem 8

  1. Make a decision tree classifier on Breast Cancer dataset using Scikit learn in python.
  2. Study and implement the Naive bayes on a breast cancer dataset using Scikit learn in python.
  3. Estimate the accuracy of decision classifier on breast cancer dataset using 5 fold cross validation.
  4. Estimate the precision recall accuracy f-measure of the decision classifier on a breast cancer dataset using 10 fold cross validation.
  5. Develop a machine learning method to classify your incoming mails.
  6. Develop a machine learning method to predict stock price based on past price variation.
  7. Develop a machine learning method to predict how people will rate movies, books etc.
  8. Select two datasets. Each dataset should contain examples from multiple classes. For training purposes assume that the class label of example is unknown. Apply the k-means algorithm and apply it to the selected data. Evaluate the process by measuring the sum of euclidean distance of each example from its class center. Test the performance of the algorithm as a function of the parameter k.