Blog

Basics of Search & AI techniques...

  1. Why are Searching and Searching algorithms important in AI?

The operation of an AI system can be characterised as a search process in which rules are tried until some sequence is found that produces the desired solution. While selecting a sequence of operations to determine an exact solution of a problem, an AI system has to face a large number of alternatives all of which are not at all equally promising for achieving the solution. Individual evaluation of all these alternatives even with the fastest available computer requires very long time which may exceed the entire lifetime of a human being depending on the complexity of the problem.

2. What is a Search Space?

A node is a discrete point and possible goal in the solution path. The set of all nodes is the search space

3. What are Blind Searches? Why do we need to know about blind searches?

A blind search (also called an uninformed search) is a search that has no information about its domain. The only capability of blind search is its ability to distinguish a non-goal state from the goal state. Blind searches have no preferences as to which nodes it should explore first. Examples of uninformed searches are Breadth First Search and Depth First Search.

One needs to know about uninformed search as they form the basis for some of the intelligent searches.

4. What is a Heuristic?

A heuristic is the approximation done to reduce the search space.  A heuristic function defines a state in terms of a number and this number is used for decision making in the search problems.

Heuristics are used when

  • The solution path for the problem is not known
  • The perfect solution is not computationally feasible

In Best First Search algorithm, the heuristic used is the distance of the node from the goal node

5. List some applications of Heuristic search

The application of Heuristic Search fall into three general classes

  • Path finding problems
  • Two player games
  • Constraint Satisfaction problem                                                                                                                                                                                                                                                         6.  What is an Informed Search?

Informed Search is a heuristic search in which there is a domain specific knowledge of the search. The heuristics are used in informed search to reduce the search space. Some of the informed searches are Best First Search and Hill Climbing.

(2/4/18)


What is an AI technique?

AI problem solving involves complexity. To handle complex problems, the techniques need to have the capability to deliver acceptable solutions. Some of the common AI techniques in use are the following:

  1. Learning – Learning enables to perform correctly and efficiently an already encountered problem in the past that have been solved. In a game of chess between a human and a computer, if the computer encounters a similar board position and a move by the player which led to its defeat, the computer would have learnt from its mistake and try to circumvent the situation by playing a different game so as not to repeat his failure.
  2. Heuristics – Heuristics are intelligent guesses. When an AI chess program is your opponent in a game of chess, the intelligent program must be able to infer correctly (intelligent guess) the move that you would make …
  3. Decision making under uncertainty – Driving requires reasoning/decision making under uncertain situations by the driver. A driverless car should be equipped with similar capabilities to move on the roads. AI techniques such as Fuzzy logic are often used for arriving at decisions under uncertain situations.
  4. Natural Language Processing (NLP) – Text Mining and Analytics techniques, Sentiment Analysis and NLP techniques at word, sentence, paragraph and document level, the interpretation of unstructured text data at syntax and semantic level, effective speech recognition and synthesis methodology are essential for AI systems.
  5. Embed Common Sense– Humans have an innate ability of logical reasoning. If an individual is a Ph. D. it is common sense that the person possesses an under-graduate and post-graduate degree. Embedding machines with common sense reasoning is a non-trivial task.
  6. Knowledge Based (Logic) Reasoning – Deriving knowledge / inference from a given set of facts. Feeding parametric values of a patient into medical Expert Systems may result in proper diagnosis of the ailment and enable right prescription of drugs.
  7. Swarm intelligence – For combinatorial problems i.e., problems having a large number of possible alternatives, collective intelligence in the bird and animal kingdom such as ants (ant colony optimization) and birds (particle swarm optimization) for arriving at optimized values need be incorporated for problem solving by AI systems.
  8. Case Based Reasoning (CBR) – CBR systems make use of knowledge/experience gained in the past for current problem solving.
  9. Predictive ability - Neural Networks, Statistical techniques like Regression and K-Nearest Neighbor, Bayesian Classification enable good prediction and has wide applications …
  10. Soft Computing – The ability to perform computation with imprecise data using Genetic Algorithms, Fuzzy Logic and Neural Networks or a combination of them forming hybrid techniques are widely used in several AI problems …
  11. Fault Tolerance - In many situations, humans are able to interpret intelligently even from wrong answers. As an example, India has many linguistic groups with similar surnames. There have been instances when people kept referring to ‘Mr. Das’ and ‘Mr. Bose’ and I had to infer that they were actually referring to me – Ghosh. The three surnames are mostly seen in the Bengali community and others tend to err while addressing… such capabilities need to be incorporated into AI systems…

The above non-exhaustive listing is a pointer to the widely used AI methods and techniques in recent times…

(19/3/18)

More By  :  Subhajit Ghosh

  • Views: 1675
  • Comments: 0





Name *
Email ID
 (will not be published)
Comment
Verification Code*

Can't read? Reload

Please fill the above code for verification.