Featured Post

SQL Interview Success: Unlocking the Top 5 Frequently Asked Queries

Image
 Here are the five top commonly asked SQL queries in the interviews. These you can expect in Data Analyst, or, Data Engineer interviews. Top SQL Queries for Interviews 01. Joins The commonly asked question pertains to providing two tables, determining the number of rows that will return on various join types, and the resultant. Table1 -------- id ---- 1 1 2 3 Table2 -------- id ---- 1 3 1 NULL Output ------- Inner join --------------- 5 rows will return The result will be: =============== 1  1 1   1 1   1 1    1 3    3 02. Substring and Concat Here, we need to write an SQL query to make the upper case of the first letter and the small case of the remaining letter. Table1 ------ ename ===== raJu venKat kRIshna Solution: ========== SELECT CONCAT(UPPER(SUBSTRING(name, 1, 1)), LOWER(SUBSTRING(name, 2))) AS capitalized_name FROM Table1; 03. Case statement SQL Query ========= SELECT Code1, Code2,      CASE         WHEN Code1 = 'A' AND Code2 = 'AA' THEN "A" | "A

AI Project 5 things You need to be Successful

Suppose you have got an opportunity to create a project on AI. Try implementing these five before the start. These five are Learning, Programming Language, Knowledge representation, Problem Solving, and Hardware.

Ensure These 5 Things Done, if you want to be your AI Project Successful

1. Learning Process.

What is learning? - adding knowledge to the storehouse, and improving its performance. The success of an AI program depends on two things- the extent of wisdom it has and how frequently it acquires it. Learning agents consist of four main components. They are the:
  • The Learning element - is part of the agent responsible for improving its performance. 
  • The Performance element- is the part that chooses the actions to take. 
  • Critics, that tell the learning element of how the agent is doing. 
  • The Problem generator - suggests actions that could lead to new information experiences.

2. Programming Language.

  • LISP and Prolog are the primary languages used in AI programming.
  • LISP (List Processing): LISP is an AI programming language developed by John McCarthy in 1950. LISP is a symbolic processing language that represents information in lists and manipulates lists to derive information.
  • PROLOG (Programming in Logic): Prolog, which is developed by Alain Colmeraver and P. Roussel at Marseilles University in France in the early 1970s. 
  • Prolog uses the syntax of predicate logic to perform symbolic, logical computations.

Artificial Intelligence Project Know these Five Before Start
Artificial Intelligence Project Know these Five Before Start

3. Knowledge Representation.

The quality of the result depends on how much knowledge the system acquires. You should represent the current knowledge efficiently. Hence, knowledge representation is a vital component of the system. The best-known representations schemes are:
  • Associative Networks or Semantic Networks
  • Frames
  • Conceptual Dependencies and
  • Scripts

4. Problem Solving.

The objective of this particular area of research is how to implement the procedures on AI systems to solve problems as humans do.

The inference process should also be equally fit to obtain satisfactory results. Inference-process, you can be divided into brute and heuristic search procedures.

5. Hardware.

Most of the AI programs, implemented on Von Neumann machines. However, for AI programming, dedicated workstations have emerged - classified into one of the following four categories:
  • SISD, Single Instruction Single Data Machines
  • SIMD, Single Instruction Multiple Data Machines
  • MISD, Multiple Instruction Single Data Machines
  • MIMD, Multiple Instruction Multiple Data Machines

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

Explained Ideal Structure of Python Class

How to Check Kafka Available Brokers