Lab3 - Mahmooduddin/CS5590-Python GitHub Wiki
1)Pick any dataset from the dataset sheet in class sheet and make one prediction model using your imagination with Linear regression.
Task#1_SourceCode
2) Implement Kmeans clustering on customers.csv file provided into five clusters.
Task#2_SourceCode
Implement SVM classification,
1)Choose one of the dataset using the datasets features in the scikit-learn(you should not select the same dataset in the class)
2)Load the dataset
3)According to your dataset, split the data to 20% testing data, 80% training data(you can also use any other number)
4)Fit the model on the training data
5)First apply linear kernel
6)Apply the accuracy
7)Then apply RBF kernel instead of linear
8)Report your view if changing the kernel affect the accuracy of your model
##