Skip to main content

AI in Banking and Financial institutions




WeChat is a Chinese social media and mobile payment app, released during the year 2011 - China’s billion-user messaging app

ClearBank, an innovative clearing bank in the UK based entirely on the cloud and offering an open-standards connection API, are showing the way to a future of distributed, hyper-efficient core banking services - Banking as a service!.

AI will make intelligent automation   to do away with competition from FinTech players.  AI will enable banks to leverage  Machine Learning  optimally to drive operational and cost efficiencies.  By adapting AI, Banking sector have already taken actions, unlocking significant opportunities .

Cognitive technology with Artificial Intelligence (AI) brings the advantage of Digitization to Banks.   SBI launched SIA, an AI-powered chat assistant that addresses customer enquiries  with everyday banking tasks.  Eva (Electronic Virtual Assistant) has addressed over 2.7 million customer queries according to HDFC bank.  ICICI Bank deployed software robotics in over 200 business processes across various functions.  Axis Bank launched an AI & NLP (Natural Language Processing) enabled app, Conversational Banking, helping consumers with financial and non-financial transactions.  Bank ABC's AI-powered digital employee using the technology called 'Soul Machines' offering human experience.

AI is the future of Banking as it brings the power of advanced Data Analytics.  Based on past interactions, AI develops a better understanding of customer  behavior. This enables banks to customize financial products and services by adding personalized features and intuitive interactions to deliver better customer engagement.  Chatbots seems to be the primary AI use-case wih Indian Banks, with many   banks investing in conversational apps. SBI uses AI-powered smart cameras that captures facial expressions of customers to offer real-time feedback. As per ICICI Bank, more than  200 software robots are performing 10 lakh plus Banking transactions every day.

With its power to predict future scenarios by analyzing past behaviors, AI helps Banks predict future trends. This helps banks to identify fraud, detect anti-money laundering pattern and make customer recommendations. Cognitive process automation enables automation of a variety of information-intensive Banking services like claims management. This secures ROI, reduces costs and ensures accurate and quick processing of services. Chatbots identify the context and emotions in the text chat and respond to it in the most appropriate way. These cognitive machines enable banks to save not only time and improve efficiency, but  also help banks to save money.

Cognitive systems that think and respond, provides optimal solutions based on available data in real-time - future of Banking systems.






Popular posts from this blog

Machine Learning in Healthcare

Hari Nair Hospitals are constantly trying to improve the quality of care they deliver.  Machine learning (ML)  is creating disruptive changes in the healthcare industry.  ML was first applied to tailoring antibiotic dosages for patients in the 1970s..  Python developers can build solutions that benefit human health and well-being. Python and its frameworks work on principles  agreed upon the HIPAA checklist. Some of the practical areas for ML are: Medical image processing and anomaly detection Managing Hospitals and Patient Care Diagnostics Disease Prognosis Prediction Natural Language Processing (NLP) for Administrative Tasks Patient Risk Identification Computer vision methods have long been employed to automatically analyze biomedical images. The recent advent of deep learning has replaced many other machine learning methods, since it avoids the creation of hand-engineering features;  removing a critical source of error from the pro...

A quick introduction to AI and ML

Hari Nair Artificial intelligence (AI) is a branch of computer science. Its main goal is to create smart machines that can learn on their own and are capable of thinking like humans. The term 'artificial intelligence' commonly applies to devices or applications capable of carrying out specific tasks in human ways, by mimicking cognitive functions such as: • learning • reasoning • problem-solving • visual perception • language-understanding There are two main types of AI: Applied AI - is more common and includes systems designed to intelligently carry out a single task, example: move a driverless vehicle. This category is also known as 'weak' or 'narrow' AI. Generalized AI - is less common and includes systems or devices that can theoretically handle any task, as they carry enough intelligence to find solutions to unfamiliar problems. Generalized AI is also known as 'strong' AI. Examples of true strong AI don't curren...

Flask web applications

Hari Nair We can build complex web applications using Python. For that, we would need one of the third party Python web framework Flask . e:\python> pip install flask # flask #web2.py from flask import Flask app=Flask(__name__) @app.route("/") def hello():     return "Hello Chennai" e:\python> set FLASK_APP=web2.py to run the app server e:\python> flask run open browser and goto http://127.0.0.1:5000/ Another example #web4.py from flask import Flask , render_template app= Flask(__name__) @app.route("/") @app.route("/home") def home():     return render_template('home.html') @app.route("/about") def about():     return render_template('about.html') @app.route("/home2") def home2():     return render_template('home2.html') @app.route("/isdeep") def isdeep():     return render_template('isdeep.html') if __name__ == '__main_...