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

ML Tutorial 1

This document is a tutorial for a Machine Learning course at SJC Institute of Technology, covering key concepts such as types of Machine Learning, the Machine Learning pipeline, and the Bias-Variance Tradeoff. It includes practical exercises like calculating Mean Squared Error, implementing algorithms like K-Nearest Neighbors and Naïve Bayes, and applying statistical methods such as Chi-square tests and Z-score normalization. Additionally, it addresses data preprocessing, feature selection, and advanced techniques like Singular Value Decomposition and Principal Component Analysis.

Uploaded by

realstarpunk01
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)
10 views2 pages

ML Tutorial 1

This document is a tutorial for a Machine Learning course at SJC Institute of Technology, covering key concepts such as types of Machine Learning, the Machine Learning pipeline, and the Bias-Variance Tradeoff. It includes practical exercises like calculating Mean Squared Error, implementing algorithms like K-Nearest Neighbors and Naïve Bayes, and applying statistical methods such as Chi-square tests and Z-score normalization. Additionally, it addresses data preprocessing, feature selection, and advanced techniques like Singular Value Decomposition and Principal Component Analysis.

Uploaded by

realstarpunk01
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

||Jai Sri Gurudev||

SJC INSTITUTE OF TECHNOLOGY, CHICKKABALLPUR


Dept. of Computer Science and Design
Tutorial
Sub: Machine Learning(BCM601) Semester: 6 Date: 20/03/2025

Module 1: Introduction to Machine Learning

1. Define Machine Learning. Why is it important in modern applications?


2. Explain the different types of Machine Learning (Supervised, Unsupervised, Reinforcement
Learning) with examples.
3. Differentiate between Regression and Classification in Machine Learning.
4. Describe the Machine Learning pipeline and its key components.
5. Explain the concept of Bias-Variance Tradeoff and its impact on ML models.
6. Given a dataset with the following data points, calculate the Mean Squared Error (MSE):
Actual: [10, 15, 20, 25]
Predicted: [12, 14, 22, 26]
7. What is five-point summary and Box plot and also solve the given problem having a list
{13,11,2,3,4,8,9}
8. Write an algorithm to implement the K-Nearest Neighbors (KNN) classification technique.
9. Implement the Naïve Bayes classification algorithm for spam detection.
10. Explain the working of Support Vector Machines (SVM) with mathematical formulations.

Module 2: Understanding of Data

11. Explain the concept of Big Data and its characteristics (Volume, Variety, Velocity, Veracity, Value).
12. Describe the importance of data preprocessing and feature selection in ML models.
13. In a class of 50 boys and 50 girls Students and they registered for a course given below. Apply Chi-
square test and find out whether any difference exist between boys and girls for the course
registrations.

14. Compute the correlation coefficient for the given dataset:

x y

1 2

2 4

3 6
4 8

15. Perform Z-score normalization on the dataset {50, 60, 70, 80, 90}.
16. Solve the following system of equations using Gaussian Elimination:
3x + 4y = 10
2x + y = 5
17. Apply Singular Value Decomposition (SVD) on the given matrix:
|4 3|
|1 2|

18.Perform Principal Component Analysis (PCA) for the following dataset and compute the first principal
component:

Feature 1 Feature 2

2 3

4 6

19. Write an algorithm for feature scaling using Min-Max Normalization.


20.Find the LU decomposition for the given matrix

You might also like