0% found this document useful (0 votes)
64 views1 page

Quiz 1 (Section D)

This document contains a quiz for an Artificial Intelligence course at Sir Syed University of Engineering & Technology. The quiz has two questions - the first asks students to cluster eight points into three clusters using a K-Means algorithm, and the second asks students to explain concepts related to machine learning such as overfitting, underfitting, classification vs regression, supervised vs unsupervised learning, traditional programming vs machine learning, and KNN as a lazy learning algorithm. The document provides the necessary information for students to answer the first question, including initial cluster centers and a distance function definition.

Uploaded by

Kanwar Zain
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)
64 views1 page

Quiz 1 (Section D)

This document contains a quiz for an Artificial Intelligence course at Sir Syed University of Engineering & Technology. The quiz has two questions - the first asks students to cluster eight points into three clusters using a K-Means algorithm, and the second asks students to explain concepts related to machine learning such as overfitting, underfitting, classification vs regression, supervised vs unsupervised learning, traditional programming vs machine learning, and KNN as a lazy learning algorithm. The document provides the necessary information for students to answer the first question, including initial cluster centers and a distance function definition.

Uploaded by

Kanwar Zain
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/ 1

SIR SYED UNIVERSITY OF ENGINEERING & TECHNOLOGYSOFTWARE

ENGINEERING DEPARTMENT
FALL 2022
ARTIFICIAL INTELLIGENCE (SWE-314T)
Quiz 1
Date: ______________________ Batch: 2020F
Section: ___________________ Max Marks: 10
Roll No.: ____________________ Semester: 5th

Question 1:
Cluster the following eight points (with (x, y) representing locations) into three clusters:
A1(2, 10), A2(2, 5), A3(8, 4), A4(5, 8), A5(7, 5), A6(6, 4), A7(1, 2), A8(4, 9)

Initial cluster centers are: A1(2, 10), A4(5, 8) and A7(1, 2).
The distance function between two points a = (x1, y1) and b = (x2, y2) is defined as-
Ρ(a, b) = |x2 – x1| + |y2 – y1|

Use K-Means Algorithm to find the three cluster centers after the second iteration.

Question 2:
Explain the concept of
 Overfitting and Under fitting in machine learning
 Classification and Regression
 Supervised and Unsupervised machine learning algorithm
 Traditional programming and machine learning
 KNN algorithm as a lazy learning algorithm.

You might also like