[go: up one dir, main page]

0% found this document useful (0 votes)
219 views2 pages

CS-605-MJPLab Course On CS-602-MJ (Machine Learning)

Uploaded by

Status World
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
219 views2 pages

CS-605-MJPLab Course On CS-602-MJ (Machine Learning)

Uploaded by

Status World
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Savitribai Phule Pune University

M.Sc. Computer Science (From 2024-25) Sem-III


CS-605-MJP:Lab course on CS-602-MJ (Machine Learning)

No. of Credits:2 Teaching Scheme Examination Scheme


Practical: 4 Hrs/Week Continuous Evaluation:15 Marks
End Semester: 35 Marks
Prerequisite
 Programming in Python
 Data preprocessing methods
 Statistical methods (mean, median, mode etc.…)
 Data Visualization methods, tools, types
Objectives
 To implement machine learning algorithms for solving real life problems.
 To understand about the methods of deploying ML model.
 To understand Machine learning algorithm for predicting outcomes.
 Apply appropriate Machine Learning Methods and tools to analyze data, create models,
and identify insights that can lead to actionable results.
 To Implement neural networks (ANN, RNN and CNN)
Course Outcomes
On Completion of this course, student will be able to -
CO1: To Get Hands on machine learning model.
CO2: Able to estimate Machine Learning models efficiency using suitable metrics.
CO3: Able to analysis and make decision for critical problems.
CO4: Able to handle structured, unstructured as well as semi-structured data.
CO5: Implement ideas to design and develop Deep learning solutions for complex problems. .
Assign Assignment
No.
1 Create a multiple linear regression model for house price dataset divide dataset into
train and test data while giving it to model and predict prices of house.
2 Use dataset crash.csv is an accident survivor’s dataset portal for USA hosted by
data.gov. The dataset contains passengers age and speed of vehicle (mph) at the time
of impact and fate of passengers (1 for survived and 0 for not survived) after a crash.
use logistic regression to decide if the age and speed can predict the survivability of
the passengers.
3 Fit the simple linear regression and polynomial linear regression models to
Salary_positions.csv data. Find which one is more accurately fitting to the given data.
Also predict the salaries of level 11 and level 12 employees.
4 Write a python program to categorize the given news text into one of the available 20
categories of news groups, using multinomial Naïve Bayes machine learning model.
5 Implement Ridge Regression, Lasso regression, ElasticNet model using

SPPU M.Sc. Computer Science Part-II Syllabus 2024-25 16


boston_houses.csv and take only ‘RM’ and ‘Price’ of the houses. divide the data as
training and testing data. Fit line using Ridge regression and to find price of a house if
it contains 5 rooms. and compare results.
6 Write a python program to Implement Decision Tree classifier model onData which is
extracted from images that were taken from genuine and forged banknote-like
specimens.
(refer UCI dataset https://archive.ics.uci.edu/dataset/267/banknote+authentication)
7 Classify the iris flowers dataset using SVM and find out the flower type depending on
the given input data like sepal length, sepal width, petal length and petal width Find
accuracy of all SVM kernels.
8 Create KNN model on Indian diabetes patient’s database and predict whether a new
patient is diabetic (1) or not (0). Find optimal value of K.
9 Implement Non-linear regression model (Decision Tree,SVM,KNN)to predict the
consumption of petrol use petrolconsumption
dataset.(https://www.kaggle.com/code/ajinkyaa/linear-regression-petrol-consumption)
10 Take iris flower dataset and reduce 4D data to 2D data using PCA. Then train the
model and predict new flower with given measurements.
11 Use K-means clustering model and classify the employees into various income groups
or clusters. Preprocess data if require (i.e. drop missing or null values). Use elbow
method and Silhouette Score to find value of k.
12 The data set refers to clients of a wholesale distributor. It includes the annual
spending in monetary units on diverse product categories. Using data Wholesale
customer dataset compute agglomerative clustering to find out annual spending
clients in the same region.
https://archive.ics.uci.edu/dataset/292/wholesale+customers
13 Use Apriori algorithm on groceries dataset to find which items are brought together.
Use minimum support =0.25
14 Implement Ensemble ML algorithm on Pima Indians Diabetes Database with bagging
(random forest), boosting, voting and Stacking methods and display analysis
accordingly. Compare result.
15 Create a two layered neural network with relu and sigmoid activation function.
16 Create an ANN and train it on house price dataset classify the house price is above
average or below average.
17 Create a CNN model and train it on mnist handwritten digit dataset. Using model find
out the digit written by a hand in a given image.
Import mnist dataset from tensorflow.keras.datasets
18 Create RNN model and analyze the Google stock price dataset. Find out increasing or
decreasing trends of stock price for the next day.
ML Tool: Power BI public
Reference datasets:
https://www.kaggle.com/datasets/manmohan291/housepricedata.csv
https://www.kaggle.com/uciml/iris
https://www.kaggle.com/code/prasadperera/the-boston-housing-dataset/input

SPPU M.Sc. Computer Science Part-II Syllabus 2024-25 17

You might also like