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

CS3491 Set7

It's a model question paper.

Uploaded by

hari99hkm2004
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)
37 views2 pages

CS3491 Set7

It's a model question paper.

Uploaded by

hari99hkm2004
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

B.E / B.Tech.

PRACTICAL END SEMESTER EXAMINATIONS, APRIL/MAY 2023


Fourth Semester

CS3491 ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING

(Regulations 2021)

Time : 3 Hours Answer any one Question Max. Marks 100

Aim/Principle/Apparatus Tabulation/Circuit/ Calculation Viva-Voce Record Total


required/Procedure Program/Drawing & Results
20 30 30 10 10 100

1. Write a program to implement the Uninformed strategy – Depth First Search considering the
following graph

graph = {'A': ['B', 'C'], 'B':['D'], 'C':[], 'D':[]}

2. Write a program to implement the Uninformed strategy – Breadth-First Search considering the
following graph

graph = {'Q': ['P', 'C'], 'R':['D'], 'C':[], 'P':[]}

3. Write a program to implement the Uninformed strategy – Uniform Search

4. Write a program to implement the A* algorithm to find the shortest path from source to all
vertices.

5. Write a program to implement Naive Bayes models for the following problem

 Assume we have to find the probability of the randomly picked card to be king given that
it is a face card.

6. Write a program to implement Bayesian Network that will model the performance of a student on
an exam.

7. Write a program to plot linear regression for Weather Conditions using the dataset Weather
Conditions in World War Two plotting the maximum and minimum temperature.

Page 1 of 2
8. Write a program to implement the random forest classifier for the following dataset

https://www.kaggle.com/datasets/elikplim/car-evaluation-data-set

9. Write a program to implement the SVM using the following dataset

https://www.kaggle.com/mltuts/social-network-ads

10. Write a program to implement Averaging method under ensembling techniques.

11. Write a program to implement K-means clustering algorithm

12. Write a program to implement density-based spatial clustering.

13. Write a program to implement EM algorithm for Bayesian networks

14. Write a program to build simple Neural Network models using Pytorch

15. Write a program to build a deep learning model using Keras Model

Page 2 of 2

You might also like