SlideShare uma empresa Scribd logo
1 de 15
Baixar para ler offline
Stories from the Financial
Service AI Trenches
Lessons learned from building AI models in EY
18 November 2020
Tim Santos, Assistant Director, Client Technology AI
Mustafa Somalya , Assistant Director , Client Technology AI
18 November 2020Page 2 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
1 AI in Financial Services Overview
2 Use Cases and Learnings
Agenda
18 November 2020Page 3
AI in Financial Services
How does an experiment-driven disruptive technology such as AI look like in a highly-regulated industry?
Sources:
https://www.fca.org.uk/publication/research/research-note-on-machine-learning-in-uk-financial-services.pdf
https://ec.europa.eu/digital-single-market/en/high-level-expert-group-artificial-intelligence
http://rms.koenig-solutions.com/Sync_data/Trainer/QMS/1752-2020328106-AuditingArtificialIntelligencereseng1218(1).pdf
Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
18 November 2020Page 4
Review data sourcing, profiling,
processing, as well as data
quality and ethical issues
Assess approach and models are fit for
purpose, explainable, reproducible,
and robust, with supporting evidence
Confirm outcomes achieve desired level
of precision and consistency, and are
aligned with ethical, lawful, and fair
design criteria
Ensure solution is scalable and
deployable with the right tech
infrastructure, and
continuously monitored
Ensure business purpose,
governance and stakeholder
engagement are properly
identified and aligned
Solution
Lifecycle
Modelling
Outcome
Analysis
Deployment
and
Monitoring
Data and
Processing
Business and
Governance
Source: https://www.ukfinance.org.uk/system/files/Trust%2C%20Context%20and%20Regulation%20-%20Achieving%20more%20explainable%20AI%20in%20financial%20services.pdf
Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
AI in Financial Services
How does an experiment-driven disruptive technology such as AI look like in a highly-regulated industry?
How do you train models for rich
yet highly restricted data that could
be difficult to acquire?
18 November 2020Page 5 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
Use Case : Know Your Customer (KYC)
Page 6
KYC
Social Network
Employment
Information
Self-certification
Forms
Biometric Data
Legal Documents
Open
Banking
Proof of Identity
Digital Footprint
KYC requires a lot of time consuming
repetitive manual work that involves
the processing of a variety of data
sources.
Ubiquity, variety of data sources, and
complexity involved in cognitive tasks
make it a very attractive use case for AI.
Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY18 November 2020
Use Case : Know Your Customer (KYC)
Page 7
Form Field Detection
2
Handwritten Text Recognition
3
Data Synthesis
1
Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY18 November 2020
Use Case : Know Your Customer (KYC)
► Data is scarce or highly restricted because of sensitive and personally-identifiable information
► SDLC and DevOps can be inadequate for ML development, consider MLOps
► Treat the scarcity of data as a technological and scientific problem
► When using synthetic or generic datasets, ensure that there’s a feedback mechanism for when live
data becomes available
22 November 2020 Presentation titlePage 8
How do you develop models when
data from clients come from
different geographies, have
different legislations and cross-
border restrictions?
18 November 2020Page 9 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
Use Case: Multi-Jurisdiction Models
Generic models and pipelines are reused, iterations produce bespoke models by incorporating country-specific data
22 November 2020 Presentation titlePage 10
Reusable Components
Standard ML Pipeline: Base Model
► Common laws and treaties
► Similar industry trends and
treatments
► Transactional trends
► Language models
► Common data model
► Generic dataset
► Regional market
► Cross regional market
► National market
Base Model
Country X Country Y
Model Y v1Model X v2Model X v1
Model X
v3
Model Y v2
retrain
increment
Country Z
retrain
Model Z v1
Model Y v3
MODELS XYZ
ML Pipeline Iteration XYZ:
Bespoke Model
► Hyperparameter Tuning
► Country-specific datasets and
enrichment
► Additional categories and features
18 November 2020Page 11 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
Multi-Jurisdiction Models Example – MLOps and AutoML
Modelling Outcome
Analysis
Deployment and MonitoringData and
Processing
Data Prep
Exploratory
Data Analysis
Feature
Engineering
Feature
Selection
Benchmark
Metrics
Model Serving
(Inference)
Drift
Monitoring
(inference)
Model Build and AutoML Pipeline
Hyperparameter
Tuning
Training
CI/CD
Model Serving
(Train Pipeline)
Retraining/
Rollback /
Increment
Data slicing
Model Serving (Training Pipeline)
Experimentation
Feature
Importance
Drift
Monitoring
(Training)
Model Serving (Inference)
model is stale
make predictions
Human in
the loop
Consume/
Interface
High confidence
Low confidence
Model Drift Monitoring (Data Signature)
model is
good
• Create training (baseline) and inference dataset signatures from features
• Create signatures from predictions, also called theories
• Measure the distance of signatures
• Population Stability Index : 𝑃𝑆𝐼 = ∑!(𝐴! − 𝐵!) ln
"!
#!
{𝐴!, 𝐵! − 𝑓𝑟𝑒𝑞𝑢𝑒𝑛𝑐𝑦 𝑐𝑜𝑢𝑛𝑡 𝑝𝑒𝑟 𝑓𝑒𝑎𝑡𝑢𝑟𝑒 𝑏𝑢𝑐𝑘𝑒𝑡}
• Numerical Parametric (should pass normality, homoskedasticity): T-test
• Numerical Non-parametric: Kruskal-Wallis, Wilcoxon, Kolmogorov, Mann-Whitney-U
• Categorical Features and theory testing: Pearson’s Chi-squared test
• Provide pass/warning/fail logic to trigger retraining, rollback, AutoML, reinforcement learning
Training
Dataset
Inference
Dataset
Model
features
features
predictions
Inference
Signature
Score
(Distance)
Training
Signature
Data
Augmentation
Transfer learning and Model Finetuning
18 November 2020Page 12
Use Case: Multi-Jurisdiction Models
Data drift monitoring and MLOps tools
Reproducible end-to-end ML pipelines and AutoML
Leveraging “human in the loop” with MLOps framework
and online learning
Enabling components for Multi-Jurisdiction and ML at scale
Time from Technical and Business
SMEs are valuable, a complementing
operating model and tooling would
be necessary to maximise value
Building and deploying bespoke
models for each jurisdiction is difficult
to scale without an end-to-end
MLOps platform
Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
18 November 2020Page 13
The appeal of using AI in FS lies in very rich data,
the same reason that makes data very challenging
to acquire.
AI in FS usually involve clients in multiple
jurisdictions, it is imperative to have MLOps
framework and platform to develop ML at scale.
Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
Key Takeaways
Q&A
18 November 2020Page 14
Tim Santos
Assistant Director | Global IT
► Global Client Technology AI
► MLOps Lead
► Timothy.Santos@uk.ey.com
Mustafa Somalya
Assistant Director | Global IT
► Global Client Technology AI
► ML Experimentation Lead
► Mustafa.M.Somalya@uk.ey.com
Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
EY | Assurance | Tax | Strategy and Transactions | Consulting
About EY
EY is a global leader in assurance, tax, strategy, transaction and consulting
services. The insights and quality services we deliver help build trust and
confidence in the capital markets and in economies the world over. We develop
outstanding leaders who team to deliver on our promises to all of our
stakeholders. In so doing, we play a critical role in building a better working world
for our people, for our clients and for our communities.
EY refers to the global organization, and may refer to one or more, of the member
firms of Ernst & Young Global Limited, each of which is a separate legal entity.
Ernst & Young Global Limited, a UK company limited by guarantee, does not
provide services to clients. Information about how EY collects and uses personal
data and a description of the rights individuals have under data protection
legislation are available via ey.com/privacy. For more information about our
organization, please visit ey.com.
This news release has been issued by EYGM Limited, a member of the global EY
organization that also does not provide any services to clients.
© 2020 EYGM Limited.
All Rights Reserved.
EYG no.
ED MMYY
This material has been prepared for general informational purposes only and is
not intended to be relied upon as accounting, tax or other professional advice.
Please refer to your advisors for specific advice.

Mais conteúdo relacionado

Mais procurados

EY-introducing-EYs-advisory-services
EY-introducing-EYs-advisory-servicesEY-introducing-EYs-advisory-services
EY-introducing-EYs-advisory-services
Stephen Stone
 
MGI: From poverty to empowerment: India’s imperative for jobs, growth, and ef...
MGI: From poverty to empowerment: India’s imperative for jobs, growth, and ef...MGI: From poverty to empowerment: India’s imperative for jobs, growth, and ef...
MGI: From poverty to empowerment: India’s imperative for jobs, growth, and ef...
McKinsey & Company
 

Mais procurados (20)

Power transactions and trends Q2 2019
Power transactions and trends Q2 2019Power transactions and trends Q2 2019
Power transactions and trends Q2 2019
 
EY-introducing-EYs-advisory-services
EY-introducing-EYs-advisory-servicesEY-introducing-EYs-advisory-services
EY-introducing-EYs-advisory-services
 
McKinsey - Covid 19 - Global Auto Consumer Insights - November 2020
McKinsey -  Covid 19 - Global Auto Consumer Insights - November 2020McKinsey -  Covid 19 - Global Auto Consumer Insights - November 2020
McKinsey - Covid 19 - Global Auto Consumer Insights - November 2020
 
Turning big data into big revenue
Turning big data into big revenueTurning big data into big revenue
Turning big data into big revenue
 
8 Steps to Creating a Data Strategy
8 Steps to Creating a Data Strategy8 Steps to Creating a Data Strategy
8 Steps to Creating a Data Strategy
 
Data Quality Management: Cleaner Data, Better Reporting
Data Quality Management: Cleaner Data, Better ReportingData Quality Management: Cleaner Data, Better Reporting
Data Quality Management: Cleaner Data, Better Reporting
 
Biopharma's search for sustainable growth
Biopharma's search for sustainable growthBiopharma's search for sustainable growth
Biopharma's search for sustainable growth
 
The 4th Annual New Mobility Study 2019
The 4th Annual New Mobility Study 2019The 4th Annual New Mobility Study 2019
The 4th Annual New Mobility Study 2019
 
COVID-19 Auto & Mobility Consumer Insights
COVID-19 Auto & Mobility Consumer InsightsCOVID-19 Auto & Mobility Consumer Insights
COVID-19 Auto & Mobility Consumer Insights
 
New horizons in transportation: mobility, innovation, economic development an...
New horizons in transportation: mobility, innovation, economic development an...New horizons in transportation: mobility, innovation, economic development an...
New horizons in transportation: mobility, innovation, economic development an...
 
Building an AI organisation
Building an AI organisationBuilding an AI organisation
Building an AI organisation
 
Digital and Innovation Strategies for the Infrastructure Industry: Tim McManu...
Digital and Innovation Strategies for the Infrastructure Industry: Tim McManu...Digital and Innovation Strategies for the Infrastructure Industry: Tim McManu...
Digital and Innovation Strategies for the Infrastructure Industry: Tim McManu...
 
EY Price Point: global oil and gas market outlook, Q2, April 2020
EY Price Point: global oil and gas market outlook, Q2, April 2020EY Price Point: global oil and gas market outlook, Q2, April 2020
EY Price Point: global oil and gas market outlook, Q2, April 2020
 
Pursuing Customer Inspired Growth
Pursuing Customer Inspired GrowthPursuing Customer Inspired Growth
Pursuing Customer Inspired Growth
 
Apache Hadoop Summit 2016: The Future of Apache Hadoop an Enterprise Architec...
Apache Hadoop Summit 2016: The Future of Apache Hadoop an Enterprise Architec...Apache Hadoop Summit 2016: The Future of Apache Hadoop an Enterprise Architec...
Apache Hadoop Summit 2016: The Future of Apache Hadoop an Enterprise Architec...
 
Salesforce Basecamp Helsinki 8.5.2018 - Boston Consulting Group
Salesforce Basecamp Helsinki 8.5.2018 - Boston Consulting GroupSalesforce Basecamp Helsinki 8.5.2018 - Boston Consulting Group
Salesforce Basecamp Helsinki 8.5.2018 - Boston Consulting Group
 
MGI: From poverty to empowerment: India’s imperative for jobs, growth, and ef...
MGI: From poverty to empowerment: India’s imperative for jobs, growth, and ef...MGI: From poverty to empowerment: India’s imperative for jobs, growth, and ef...
MGI: From poverty to empowerment: India’s imperative for jobs, growth, and ef...
 
The Industrialist: Trends & Innovations - March 2023
The Industrialist: Trends & Innovations - March 2023The Industrialist: Trends & Innovations - March 2023
The Industrialist: Trends & Innovations - March 2023
 
Right Cloud Mindset: Survey Results Hospitality | Accenture
Right Cloud Mindset: Survey Results Hospitality | AccentureRight Cloud Mindset: Survey Results Hospitality | Accenture
Right Cloud Mindset: Survey Results Hospitality | Accenture
 
Five keys to marketing's "new golden age"
Five keys to marketing's "new golden age"Five keys to marketing's "new golden age"
Five keys to marketing's "new golden age"
 

Semelhante a Stories from the Financial Service AI Trenches: Lessons Learned from Building AI Models in EY

PowerPoint presentation
PowerPoint presentationPowerPoint presentation
PowerPoint presentation
webhostingguy
 
The future of FinTech product using pervasive Machine Learning automation - A...
The future of FinTech product using pervasive Machine Learning automation - A...The future of FinTech product using pervasive Machine Learning automation - A...
The future of FinTech product using pervasive Machine Learning automation - A...
Shift Conference
 

Semelhante a Stories from the Financial Service AI Trenches: Lessons Learned from Building AI Models in EY (20)

Build Intelligence System with AI. Antimo Musone, Ernst & Young
Build Intelligence System with AI. Antimo Musone, Ernst & YoungBuild Intelligence System with AI. Antimo Musone, Ernst & Young
Build Intelligence System with AI. Antimo Musone, Ernst & Young
 
Opportunities derived by AI
Opportunities derived by AIOpportunities derived by AI
Opportunities derived by AI
 
Romanko chasopys july2015_post
Romanko chasopys july2015_postRomanko chasopys july2015_post
Romanko chasopys july2015_post
 
Siecap Advisory Automation & Supply Chain Trends
Siecap Advisory Automation & Supply Chain TrendsSiecap Advisory Automation & Supply Chain Trends
Siecap Advisory Automation & Supply Chain Trends
 
The role of the COO in the age of AI
The role of the COO in the age of AI The role of the COO in the age of AI
The role of the COO in the age of AI
 
Machine Learning for Finance Master Class
Machine Learning for Finance Master Class Machine Learning for Finance Master Class
Machine Learning for Finance Master Class
 
TM Forum AI Program Overview
TM Forum AI Program OverviewTM Forum AI Program Overview
TM Forum AI Program Overview
 
CMG Brasil 2011 Keynote por Adam Grummit
CMG Brasil 2011 Keynote por Adam GrummitCMG Brasil 2011 Keynote por Adam Grummit
CMG Brasil 2011 Keynote por Adam Grummit
 
AI for optimizing customer journeys in online betting
AI for optimizing customer journeys in online bettingAI for optimizing customer journeys in online betting
AI for optimizing customer journeys in online betting
 
Big Data, customer analytics and loyalty marketing
Big Data, customer analytics and loyalty marketingBig Data, customer analytics and loyalty marketing
Big Data, customer analytics and loyalty marketing
 
Digital Platform Economy
Digital Platform EconomyDigital Platform Economy
Digital Platform Economy
 
Bi PowerPoint Presentation Slides
Bi PowerPoint Presentation SlidesBi PowerPoint Presentation Slides
Bi PowerPoint Presentation Slides
 
Trust, Context and, Regulation: Achieving More Explainable AI in Financial Se...
Trust, Context and, Regulation: Achieving More Explainable AI in Financial Se...Trust, Context and, Regulation: Achieving More Explainable AI in Financial Se...
Trust, Context and, Regulation: Achieving More Explainable AI in Financial Se...
 
Meet the new champ: Why HR managers go wild for QlikView 9 people intelligenc...
Meet the new champ: Why HR managers go wild for QlikView 9 people intelligenc...Meet the new champ: Why HR managers go wild for QlikView 9 people intelligenc...
Meet the new champ: Why HR managers go wild for QlikView 9 people intelligenc...
 
Ml master class cfa poland
Ml master class   cfa polandMl master class   cfa poland
Ml master class cfa poland
 
Career sessions IM
Career sessions IMCareer sessions IM
Career sessions IM
 
apidays LIVE Hong Kong 2021 - Federated Learning for Banking by Isaac Wong, W...
apidays LIVE Hong Kong 2021 - Federated Learning for Banking by Isaac Wong, W...apidays LIVE Hong Kong 2021 - Federated Learning for Banking by Isaac Wong, W...
apidays LIVE Hong Kong 2021 - Federated Learning for Banking by Isaac Wong, W...
 
PowerPoint presentation
PowerPoint presentationPowerPoint presentation
PowerPoint presentation
 
AI MODELS USAGE IN FINTECH PRODUCTS: PM APPROACH & BEST PRACTICES by Kasthuri...
AI MODELS USAGE IN FINTECH PRODUCTS: PM APPROACH & BEST PRACTICES by Kasthuri...AI MODELS USAGE IN FINTECH PRODUCTS: PM APPROACH & BEST PRACTICES by Kasthuri...
AI MODELS USAGE IN FINTECH PRODUCTS: PM APPROACH & BEST PRACTICES by Kasthuri...
 
The future of FinTech product using pervasive Machine Learning automation - A...
The future of FinTech product using pervasive Machine Learning automation - A...The future of FinTech product using pervasive Machine Learning automation - A...
The future of FinTech product using pervasive Machine Learning automation - A...
 

Mais de Databricks

Democratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized PlatformDemocratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized Platform
Databricks
 
Stage Level Scheduling Improving Big Data and AI Integration
Stage Level Scheduling Improving Big Data and AI IntegrationStage Level Scheduling Improving Big Data and AI Integration
Stage Level Scheduling Improving Big Data and AI Integration
Databricks
 
Simplify Data Conversion from Spark to TensorFlow and PyTorch
Simplify Data Conversion from Spark to TensorFlow and PyTorchSimplify Data Conversion from Spark to TensorFlow and PyTorch
Simplify Data Conversion from Spark to TensorFlow and PyTorch
Databricks
 
Raven: End-to-end Optimization of ML Prediction Queries
Raven: End-to-end Optimization of ML Prediction QueriesRaven: End-to-end Optimization of ML Prediction Queries
Raven: End-to-end Optimization of ML Prediction Queries
Databricks
 
Processing Large Datasets for ADAS Applications using Apache Spark
Processing Large Datasets for ADAS Applications using Apache SparkProcessing Large Datasets for ADAS Applications using Apache Spark
Processing Large Datasets for ADAS Applications using Apache Spark
Databricks
 

Mais de Databricks (20)

DW Migration Webinar-March 2022.pptx
DW Migration Webinar-March 2022.pptxDW Migration Webinar-March 2022.pptx
DW Migration Webinar-March 2022.pptx
 
Data Lakehouse Symposium | Day 1 | Part 1
Data Lakehouse Symposium | Day 1 | Part 1Data Lakehouse Symposium | Day 1 | Part 1
Data Lakehouse Symposium | Day 1 | Part 1
 
Data Lakehouse Symposium | Day 1 | Part 2
Data Lakehouse Symposium | Day 1 | Part 2Data Lakehouse Symposium | Day 1 | Part 2
Data Lakehouse Symposium | Day 1 | Part 2
 
Data Lakehouse Symposium | Day 2
Data Lakehouse Symposium | Day 2Data Lakehouse Symposium | Day 2
Data Lakehouse Symposium | Day 2
 
Data Lakehouse Symposium | Day 4
Data Lakehouse Symposium | Day 4Data Lakehouse Symposium | Day 4
Data Lakehouse Symposium | Day 4
 
5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop
5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop
5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop
 
Democratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized PlatformDemocratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized Platform
 
Learn to Use Databricks for Data Science
Learn to Use Databricks for Data ScienceLearn to Use Databricks for Data Science
Learn to Use Databricks for Data Science
 
Why APM Is Not the Same As ML Monitoring
Why APM Is Not the Same As ML MonitoringWhy APM Is Not the Same As ML Monitoring
Why APM Is Not the Same As ML Monitoring
 
The Function, the Context, and the Data—Enabling ML Ops at Stitch Fix
The Function, the Context, and the Data—Enabling ML Ops at Stitch FixThe Function, the Context, and the Data—Enabling ML Ops at Stitch Fix
The Function, the Context, and the Data—Enabling ML Ops at Stitch Fix
 
Stage Level Scheduling Improving Big Data and AI Integration
Stage Level Scheduling Improving Big Data and AI IntegrationStage Level Scheduling Improving Big Data and AI Integration
Stage Level Scheduling Improving Big Data and AI Integration
 
Simplify Data Conversion from Spark to TensorFlow and PyTorch
Simplify Data Conversion from Spark to TensorFlow and PyTorchSimplify Data Conversion from Spark to TensorFlow and PyTorch
Simplify Data Conversion from Spark to TensorFlow and PyTorch
 
Scaling your Data Pipelines with Apache Spark on Kubernetes
Scaling your Data Pipelines with Apache Spark on KubernetesScaling your Data Pipelines with Apache Spark on Kubernetes
Scaling your Data Pipelines with Apache Spark on Kubernetes
 
Scaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark PipelinesScaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark Pipelines
 
Sawtooth Windows for Feature Aggregations
Sawtooth Windows for Feature AggregationsSawtooth Windows for Feature Aggregations
Sawtooth Windows for Feature Aggregations
 
Redis + Apache Spark = Swiss Army Knife Meets Kitchen Sink
Redis + Apache Spark = Swiss Army Knife Meets Kitchen SinkRedis + Apache Spark = Swiss Army Knife Meets Kitchen Sink
Redis + Apache Spark = Swiss Army Knife Meets Kitchen Sink
 
Re-imagine Data Monitoring with whylogs and Spark
Re-imagine Data Monitoring with whylogs and SparkRe-imagine Data Monitoring with whylogs and Spark
Re-imagine Data Monitoring with whylogs and Spark
 
Raven: End-to-end Optimization of ML Prediction Queries
Raven: End-to-end Optimization of ML Prediction QueriesRaven: End-to-end Optimization of ML Prediction Queries
Raven: End-to-end Optimization of ML Prediction Queries
 
Processing Large Datasets for ADAS Applications using Apache Spark
Processing Large Datasets for ADAS Applications using Apache SparkProcessing Large Datasets for ADAS Applications using Apache Spark
Processing Large Datasets for ADAS Applications using Apache Spark
 
Massive Data Processing in Adobe Using Delta Lake
Massive Data Processing in Adobe Using Delta LakeMassive Data Processing in Adobe Using Delta Lake
Massive Data Processing in Adobe Using Delta Lake
 

Último

Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
amitlee9823
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
amitlee9823
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
amitlee9823
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
AroojKhan71
 

Último (20)

Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
 
ELKO dropshipping via API with DroFx.pptx
ELKO dropshipping via API with DroFx.pptxELKO dropshipping via API with DroFx.pptx
ELKO dropshipping via API with DroFx.pptx
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
ALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptxALSO dropshipping via API with DroFx.pptx
ALSO dropshipping via API with DroFx.pptx
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFx
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 

Stories from the Financial Service AI Trenches: Lessons Learned from Building AI Models in EY

  • 1. Stories from the Financial Service AI Trenches Lessons learned from building AI models in EY 18 November 2020 Tim Santos, Assistant Director, Client Technology AI Mustafa Somalya , Assistant Director , Client Technology AI
  • 2. 18 November 2020Page 2 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY 1 AI in Financial Services Overview 2 Use Cases and Learnings Agenda
  • 3. 18 November 2020Page 3 AI in Financial Services How does an experiment-driven disruptive technology such as AI look like in a highly-regulated industry? Sources: https://www.fca.org.uk/publication/research/research-note-on-machine-learning-in-uk-financial-services.pdf https://ec.europa.eu/digital-single-market/en/high-level-expert-group-artificial-intelligence http://rms.koenig-solutions.com/Sync_data/Trainer/QMS/1752-2020328106-AuditingArtificialIntelligencereseng1218(1).pdf Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
  • 4. 18 November 2020Page 4 Review data sourcing, profiling, processing, as well as data quality and ethical issues Assess approach and models are fit for purpose, explainable, reproducible, and robust, with supporting evidence Confirm outcomes achieve desired level of precision and consistency, and are aligned with ethical, lawful, and fair design criteria Ensure solution is scalable and deployable with the right tech infrastructure, and continuously monitored Ensure business purpose, governance and stakeholder engagement are properly identified and aligned Solution Lifecycle Modelling Outcome Analysis Deployment and Monitoring Data and Processing Business and Governance Source: https://www.ukfinance.org.uk/system/files/Trust%2C%20Context%20and%20Regulation%20-%20Achieving%20more%20explainable%20AI%20in%20financial%20services.pdf Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY AI in Financial Services How does an experiment-driven disruptive technology such as AI look like in a highly-regulated industry?
  • 5. How do you train models for rich yet highly restricted data that could be difficult to acquire? 18 November 2020Page 5 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
  • 6. Use Case : Know Your Customer (KYC) Page 6 KYC Social Network Employment Information Self-certification Forms Biometric Data Legal Documents Open Banking Proof of Identity Digital Footprint KYC requires a lot of time consuming repetitive manual work that involves the processing of a variety of data sources. Ubiquity, variety of data sources, and complexity involved in cognitive tasks make it a very attractive use case for AI. Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY18 November 2020
  • 7. Use Case : Know Your Customer (KYC) Page 7 Form Field Detection 2 Handwritten Text Recognition 3 Data Synthesis 1 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY18 November 2020
  • 8. Use Case : Know Your Customer (KYC) ► Data is scarce or highly restricted because of sensitive and personally-identifiable information ► SDLC and DevOps can be inadequate for ML development, consider MLOps ► Treat the scarcity of data as a technological and scientific problem ► When using synthetic or generic datasets, ensure that there’s a feedback mechanism for when live data becomes available 22 November 2020 Presentation titlePage 8
  • 9. How do you develop models when data from clients come from different geographies, have different legislations and cross- border restrictions? 18 November 2020Page 9 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
  • 10. Use Case: Multi-Jurisdiction Models Generic models and pipelines are reused, iterations produce bespoke models by incorporating country-specific data 22 November 2020 Presentation titlePage 10 Reusable Components Standard ML Pipeline: Base Model ► Common laws and treaties ► Similar industry trends and treatments ► Transactional trends ► Language models ► Common data model ► Generic dataset ► Regional market ► Cross regional market ► National market Base Model Country X Country Y Model Y v1Model X v2Model X v1 Model X v3 Model Y v2 retrain increment Country Z retrain Model Z v1 Model Y v3 MODELS XYZ ML Pipeline Iteration XYZ: Bespoke Model ► Hyperparameter Tuning ► Country-specific datasets and enrichment ► Additional categories and features
  • 11. 18 November 2020Page 11 Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY Multi-Jurisdiction Models Example – MLOps and AutoML Modelling Outcome Analysis Deployment and MonitoringData and Processing Data Prep Exploratory Data Analysis Feature Engineering Feature Selection Benchmark Metrics Model Serving (Inference) Drift Monitoring (inference) Model Build and AutoML Pipeline Hyperparameter Tuning Training CI/CD Model Serving (Train Pipeline) Retraining/ Rollback / Increment Data slicing Model Serving (Training Pipeline) Experimentation Feature Importance Drift Monitoring (Training) Model Serving (Inference) model is stale make predictions Human in the loop Consume/ Interface High confidence Low confidence Model Drift Monitoring (Data Signature) model is good • Create training (baseline) and inference dataset signatures from features • Create signatures from predictions, also called theories • Measure the distance of signatures • Population Stability Index : 𝑃𝑆𝐼 = ∑!(𝐴! − 𝐵!) ln "! #! {𝐴!, 𝐵! − 𝑓𝑟𝑒𝑞𝑢𝑒𝑛𝑐𝑦 𝑐𝑜𝑢𝑛𝑡 𝑝𝑒𝑟 𝑓𝑒𝑎𝑡𝑢𝑟𝑒 𝑏𝑢𝑐𝑘𝑒𝑡} • Numerical Parametric (should pass normality, homoskedasticity): T-test • Numerical Non-parametric: Kruskal-Wallis, Wilcoxon, Kolmogorov, Mann-Whitney-U • Categorical Features and theory testing: Pearson’s Chi-squared test • Provide pass/warning/fail logic to trigger retraining, rollback, AutoML, reinforcement learning Training Dataset Inference Dataset Model features features predictions Inference Signature Score (Distance) Training Signature Data Augmentation
  • 12. Transfer learning and Model Finetuning 18 November 2020Page 12 Use Case: Multi-Jurisdiction Models Data drift monitoring and MLOps tools Reproducible end-to-end ML pipelines and AutoML Leveraging “human in the loop” with MLOps framework and online learning Enabling components for Multi-Jurisdiction and ML at scale Time from Technical and Business SMEs are valuable, a complementing operating model and tooling would be necessary to maximise value Building and deploying bespoke models for each jurisdiction is difficult to scale without an end-to-end MLOps platform Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
  • 13. 18 November 2020Page 13 The appeal of using AI in FS lies in very rich data, the same reason that makes data very challenging to acquire. AI in FS usually involve clients in multiple jurisdictions, it is imperative to have MLOps framework and platform to develop ML at scale. Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY Key Takeaways
  • 14. Q&A 18 November 2020Page 14 Tim Santos Assistant Director | Global IT ► Global Client Technology AI ► MLOps Lead ► Timothy.Santos@uk.ey.com Mustafa Somalya Assistant Director | Global IT ► Global Client Technology AI ► ML Experimentation Lead ► Mustafa.M.Somalya@uk.ey.com Stories from the Financial Service AI Trenches: Lessons learned from building AI models in EY
  • 15. EY | Assurance | Tax | Strategy and Transactions | Consulting About EY EY is a global leader in assurance, tax, strategy, transaction and consulting services. The insights and quality services we deliver help build trust and confidence in the capital markets and in economies the world over. We develop outstanding leaders who team to deliver on our promises to all of our stakeholders. In so doing, we play a critical role in building a better working world for our people, for our clients and for our communities. EY refers to the global organization, and may refer to one or more, of the member firms of Ernst & Young Global Limited, each of which is a separate legal entity. Ernst & Young Global Limited, a UK company limited by guarantee, does not provide services to clients. Information about how EY collects and uses personal data and a description of the rights individuals have under data protection legislation are available via ey.com/privacy. For more information about our organization, please visit ey.com. This news release has been issued by EYGM Limited, a member of the global EY organization that also does not provide any services to clients. © 2020 EYGM Limited. All Rights Reserved. EYG no. ED MMYY This material has been prepared for general informational purposes only and is not intended to be relied upon as accounting, tax or other professional advice. Please refer to your advisors for specific advice.