AIML
AIML
Write a code to find the shortest path between two points by evaluating the cost function of each possible path
Develop a code by implementing the Uninformed search algorithm- DFS
Develop a code by implementing the Informed search algorithm- A*
Develop a simple task that uses a limited amount of memory and is suitable for large search spaces.
Develop a code by implementing the Informed search algorithm- Memory Bounded A*
Develop a code by implementing the Analyzation of data set using naïve Bayes models
Develop a code by implementing the probability relationship check between two dataset using Bayesian Networks
Develop a code to understand and predict an outcome variable based on the input Regression models.
Develop a code to Build a decision trees to predict the expected output from the desired input.
Develop a code to build random forests for the dataset by understand the difference between Random and Decision
Tree.
Develop a code to Build support vector machine models for classification Task.
Implement an application that imposes the ensembling techniques
Implement an application that clustering algorithms
Write a EM code for implementing the Bayesian Networks
Develop a neural network Model to optimize the pattern
Develop a deep-learning Neural Network for experiencing different architectural model.
Write a code to find the shortest path between two points by evaluating the cost function of each possible path
Write a python program to implement BFS the graph is implemented as an adjacency list.
Write a python program to implement DFS the graph is implemented as an adjacency list.
Write a python program to implement informed search algorithms using A* algorithm.
Write a python program to implement informed search algorithms using memory-bounded A* algorithm.
Write a python program to implement Gaussian naïve bayes models
Write a program to construct a Bayesian network considering medical data. Use this model to demonstrate the
diagnosis of heart patients using standard Heart Disease Data Set. You can use Python ML library classes/API Write
a python program to implement linear regression.
Write a python program to implement decision trees and random forests
Write a program to building SVM models for both classification and regression using Python and scikit-learn library.
Write a program to implementations of Random Forest (an ensemble of decision trees using Bagging) and Gradient
Boosting in Python using scikit-learn library
Write a python program to implement the EM algorithm for Bayesian networks in Python
Write a python program to building a simple neural network model using Python and the Keras library
Write a python program to building a deep neural network model using Python and the Keras library (multi-layer
perceptron (MLP) model for multi-class classification)
Write a python program to implementation of Breadth-First Search (BFS) and Depth-First Search (DFS) algorithms
Write a python program to implement multiple regression.