Skip to main content

Why is it Important for Executives to know about Artificial Intelligence?




Imagine you are an IT executive in a company. As per your role, you have to offer IT solutions to problems that your company is facing, be it related to Finance, Sales, HR, Administration, etc. Maybe you are already playing this role. You have successfully implemented IT solutions to challenging problems. You are praised by your CTO, have also received various awards for successful implementations. You have been promoted in the past for this particular skill. You are living in a perfect world, where most of the problems that you are solving can be solved with programming. You are living in a non-Artificial Intelligence world.

Now imagine a world, where the problems that industries are facing today are not solved by programming. Imagine your company is facing problems that look difficult to be solved by any number of lines of code, or any number of current software solutions that exist in the market. You are faced with a dilemma of not able to offer solutions to such problems. Your CTO is always questioned by your CEO as to why your department is failing to find IT solutions to such problems. 

What if many challenges or problems that the industry is facing can be solved by AI? What if there are technologies that can give you solutions to problems that your company is facing? Will you ignore them, just because you don’t know how AI works? Will you wait for someone else to implement AI? Even if you wait for someone else to implement AI, how will you know whether the solution is optimal? 

Today, AI is all around us. It is in your mobiles that you carry. It is used when you message someone through Whatsapp, or click a picture, or book a flight, or travel using Google maps. It is used when you use Google search to find answers to what you are looking for. It is used when you do online shopping on Flipkart or Amazon. 

When AI is all around us, why is it you have not yet thought over using AI in applications that you already have, or ones that you plan to implement? Maybe you have thought of implementing AI, but have not received proper guidance on how to proceed in this direction. 

The industry is going through a paradigm shift, when AI based solutions will take over non-AI based solutions. A search engine with AI in it will always give better results than one with no AI. A Sales Report generated by using AI will help you in decision making better than a report generated with no AI. A machine will perform optimally since AI is able to do predictive maintenance rather than preventive maintenance. A MRI technology with AI will be able to assist a doctor in decision making better than a non-AI based MRI technology. A factory will be able to create better quality products with AI compared to a factory with no AI. An e-commerce website is able to recommend products better when AI based recommendation engines. A cognitive anti-virus will perform a better job than a non-cognitive anti-virus. Automated testing software with cognition will identify bugs better than automated testing software without cognition.

The examples are countless. AI can be applied to all the industries, in fact it is already applied to all the industries. All major cloud players such as AWS and Azure are offering AI as a service. You can develop an application on cloud, and add AI with few lines of code, or sometimes with just drag and drop. Countless services such as Microsoft Cognitive Services, IBM Watson services, Amazon AI services, and Google Cloud Machine Learning Platform, will help you to use Artificial Intelligence in your applications.

There are different ways in which you can understand the current trends in Artificial Intelligence, and how it can be applied to your industry. Attending conferences, webinars, reading articles is one of the ways. You will find countless case studies that explain how AI is applied in different industries, and how it is helping to generate more revenue and save costs. 

Carl Sagan has said – “We live in a society exquisitely dependent on science and technology, in which hardly anyone knows anything about science and technology.” 

I will like to add that today we live in a society that is slowly starting to depend on Artificial Intelligence, but hardly anyone knows anything about Artificial Intelligence.” I hope you are not one of them.

Siddhesh Wagle,
Research Consultant,
Cere Labs. 

Comments

  1. This information is meaningful and magnificent which you have shared here. I am amazed by the way you have explained things in this article. I am impressed by the details that you have shared in this post and It reveals how nicely you understand this subject. I would like to thanks for sharing this article here. Find AI Writer Online Free

    ReplyDelete

Post a Comment

Popular posts from this blog

GPU - The brain of Artificial Intelligence

Machine Learning algorithms require tens and thousands of CPU based servers to train a model, which turns out to be an expensive activity. Machine Learning researchers and engineers are often faced with the problem of running their algorithms fast. Although initially invented for processing graphics in computer games, GPUs today are used in machine learning to perform feature detection from vast amount of unlabeled data. Compared to CPUs, GPUs take far less time to train models that perform classification and prediction. Characteristics of GPUs that make them ideal for machine learning Handle large datasets Needs far less data centre infrastructure Can be specialized for specific machine learning needs Perform vector computations faster than any known processor Designed to perform data parallel computation NVIDIA CUDA GPUs today are used to build deep learning image processing tools for  Adobe Creative Cloud. According to NVIDIA blog future Adobe applicati

Building Commonsense in AI

It is often debated that what makes humans the ultimate intelligent species is the innate quality of doing commonsense reasoning. Humans use common sense knowledge about the world around to take appropriate decisions, and this turns out to be the necessary ingredient for their survival. AI researches have long thought about building commonsense knowledge in AI. They argue that if AI possess necessary commonsense knowledge then it will be a truly intelligent machine. We will discuss two major commonsense projects that exploit this idea: Cyc tries to build a comprehensive ontology and knowledge base of everyday commonsense knowledge. This knowledge can be used by AI applications to do human-like reasoning. Started in 1984, Cyc has come a long way. Today, OpenCyc 4.0 includes the entire Cyc ontology, containing 239,000 concepts and 2,093,000 facts and can be browsed on the OpenCyc website - http://www.cyc.com/platform/opencyc/ . OpenCyc is available for download from Source

Understanding Projection Pursuit Regression

The following article gives an overview of the paper "Projection Pursuit Regression” published by Friedman J. H and Stuetzle W. You will need basic background of Machine Learning and Regression before understanding this article. The algorithms and images are taken from the paper. ( http://www.stat.washington.edu/courses/stat527/s13/readings/FriedmanStuetzle_JASA_1981.pdf )  What is Regression? Regression is a machine learning technology used to predict a response variable given multiple predictor variables or features. The main distinction is that the response to be predicted is any real value and not just any class or cluster name. Hence though similar to Classification in terms of making a prediction, it is largely different given what it’s predicting.  A simple to understand real world problem of regression would be predicting the sale price of a particular house based on it’s square footage, given that we have data of similar houses sold in that area in the past. T