Skip to main content

What is AI?

 It actually seems funny to write answer to this question (as it's so unusual to find an article about this these days 🤔). 



AI is short for Artificial Intelligence or intelligence which is created by humans. But what is intelligence then?

Intelligence breaks into the tasks that beings are capable of doing. Like thinking, memorising, remembering, deciding, reasoning, predicting, recognising, improving, inventing, reproducing, dreaming, assuming, surviving, feeling, hoping, coping, all these tasks ending with an 'ing' reminds us that they will never end until life (except for reproducing😉). The thing that makes beings actually alive is knowing that they are. 

But are all the beings intelligent? Not all of them carry out all those tasks. As being smartest of all we humans still don't know if a mouse dreams or not (atleast Jerry does😏). But we do know, beings with a smaller brain or number of brain cells cannot carry out complex tasks. I'm sure ameoba can't recognise things. Many humans too can't do them all. But even if we call our friends 'stupid' sometimes, doesn't mean they aren't intelligent creatures. 

Generally, if a computer system is said to be AI enabled, it just means that it can perform some of the intelligent tasks. The field has been divided into two ANI & AGI. 

ANI stands for Artificial Narrow Intelligence, which is focused on making systems able to handle one particular task. AGI stands for Artificial General Intelligence, which focuses on making sophisticated systems imitating humans. 

The field is being dig up (most of the algorithms actually in use are probably older than you 🧝‍♀️) due to data and processing power. 

There have been opposing views whether AGI is possible or not and even if it is then how far is it. 

John Mccarthy once said "If we ever succeed in creating an Artificial Intelligence (here AGI) and we were to write it in a book, the most difficult part of it will be to explain why it took this long.." 

Not exact words though but the meaning remains pretty much the same, it's all just about perspective, it might be right in front of us, and we just need an appropriate set of glasses. 


Closing remarks, wiki who is John Mccarthy 🤔







Comments

Post a Comment

Popular posts from this blog

Do you know Machine Learning?

 Machine Learning is like Jesus, It's everywhere... From pizzerias to Notco (a company which uses AI to make vegan food that tastes like meat) and from banks to Netflix all are using Machine Learning. But can machines actually learn something? 🧐 There are several algorithms that improve performance on a particular task with experience, that's it. By the way, if anyone asked, that was the definition of Machine Learning. The thing that computer systems can actually increase their performance or learn tasks is what AI is driven by.  Machine Learning is basically divided into 3 categories, viz, Supervised Learning, Unsupervised Learning, and Reinforcement Learning.       Supervised Learning is learning from a training set of labeled examples provided by a knowledgeable external supervisor. Each example is a description of a situation together with a specification—the label—of the correct action the system should take to that situation, which is often to ident...

Do you know steps in building a full Machine Learning model?

1. Data Collection In Machine Learning the data is the most important thing, unlike humans who look at a person's face a few times and recognize him/her, ML needs tons of data. The 2001's paper from Microsoft showed that moderate and complex models performed almost the same given sufficient data.  Apart from it, the quality of data is also important, data that does not represent appropriate relation between features and their label is of no use.  2. Data Preprocessing The preprocessing of data is very essential before feeding it to the algorithm, removing irrelevant features, merging highly correlated features, removing or manually adding missing values, and converting data to numeric values, suppose the data contains a feature representing the country and your dataset consists of many countries which might be moderately correlated to your output so you might not wanna remove it, you can convert it into a one-hot encoding  (a zero vector of length equal to the number of c...