0% found this document useful (0 votes)
343 views7 pages

Quiz 3 - Recommendation Systems, Association Rule Mining - Machine Learning 3 - Ravi

Uploaded by

Lakshmi Dinakar
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)
343 views7 pages

Quiz 3 - Recommendation Systems, Association Rule Mining - Machine Learning 3 - Ravi

Uploaded by

Lakshmi Dinakar
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/ 7

10/11/2024, 18:09 Quiz 3 - Recommendation systems , Association rule mining: Machine Learning 3 - Olympus LMS

Go Back to Machine Learning 3

Course Content

Quiz 3 - Recommendation systems , Association rule mining


Type : Graded Quiz
Attempts : 1/1
Questions : 15
Time : 25m
Due Date : Nov 17, 11:59 PM IST

Your Marks : 15/15

Instructions

Attempt History

Attempt #1
Marks: 15
Nov 08, 7:13 AM

Q No: 1 Correct Answer


Marks: 1/1
The SVD can be seen as the decomposition of one complex transformation in 3 simpler
transformations. These transformations order are:

Rotation, Scaling and Rotation You Selected

Rotation, Scaling, Prediction

Rotation, Shrinking, Zooming

Scaling, Rotation and Rotation

Q No: 2 Correct Answer

https://pesedu.olympuslms.com/courses/118314/quizzes/1156378?module_item_id=6014663&pb_id=17941 1/7
10/11/2024, 18:09 Quiz 3 - Recommendation systems , Association rule mining: Machine Learning 3 - Olympus LMS

Marks: 1/1
Which of the following cannot be considered as an example of implicit rating

Rating given for an item You Selected

Time spent on a screen

Observation of user behavior by his watch history

Number of clicks on an item

Q No: 3 Correct Answer


Marks: 1/1
What does Apriori algorithm do?

It mines all the frequent patterns through pruning rules with lesser support You Selected

It mines all the frequent patterns through pruning rules with higher support

It mines all the infrequent patterns through pruning rules with lesser support

None of the given options

Q No: 4 Correct Answer


Marks: 1/1
Three major component of Apriori algorithm are:

Support , Confidence and Lift You Selected

Support, Probability, Odd

Likelihood, Probability, Lift

Support, Likelihood, Kappa

Q No: 5 Correct Answer


Marks: 1/1

https://pesedu.olympuslms.com/courses/118314/quizzes/1156378?module_item_id=6014663&pb_id=17941 2/7
10/11/2024, 18:09 Quiz 3 - Recommendation systems , Association rule mining: Machine Learning 3 - Olympus LMS

What do you mean by Support(A) ?

number of transactions containing A / Total number of transactions You Selected

Total number of transactions not containing A / Total number of transactions

Total number of transactions containing A

Total number of transactions not containing A

Q No: 6 Correct Answer


Marks: 1/1

1. Say the matrix A is decomposed by SVD in to U ,D and V

A= U*D*VT

Which of the following statement is NOT True

U corresponds to the Eigen vectors of A^TA You Selected

V corresponds to the Eigen vectors of A^TA

U corresponds to the Eigen vectors of AA^T

D Square corresponds to Eigen values of AA^T or A^TA

Q No: 7 Correct Answer


Marks: 1/1
In SVD approach, the left singular matrix contains the information of ________

User Features You Selected

Item Features

Singular values

Eigen values

https://pesedu.olympuslms.com/courses/118314/quizzes/1156378?module_item_id=6014663&pb_id=17941 3/7
10/11/2024, 18:09 Quiz 3 - Recommendation systems , Association rule mining: Machine Learning 3 - Olympus LMS

Q No: 8 Correct Answer


Marks: 1/1

What is the cosine similarity between the below two vectors:

Vec1 = [2, 3, 1, 6]

Vec2 = [1, 2, 3, 0]

Select all that apply.

0.42 You Selected

0.36

0.86

None

Q No: 9 Correct Answer


Marks: 1/1

For the user-item table below, find the Euclidean distance between user 1 and 2

Item Item Item


1 2 3

User 1 4 5 5

User
2 1 1
2

User
5 5 4
3

https://pesedu.olympuslms.com/courses/118314/quizzes/1156378?module_item_id=6014663&pb_id=17941 4/7
10/11/2024, 18:09 Quiz 3 - Recommendation systems , Association rule mining: Machine Learning 3 - Olympus LMS

6 You Selected

1.456

Q No: 10 Correct Answer


Marks: 1/1
An app store recommends a gaming app to a user because he recently installed a similar app.
This falls into what kind of recommendation system?

Content based You Selected

Collaborative

Popularity based

Hybrid

Q No: 11 Correct Answer


Marks: 1/1

For an E-commerce website, the below details are given.

User A likes product number 1, 2 and 3.

User B likes product number 6, 3, and 4.

And user C likes product number 1, 2 and 5.

If you use user-based collaborative filtering to recommend new products to a user. Which
product will be recommended to user C if he visits the e-commerce website?

https://pesedu.olympuslms.com/courses/118314/quizzes/1156378?module_item_id=6014663&pb_id=17941 5/7
10/11/2024, 18:09 Quiz 3 - Recommendation systems , Association rule mining: Machine Learning 3 - Olympus LMS

3 You Selected

Q No: 12 Correct Answer


Marks: 1/1
Let's say in a shopping store a new customer comes and he wants to buy shirts which are
trending this season. We recommend him the best-selling shirts without asking any details about
his favourite colours or price range. Which recommender uses the same principle to recommend
items?

Popularity Based Recommendation System You Selected

Content based recommendation system

Classification model

Clustering model

Q No: 13 Correct Answer


Marks: 1/1

Calculate cosine similarity between the following vectors A and B

A = [1, 7, 8, 4, 0, 4, 2, 0.3]

B = [4, 8, 3, 9, 5, 0.4, 3, 1]

https://pesedu.olympuslms.com/courses/118314/quizzes/1156378?module_item_id=6014663&pb_id=17941 6/7
10/11/2024, 18:09 Quiz 3 - Recommendation systems , Association rule mining: Machine Learning 3 - Olympus LMS

0.728 You Selected

0.638

0.456

.25

Q No: 14 Correct Answer


Marks: 1/1
Which of the following Recommendation System does not provide personalized
recommendations to a user

Popularity Based Recommendation System You Selected

Content based recommendation system

Classification model

All of these

Comments:
+ Add comments

Previous Next

© 2024 All rights reserved


Privacy · Terms

https://pesedu.olympuslms.com/courses/118314/quizzes/1156378?module_item_id=6014663&pb_id=17941 7/7

You might also like