Can AI have the following abilities that human beings and animals have? As per Stahl [1] Humans have access to “mental abilities, perceptions, intuition, emotions, and even spirituality”. Let us consider our views and discuss a little more the things he has enumerated. Let’s discuss his enumeration. The following combines the power of modern computingContinue reading “Abilities of AI Compared to Human”
Category Archives: data science
Feature Selection — I
In machine learning and data science, feature selection techniques are used often to find the most relevant attributes defining the data. What are the features of data? The data for use in Machine Learning is typically in the form of rows and columns. The rows define the values for a particular observation, while the columnsContinue reading “Feature Selection — I”
Linear Regression for Data in Python
First the code then a description of the key points concerning Linear Regression. Let us consider the colon cancer data. The data has been taken in csv form. Here is a code in Python to compute Linear Regression based computations. The code wraps up all the internal processing behind Linear Regression. import pandas as pdimportContinue reading “Linear Regression for Data in Python”
Are Generative Models Mugging Parrots?
#AI #Generative_Models Some say these complex deep learning models are mere stochastic mugging parrots. Well, what is the answer? Yes or not exactly. Let’s argue about it. If you take one or two layers in the learning model, then you can say that yes there is some kind of mugging. But here in live models,Continue reading “Are Generative Models Mugging Parrots?”
The Master Robots: AI and Tech
#futurist #future #scific #ai #artificialintelligence This article presents soon-to-come robots. This is based on current developments in AI and Robotics. All these are possibilities for the future of Robotics, AI, and Tech. The future may not be exactly the same for these Robotics applications but somewhat may revolve around these facts as explained here inContinue reading “The Master Robots: AI and Tech”
AI as a Threat versus Other Scientific Fields
#AI Like other scientific disciplines, Artificial Intelligence (AI) is also a scientific discipline. The question is how safe is it? If developed in the right way, it would be a boon to other scientific disciplines and to its own progress as well as a help to mankind. But if it is left open then itContinue reading “AI as a Threat versus Other Scientific Fields”
The Good AI and the Bad AI — Part I
Here is a description of what constitutes a Good AI and what forms part of the Bad AI. There has been tremendous progress in AI, irrespective of the fact that it is a good AI or it is a potentially harmful AI. Let us discuss what is in good AI and what is in badContinue reading “The Good AI and the Bad AI — Part I”
Causal Reasoning and LLM Paper Review
The following paper is discussed in this article. Causal Reasoning and Large Language Models: Opening a New Frontier for Causality. Kıcıman and Ness et al. (2023) Paper Review Causality — The automatic detection relationship between cause and effect. For illustration, consider two concepts that are discussed in some text, say medical text. Let the conceptsContinue reading “Causal Reasoning and LLM Paper Review”
Python based Particle Swarm Optimization for a function optimization
Here is a quick introduction to Particle Swarm Intelligence based optimization and its implementation in Python. As the name states, Particle Swarm Optimization (PSO) is an optimization algorithm based on the intelligence of swarm learning. Swarms of birds, ducks, and insects often follow a pattern to achieve their activities. PSO have many application. Lets startContinue reading “Python based Particle Swarm Optimization for a function optimization”
Optimizing a function with Genetic Algorithm in Python
Function Optimization means how to find the maximum and/or minimum of the function in a given domain. The aim is to find the optimal value viz. maximum or minimum value of a function. To explain the process in Python we take an example of the Rastrigin function. Let us understand what this function means first.Continue reading “Optimizing a function with Genetic Algorithm in Python”