SlideShare a Scribd company logo
1 of 36
Download to read offline
AI in Actuarial Science
Ronald Richman
3 April 2019
This presentation is given solely in my personal capacity and the views
expressed in these slides do not necessarily represent those of the AIG
Group and its subsidiaries, nor the professional organizations to which I
belong (the IFoA, ASSA or IRMSA).
Any software or code referred to in the presentation is provided as is for
demonstration purposes only, without any implied warranty, and is licensed
under the MIT License which can be viewed on the associated GitHub
repository.
Disclaimer
• Introduction
• Machine Learning
• Deep Learning
• Applications in Actuarial Science
• Discussion and Conclusion
Agenda
Introduction
• This talk is about 3 things:
• Provide context to understand deep learning
• Discuss applications of deep learning in actuarial science
• Provide code to experiment (see last slide)
• Inspiration of paper and talk:
"The future of insurance will be staffed by bots rather than brokers and AI
in favor of actuaries"- Daniel Schreiber, CEO, Lemonade Inc.
Deep Learning in the Wild
• We all use Deep Learning today:
• Google/Apple/Facebook/Instagram
/Pinterest…
• … and might use it more in the
medium term (self-driving
cars/medical applications)
• We help to train DL - Recaptcha
• DL is good enough to trick us
• But, are actuaries benefiting from
Deep Learning?
Man from www.thispersondoesnotexist.com/
YOLO from https://github.com/pjreddie/darknet/wiki/YOLO:-Real-Time-Object-
Detection
• Computer vision starting with AlexNet architecture of Krizhevsky,
Sutskever and Hinton (2012)
• Speech recognition (Hannun, Case, Casper et al. 2014).
• Natural language processing, e.g. Google’s neural translation machine
(Wu, Schuster, Chen et al. 2016)
• Winning method in 2018 M4 time series forecasting competition
(Makridakis, Spiliotis and Assimakopoulos 2018a).
• Analysis of GPS data (Brébisson, Simon, Auvolat et al. 2015)
• Analysis of tabular data (Guo and Berkhahn 2016) (plus other Kaggle
competitions)
Practical Successes of Deep Learning
• Introduction
• Machine Learning
• Deep Learning
• Applications in Actuarial Science
• Discussion and Conclusion
Agenda
Machine Learning
• Machine Learning is concerned with “the study of algorithms that allow
computer programs to automatically improve through experience”
(Mitchell 1997)
• Machine learning approach to AI - systems trained to recognize patterns within
data to acquire knowledge (Goodfellow, Bengio and Courville 2016).
• Earlier attempts to build AI systems = hard code knowledge into
knowledge bases
• But doesn’t work for highly complex tasks e.g. image recognition, scene
understanding and inferring semantic concepts (Bengio 2009)
• ML Paradigm – feed data to the machine and let it figure it out!
Map of Machine Learning
Reinforcement Learning
Regression
Deep Learning
Machine Learning
Unsupervised Learning
Supervised Learning
Classification
Supervised Learning
• Supervised learning = application of machine learning to datasets that
contain features and outputs with the goal of predicting the outputs
from the features (Friedman, Hastie and Tibshirani 2009).
X (features)
y (outputs)
So, ML is just regression, right?
• Not exactly. ML relies on a different approach to building,
parameterizing and testing statistical models, based on statistical
learning theory. For other ideas – see Richman (2018)
• Distinction between tasks of predicting and explaining, see Shmueli
(2010). Focus on predictive performance leads to:
• Building algorithms to predict responses instead of specifying a stochastic data
generating model (Breiman 2001)…
• … favouring models with good predictive performance at expense of
intepretablity.
• Accepting bias in models if this is expected to reduce the overall prediction error.
• Quantifying predictive error (i.e. out-of-sample error)
Unsupervised learning
• Unsupervised learning = application of machine learning to datasets
containing only features to find structure within these datasets (Sutton
and Barto 2018).
• Task of unsupervised learning is to find meaningful patterns using only
the features.
• Recent examples:
• modelling yield curves using Principal Components Analysis (PCA) for the
Interest Rate SCR in SII
• mortality modelling – Lee-Carter model uses PCA to reconstruct mortality curves
The ML Actuary
• Actuarial problems are often supervised regressions =>
• If an actuarial problem can be expressed as a regression, then machine
and deep learning techniques can be applied:
• P&C pricing
• IBNR reserving
• Experience analysis
• Mortality modelling
• Lite valuation models
• But don’t forget about unsupervised learning either!
• Introduction
• Machine Learning
• Deep Learning
• Applications in Actuarial Science
• Discussion and Conclusion
Agenda
Feature Engineering (Model Specification)
• Suppose we realize that Claims depends on Age^2 => enlarge feature
space by adding Age^2 to data. Other options – add interactions/basis
functions e.g. splines
X (features)
y (outputs)
0.06
0.09
0.12
20 40 60 80
DrivAge
rate
Representation learning
• In many domains, including actuarial science, traditional approach to
designing machine learning systems relies on humans for feature
engineering. But:
• designing features is time consuming/tedious
• relies on expert knowledge that may not be transferable to a new domain
• becomes difficult with very high dimensional data
• Representation Learning = ML technique where algorithms
automatically design features that are optimal for a particular task.
Traditional examples are PCA (unsupervised) and PLS (supervised)
• Simple/naive RL approaches often fail when applied to high dimensional
data
Deep Learning
• Deep Learning = representation learning technique that automatically
constructs hierarchies of complex features
• Modern example of deep learning is feed-forward neural networks,
which are multi-layered machine learning models, where each layer
learns a new representation of the features.
• The principle: Provide data to the network and let it figure out what and
how to learn.
• Desiderata for AI by Bengio (2009):
• “Ability to learn with little human input the low-level, intermediate, and high-
level abstractions that would be useful to represent the kind of complex
functions needed for AI tasks.”
• Single layer neural network
• Circles = variables
• Lines = connections between inputs
and outputs
• Input layer holds the variables that are
input to the network…
• … multiplied by weights (coefficients)
to get to result
• Single layer neural network is a linear
regression!
Single Layer NN = Linear Regression
• Deep = multiple layers
• Feedforward = data travels from left to
right
• Fully connected network = all neurons
in layer connected to all neurons in
previous layer
• More complicated representations of
input data learned in hidden layers
• Subsequent layers represent
regressions on the variables in hidden
layers
Deep Feedforward Net
• Several specialized types of neural networks depending on purpose
• Embedding layer learns dense vector transformation of sparse input
vectors and clusters similar categories together; see Section 3.3 in
Richman (2018)
• Embeddings often capture actuarially meaningful relationships in
categorical data – can be interpreted as relativities
Embedding layers
Actuary Accountant Quant Statistician Economist Underwriter
Actuary 1 0 0 0 0 0
Accountant 0 1 0 0 0 0
Quant 0 0 1 0 0 0
Statistician 0 0 0 1 0 0
Economist 0 0 0 0 1 0
Underwriter 0 0 0 0 0 1
Finance Math Stastistics Liabilities
Actuary 0.5 0.25 0.5 0.5
Accountant 0.5 0 0 0
Quant 0.75 0.25 0.25 0
Statistician 0 0.5 0.85 0
Economist 0.5 0.25 0.5 0
Underwriter 0 0.1 0.05 0.75
Summary of architectures
• Key principle - Use architecture that expresses useful priors about the
data => major performance gains:
• Deep feedforward network – structured (tabular) data
• Embedding layers – categorical data (or real values restructured as
categorical data)
• Deep autoencoder (non-linear PCA) – unsupervised learning
• Convolutional neural network – data with spatial/temporal dimension
e.g. images and time series
• Recurrent neural network – data with temporal structure
• Introduction
• Machine Learning
• Deep Learning
• Applications in Actuarial Science
• Discussion and Conclusion
Agenda
Summary of architectures
• Searches within actuarial literature confined to articles written after
2006, when current resurgence of interest in neural networks began
(Goodfellow, Bengio and Courville 2016).
• Pricing of non-life insurance (Noll, Salzmann and Wüthrich 2018; Wüthrich and
Buser 2018) X
• IBNR Reserving (Kuo 2018b; Wüthrich 2018b; Zarkadoulas 2017) X
• Analysis of telematics data (Gao, Meng and Wüthrich 2018; Gao and Wüthrich
2017; Wüthrich and Buser 2018; Wüthrich 2017) X
• Mortality forecasting (Hainaut 2018; Richman and Wüthrich 2018)
• Approximating nested stochastic simulations (Hejazi and Jackson 2016, 2017)
• Forecasting financial markets (Smith, Beyers and De Villiers 2016)
Non-life pricing (1)
• Non-life Pricing (tabular data fit with GLMs) seems like obvious
application of ML/DL
• Noll, Salzmann and Wüthrich (2018) is tutorial paper (with code) in
which apply GLMs, regression trees, boosting and (shallow) neural
networks to French TPL dataset to model frequency
• ML approaches outperform GLM
• Boosted tree performs about as well as neural network…
• ….mainly because ML approaches capture some interactions automatically
• In own analysis, found that surprisingly, off the shelf approaches do not perform
particularly well on frequency models.
• These include XGBoost and ‘vanilla’ deep networks
Non-life pricing (2)
• Deep neural network applied to
raw data (i.e. no feature
engineering) did not perform
well
• Embedding layers provide
significant gain in performance
over GLM and other NN
architectures
• Layers learn a (multi-
dimensional) schedule of
relativities at each age (shown
after applying t-SNE)
• Transfer learning – can boost
performance of GLM
-50
-25
0
25
20 40 60 80
Drivage
value
variable dim1 dim2
Model OutOfSample
GLM 0.3217
GLM_Keras 0.3217
NN_shallow 0.3150
NN_no_FE 0.3258
NN_embed 0.3068
GLM_embed 0.3194
NN_learned_embed 0.2925
IBNR Reserving
• IBNR Reserving boils down to regression of future reported claim
amounts on past => good potential for ML/DL approaches
• Granular reserving for claim type/property damaged/region/age etc difficult
with normal chain-ladder approach as too much data to derive LDFs
judgementally
• Wüthrich (2018b) (who provides code + data) extends chain-ladder as a
regression model to incorporate features into derivation of LDF
• DeepTriangle of Kuo (2018b) is less traditional approach. Joint prediction of Paid
+ Outstanding claims using Recurrent Neural Networks and Embedding Layers
• Better performance than CL/GLM/Bayesian techniques on Schedule P data from
USA
j
i
j
i C
X
f
C ,
, ).
(
ˆ 
1
Telematics data (1)
• Telematics produces high dimensional data (position, velocity,
acceleration, road type, time of day) at high frequencies – not
immediately obvious how to incorporate into pricing
• Sophisticated approaches to analysing telematics data from outside actuarial
literature using recurrent neural networks plus embedding layers such as Dong,
Li, Yao et al. (2016), Dong, Yuan, Yang et al. (2017) and Wijnands, Thompson,
Aschwanden et al. (2018)
• Within actuarial literature, series of papers by Wüthrich (2017), Gao and
Wüthrich (2017) and Gao, Meng and Wüthrich (2018) discuss analysis of velocity
and acceleration information from telematics data feed
• Focus on v-a heatmaps which capture velocity and acceleration profile of driver
but these are also high dimensional
Telematics data (2)
• Heatmap generated using code in
Wüthrich (2018c)
• Shows density i.e. probability that driver is
found at location in heatmap
• Wüthrich (2017) and Gao and Wüthrich
(2017) apply unsupervised learning
methods to summarize v-a heat-maps:
• K-means, PCA and shallow auto-encoders
• Stunning result = continuous features are
highly predictive
• Why? Goodfellow, Bengio and Courville
(2016) : “basic idea is features useful for
the unsupervised task also be useful for
the supervised learning task”
0.000
0.005
0.010
0.015
6 8 10 12 14 16 18 20
-2
-1
0
1
2
v-a heatmap of driver 20
speed in km/h
acceleration
in
m/s^2
• Introduction
• Machine Learning
• Deep Learning
• Applications in Actuarial Science
• Discussion and Conclusion
Agenda
Discussion
• Emphasis on predictive performance and potential gains of moving from
traditional actuarial and statistical methods to machine and deep
learning approaches.
• Measurement framework utilized within machine learning – focus on
testing predictive performance => focus on measurable improvements
in predictive performance led to refinements and enhancements of
deep learning architectures
• Learned representations from deep neural networks often have readily
interpretable meaning
• Very useful for high-frequency and high-dimensional data
Conclusion
• Deep learning can enhance the predictive power of models built by
actuaries
• Application of deep learning techniques to actuarial problems seems to
be rapidly emerging field within actuarial science => appears reasonable
to predict more advances in the near-term.
• Deep learning is not a panacea for all modelling issues - applied to the
wrong domain, deep learning will not produce better or more useful
results than other techniques.
• Winter might be coming – if actuaries do not take the lead in applying
deep learning, someone else will.
Bengio, Y. 2009. "Learning deep architectures for AI", Foundations and trends® in Machine Learning 2(1):1-127.
De Brébisson, A., É. Simon, A. Auvolat, P. Vincent et al. 2015. "Artificial neural networks applied to taxi destination prediction", arXiv arXiv:1508.00021
Dong, W., J. Li, R. Yao, C. Li et al. 2016. "Characterizing driving styles with deep learning", arXiv arXiv:1607.03611
Dong, W., T. Yuan, K. Yang, C. Li et al. 2017. "Autoencoder regularized network for driving style representation learning", arXiv arXiv:1701.01272
Friedman, J., T. Hastie and R. Tibshirani. 2009. The Elements of Statistical Learning : Data Mining, Inference, and Prediction. New York: Springer-Verlag.
http://dx.doi.org/10.1007/978-0-387-84858-7.
Gao, G., S. Meng and M. Wüthrich. 2018. Claims Frequency Modeling Using Telematics Car Driving Data. SSRN. https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3102371.
Accessed: 29 June 2018.
Gao, G. and M. Wüthrich. 2017. Feature Extraction from Telematics Car Driving Heatmaps. SSRN. https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3070069. Accessed:
June 29 2018.
Goodfellow, I., Y. Bengio and A. Courville. 2016. Deep Learning. MIT Press.
Guo, C. and F. Berkhahn. 2016. "Entity embeddings of categorical variables", arXiv arXiv:1604.06737
Hainaut, D. 2018. "A neural-network analyzer for mortality forecast", Astin Bulletin 48(2):481-508.
Hannun, A., C. Case, J. Casper, B. Catanzaro et al. 2014. "Deep speech: Scaling up end-to-end speech recognition", arXiv arXiv:1412.5567
Hejazi, S. and K. Jackson. 2016. "A neural network approach to efficient valuation of large portfolios of variable annuities", Insurance: Mathematics and Economics 70:169-181.
Hejazi, S. and K. Jackson. 2017. "Efficient valuation of SCR via a neural network approach", Journal of Computational and Applied Mathematics 313:427-439.
Krizhevsky, A., I. Sutskever and G. Hinton. 2012. "Imagenet classification with deep convolutional neural networks," Paper presented at Advances in Neural Information
Processing Systems. 1097-1105.
Kuo, K. 2018. "DeepTriangle: A Deep Learning Approach to Loss Reserving", arXiv arXiv:1804.09253
References (1)
Makridakis, S., E. Spiliotis and V. Assimakopoulos. 2018. "The M4 Competition: Results, findings, conclusion and way forward", International Journal of Forecasting
Mitchell, T. 1997. Machine learning. McGraw-Hill Boston, MA.
Noll, A., R. Salzmann and M. Wüthrich. 2018. Case Study: French Motor Third-Party Liability Claims. SSRN. https://ssrn.com/abstract=3164764 Accessed: 17 June 2018.
Richman, R. 2018. Thoughts on the M4 Conference. http://ronaldrichman.co.za/2018/12/17/thoughts-on-the-m4-conference/. Accessed: 20 March 2019.
Richman, R. and M. Wüthrich. 2018. "A Neural Network Extension of the Lee-Carter Model to Multiple Populations", Available at SSRN: https://ssrn.com/abstract=3270877
Schreiber, D. 2017. The Future of Insurance. DIA Munich 2017: https://www.youtube.com/watch?time_continue=1&v=LDOhFHJqKqI. Accessed: 17 June 2018.
Shmueli, G. 2010. "To explain or to predict?", Statistical Science:289-310.
Smith, M., F. Beyers and J. De Villiers. 2016. "A method of parameterising a feed forward multi-layered perceptron artificial neural network, with reference to South African
financial markets", South African Actuarial Journal 16(1):35-67.
Sutton, R. and A. Barto. 2018. Reinforcement learning: An introduction, Second Edition. MIT Press.
Wijnands, J., J. Thompson, G. Aschwanden and M. Stevenson. 2018. "Identifying behavioural change among drivers using Long Short-Term Memory recurrent neural networks",
Transportation Research Part F: Traffic Psychology and Behaviour 53:34-49.
Wu, Y., M. Schuster, Z. Chen, Q. Le et al. 2016. "Google's neural machine translation system: Bridging the gap between human and machine translation", arXiv arXiv:1609.08144
Wüthrich, M. 2018a. "Neural networks applied to chain–ladder reserving", European Actuarial Journal 8(2):407-436.
Wüthrich, M. 2018b. v-a Heatmap Simulation Machine. https://people.math.ethz.ch/~wueth/simulation.html. Accessed: 1 July 2018.
Wüthrich, M. and C. Buser. 2018. Data analytics for non-life insurance pricing. Swiss Finance Institute Research Paper. https://ssrn.com/abstract=2870308. Accessed: 17 June
2018.
Wüthrich, M.V. 2017. "Covariate selection from telematics car driving data", European Actuarial Journal 7(1):89-108.
Zarkadoulas, A. 2017. "Neural network algorithms for the development of individual losses." Unpublished thesis, Lausanne: University of Lausanne.
References (2)
Get involved
• Insurance Data Science conference - 14 June 2019
• ETH Zurich
• https://insurancedatascience.org/
• Amazing line-up of papers, presentations and speakers!
• Kasa.ai – launching soon, led by Kevin Kuo of Rstudio
• An open research group encouraging innovation in insurance analytics
• Some interesting projects planned
Thanks for listening - Any questions?
Paper: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3218082
Contact: ron@ronaldrichman.co.za
AI in Actuarial Science: Applications and Deep Learning

More Related Content

Similar to AI in Actuarial Science: Applications and Deep Learning

Era ofdataeconomyv4short
Era ofdataeconomyv4shortEra ofdataeconomyv4short
Era ofdataeconomyv4shortJun Miyazaki
 
The state of the art in integrating machine learning into visual analytics
The state of the art in integrating machine learning into visual analyticsThe state of the art in integrating machine learning into visual analytics
The state of the art in integrating machine learning into visual analyticsCagatay Turkay
 
Traditional Machine Learning and Deep Learning on OpenPOWER/POWER systems
Traditional Machine Learning and Deep Learning on OpenPOWER/POWER systemsTraditional Machine Learning and Deep Learning on OpenPOWER/POWER systems
Traditional Machine Learning and Deep Learning on OpenPOWER/POWER systemsGanesan Narayanasamy
 
Machine learning with an effective tools of data visualization for big data
Machine learning with an effective tools of data visualization for big dataMachine learning with an effective tools of data visualization for big data
Machine learning with an effective tools of data visualization for big dataKannanRamasamy25
 
H2O World - Intro to Data Science with Erin Ledell
H2O World - Intro to Data Science with Erin LedellH2O World - Intro to Data Science with Erin Ledell
H2O World - Intro to Data Science with Erin LedellSri Ambati
 
WELCOME TO AI PROJECT shidhant mittaal.pptx
WELCOME TO AI PROJECT shidhant mittaal.pptxWELCOME TO AI PROJECT shidhant mittaal.pptx
WELCOME TO AI PROJECT shidhant mittaal.pptx9D38SHIDHANTMITTAL
 
Proposing an Interactive Audit Pipeline for Visual Privacy Research
Proposing an Interactive Audit Pipeline for Visual Privacy ResearchProposing an Interactive Audit Pipeline for Visual Privacy Research
Proposing an Interactive Audit Pipeline for Visual Privacy ResearchChristan Grant
 
Introduction to XAI
Introduction to XAIIntroduction to XAI
Introduction to XAINamhoon Kim
 
لموعد الإثنين 03 يناير 2022 143 مبادرة #تواصل_تطوير المحاضرة ال 143 من المباد...
لموعد الإثنين 03 يناير 2022 143 مبادرة #تواصل_تطوير المحاضرة ال 143 من المباد...لموعد الإثنين 03 يناير 2022 143 مبادرة #تواصل_تطوير المحاضرة ال 143 من المباد...
لموعد الإثنين 03 يناير 2022 143 مبادرة #تواصل_تطوير المحاضرة ال 143 من المباد...Egyptian Engineers Association
 
Deciphering AI - Unlocking the Black Box of AIML with State-of-the-Art Techno...
Deciphering AI - Unlocking the Black Box of AIML with State-of-the-Art Techno...Deciphering AI - Unlocking the Black Box of AIML with State-of-the-Art Techno...
Deciphering AI - Unlocking the Black Box of AIML with State-of-the-Art Techno...Analytics India Magazine
 
Computational Thinking in the Workforce and Next Generation Science Standards...
Computational Thinking in the Workforce and Next Generation Science Standards...Computational Thinking in the Workforce and Next Generation Science Standards...
Computational Thinking in the Workforce and Next Generation Science Standards...Josh Sheldon
 
Machine Learning 2 deep Learning: An Intro
Machine Learning 2 deep Learning: An IntroMachine Learning 2 deep Learning: An Intro
Machine Learning 2 deep Learning: An IntroSi Krishan
 
Fast Parallel Similarity Calculations with FPGA Hardware
Fast Parallel Similarity Calculations with FPGA HardwareFast Parallel Similarity Calculations with FPGA Hardware
Fast Parallel Similarity Calculations with FPGA HardwareTigerGraph
 
Human in the loop: Bayesian Rules Enabling Explainable AI
Human in the loop: Bayesian Rules Enabling Explainable AIHuman in the loop: Bayesian Rules Enabling Explainable AI
Human in the loop: Bayesian Rules Enabling Explainable AIPramit Choudhary
 
Lecture 2 - Introduction to Machine Learning, a lecture in subject module Sta...
Lecture 2 - Introduction to Machine Learning, a lecture in subject module Sta...Lecture 2 - Introduction to Machine Learning, a lecture in subject module Sta...
Lecture 2 - Introduction to Machine Learning, a lecture in subject module Sta...Maninda Edirisooriya
 
Art-Making Generative AI and Instructional Design Work: An Early Brainstorm
Art-Making Generative AI and Instructional Design Work:  An Early BrainstormArt-Making Generative AI and Instructional Design Work:  An Early Brainstorm
Art-Making Generative AI and Instructional Design Work: An Early BrainstormShalin Hai-Jew
 

Similar to AI in Actuarial Science: Applications and Deep Learning (20)

Internship Presentation.pdf
Internship Presentation.pdfInternship Presentation.pdf
Internship Presentation.pdf
 
Era ofdataeconomyv4short
Era ofdataeconomyv4shortEra ofdataeconomyv4short
Era ofdataeconomyv4short
 
The state of the art in integrating machine learning into visual analytics
The state of the art in integrating machine learning into visual analyticsThe state of the art in integrating machine learning into visual analytics
The state of the art in integrating machine learning into visual analytics
 
Traditional Machine Learning and Deep Learning on OpenPOWER/POWER systems
Traditional Machine Learning and Deep Learning on OpenPOWER/POWER systemsTraditional Machine Learning and Deep Learning on OpenPOWER/POWER systems
Traditional Machine Learning and Deep Learning on OpenPOWER/POWER systems
 
ODSC APAC 2022 - Explainable AI
ODSC APAC 2022 - Explainable AIODSC APAC 2022 - Explainable AI
ODSC APAC 2022 - Explainable AI
 
Machine learning with an effective tools of data visualization for big data
Machine learning with an effective tools of data visualization for big dataMachine learning with an effective tools of data visualization for big data
Machine learning with an effective tools of data visualization for big data
 
H2O World - Intro to Data Science with Erin Ledell
H2O World - Intro to Data Science with Erin LedellH2O World - Intro to Data Science with Erin Ledell
H2O World - Intro to Data Science with Erin Ledell
 
Ai in finance
Ai in financeAi in finance
Ai in finance
 
WELCOME TO AI PROJECT shidhant mittaal.pptx
WELCOME TO AI PROJECT shidhant mittaal.pptxWELCOME TO AI PROJECT shidhant mittaal.pptx
WELCOME TO AI PROJECT shidhant mittaal.pptx
 
Proposing an Interactive Audit Pipeline for Visual Privacy Research
Proposing an Interactive Audit Pipeline for Visual Privacy ResearchProposing an Interactive Audit Pipeline for Visual Privacy Research
Proposing an Interactive Audit Pipeline for Visual Privacy Research
 
Introduction to XAI
Introduction to XAIIntroduction to XAI
Introduction to XAI
 
لموعد الإثنين 03 يناير 2022 143 مبادرة #تواصل_تطوير المحاضرة ال 143 من المباد...
لموعد الإثنين 03 يناير 2022 143 مبادرة #تواصل_تطوير المحاضرة ال 143 من المباد...لموعد الإثنين 03 يناير 2022 143 مبادرة #تواصل_تطوير المحاضرة ال 143 من المباد...
لموعد الإثنين 03 يناير 2022 143 مبادرة #تواصل_تطوير المحاضرة ال 143 من المباد...
 
Deciphering AI - Unlocking the Black Box of AIML with State-of-the-Art Techno...
Deciphering AI - Unlocking the Black Box of AIML with State-of-the-Art Techno...Deciphering AI - Unlocking the Black Box of AIML with State-of-the-Art Techno...
Deciphering AI - Unlocking the Black Box of AIML with State-of-the-Art Techno...
 
Computational Thinking in the Workforce and Next Generation Science Standards...
Computational Thinking in the Workforce and Next Generation Science Standards...Computational Thinking in the Workforce and Next Generation Science Standards...
Computational Thinking in the Workforce and Next Generation Science Standards...
 
Machine Learning 2 deep Learning: An Intro
Machine Learning 2 deep Learning: An IntroMachine Learning 2 deep Learning: An Intro
Machine Learning 2 deep Learning: An Intro
 
Fast Parallel Similarity Calculations with FPGA Hardware
Fast Parallel Similarity Calculations with FPGA HardwareFast Parallel Similarity Calculations with FPGA Hardware
Fast Parallel Similarity Calculations with FPGA Hardware
 
Human in the loop: Bayesian Rules Enabling Explainable AI
Human in the loop: Bayesian Rules Enabling Explainable AIHuman in the loop: Bayesian Rules Enabling Explainable AI
Human in the loop: Bayesian Rules Enabling Explainable AI
 
Lecture 2 - Introduction to Machine Learning, a lecture in subject module Sta...
Lecture 2 - Introduction to Machine Learning, a lecture in subject module Sta...Lecture 2 - Introduction to Machine Learning, a lecture in subject module Sta...
Lecture 2 - Introduction to Machine Learning, a lecture in subject module Sta...
 
Art-Making Generative AI and Instructional Design Work: An Early Brainstorm
Art-Making Generative AI and Instructional Design Work:  An Early BrainstormArt-Making Generative AI and Instructional Design Work:  An Early Brainstorm
Art-Making Generative AI and Instructional Design Work: An Early Brainstorm
 
Data-X-Sparse-v2
Data-X-Sparse-v2Data-X-Sparse-v2
Data-X-Sparse-v2
 

More from Audrey Britton

Developing And Writing A Diversity Statement Cent
Developing And Writing A Diversity Statement CentDeveloping And Writing A Diversity Statement Cent
Developing And Writing A Diversity Statement CentAudrey Britton
 
RESEARCH PAPER WRITING FORMAT Tanh
RESEARCH PAPER WRITING FORMAT TanhRESEARCH PAPER WRITING FORMAT Tanh
RESEARCH PAPER WRITING FORMAT TanhAudrey Britton
 
How To Plan And Write An Essay Fast. A Teacher Tells All. Writers Bureau
How To Plan And Write An Essay Fast. A Teacher Tells All. Writers BureauHow To Plan And Write An Essay Fast. A Teacher Tells All. Writers Bureau
How To Plan And Write An Essay Fast. A Teacher Tells All. Writers BureauAudrey Britton
 
Disney Stationary Tinkerbell And Friends, Disney Scrapb
Disney Stationary Tinkerbell And Friends, Disney ScrapbDisney Stationary Tinkerbell And Friends, Disney Scrapb
Disney Stationary Tinkerbell And Friends, Disney ScrapbAudrey Britton
 
Websites That Write Essays For You Top 10 Services
Websites That Write Essays For You Top 10 ServicesWebsites That Write Essays For You Top 10 Services
Websites That Write Essays For You Top 10 ServicesAudrey Britton
 
Digital Elephant Writing Paper Printable Elephant P
Digital Elephant Writing Paper Printable Elephant PDigital Elephant Writing Paper Printable Elephant P
Digital Elephant Writing Paper Printable Elephant PAudrey Britton
 
Top Experts To Write Paper For Money In All Disciplines
Top Experts To Write Paper For Money In All DisciplinesTop Experts To Write Paper For Money In All Disciplines
Top Experts To Write Paper For Money In All DisciplinesAudrey Britton
 
This May Be The Worst College Paper Ever WrittenBut A Whistleblower ...
This May Be The Worst College Paper Ever WrittenBut A Whistleblower ...This May Be The Worst College Paper Ever WrittenBut A Whistleblower ...
This May Be The Worst College Paper Ever WrittenBut A Whistleblower ...Audrey Britton
 
What Cause Climate Change Essay. The Causes Of Cli
What Cause Climate Change Essay. The Causes Of CliWhat Cause Climate Change Essay. The Causes Of Cli
What Cause Climate Change Essay. The Causes Of CliAudrey Britton
 
Essay Writing Service Write My Essay Essay Writing Help
Essay Writing Service Write My Essay Essay Writing HelpEssay Writing Service Write My Essay Essay Writing Help
Essay Writing Service Write My Essay Essay Writing HelpAudrey Britton
 
Thesis Vs. Dissertation Vs. Research Paper - Basic Dif
Thesis Vs. Dissertation Vs. Research Paper - Basic DifThesis Vs. Dissertation Vs. Research Paper - Basic Dif
Thesis Vs. Dissertation Vs. Research Paper - Basic DifAudrey Britton
 
013 Good Persuasive Essay Topics Example Thatsno
013 Good Persuasive Essay Topics Example Thatsno013 Good Persuasive Essay Topics Example Thatsno
013 Good Persuasive Essay Topics Example ThatsnoAudrey Britton
 
Using Quotes In An Essay Ultimate B
Using Quotes In An Essay Ultimate BUsing Quotes In An Essay Ultimate B
Using Quotes In An Essay Ultimate BAudrey Britton
 
Brown Paper Texture Background Stock Photos Creative Market
Brown Paper Texture Background  Stock Photos  Creative MarketBrown Paper Texture Background  Stock Photos  Creative Market
Brown Paper Texture Background Stock Photos Creative MarketAudrey Britton
 
Critique Paper Example How To Write An Article Cr
Critique Paper Example  How To Write An Article CrCritique Paper Example  How To Write An Article Cr
Critique Paper Example How To Write An Article CrAudrey Britton
 
Write My Paper Hub - Your Reliable Academic Writing Assi
Write My Paper Hub - Your Reliable Academic Writing AssiWrite My Paper Hub - Your Reliable Academic Writing Assi
Write My Paper Hub - Your Reliable Academic Writing AssiAudrey Britton
 
ITALIAN LESSON Italian Writing 1 By DrakeCroft On
ITALIAN LESSON Italian Writing 1 By DrakeCroft OnITALIAN LESSON Italian Writing 1 By DrakeCroft On
ITALIAN LESSON Italian Writing 1 By DrakeCroft OnAudrey Britton
 
Manuscript Paper Japanese Writing Paper Stock Illustra
Manuscript Paper Japanese Writing Paper Stock IllustraManuscript Paper Japanese Writing Paper Stock Illustra
Manuscript Paper Japanese Writing Paper Stock IllustraAudrey Britton
 
Star Writing Template Freebie By Cupcakes A
Star Writing Template Freebie By Cupcakes AStar Writing Template Freebie By Cupcakes A
Star Writing Template Freebie By Cupcakes AAudrey Britton
 
Short Paragraph On Water Pollution. Paragraph On Water Pollution ...
Short Paragraph On Water Pollution. Paragraph On Water Pollution ...Short Paragraph On Water Pollution. Paragraph On Water Pollution ...
Short Paragraph On Water Pollution. Paragraph On Water Pollution ...Audrey Britton
 

More from Audrey Britton (20)

Developing And Writing A Diversity Statement Cent
Developing And Writing A Diversity Statement CentDeveloping And Writing A Diversity Statement Cent
Developing And Writing A Diversity Statement Cent
 
RESEARCH PAPER WRITING FORMAT Tanh
RESEARCH PAPER WRITING FORMAT TanhRESEARCH PAPER WRITING FORMAT Tanh
RESEARCH PAPER WRITING FORMAT Tanh
 
How To Plan And Write An Essay Fast. A Teacher Tells All. Writers Bureau
How To Plan And Write An Essay Fast. A Teacher Tells All. Writers BureauHow To Plan And Write An Essay Fast. A Teacher Tells All. Writers Bureau
How To Plan And Write An Essay Fast. A Teacher Tells All. Writers Bureau
 
Disney Stationary Tinkerbell And Friends, Disney Scrapb
Disney Stationary Tinkerbell And Friends, Disney ScrapbDisney Stationary Tinkerbell And Friends, Disney Scrapb
Disney Stationary Tinkerbell And Friends, Disney Scrapb
 
Websites That Write Essays For You Top 10 Services
Websites That Write Essays For You Top 10 ServicesWebsites That Write Essays For You Top 10 Services
Websites That Write Essays For You Top 10 Services
 
Digital Elephant Writing Paper Printable Elephant P
Digital Elephant Writing Paper Printable Elephant PDigital Elephant Writing Paper Printable Elephant P
Digital Elephant Writing Paper Printable Elephant P
 
Top Experts To Write Paper For Money In All Disciplines
Top Experts To Write Paper For Money In All DisciplinesTop Experts To Write Paper For Money In All Disciplines
Top Experts To Write Paper For Money In All Disciplines
 
This May Be The Worst College Paper Ever WrittenBut A Whistleblower ...
This May Be The Worst College Paper Ever WrittenBut A Whistleblower ...This May Be The Worst College Paper Ever WrittenBut A Whistleblower ...
This May Be The Worst College Paper Ever WrittenBut A Whistleblower ...
 
What Cause Climate Change Essay. The Causes Of Cli
What Cause Climate Change Essay. The Causes Of CliWhat Cause Climate Change Essay. The Causes Of Cli
What Cause Climate Change Essay. The Causes Of Cli
 
Essay Writing Service Write My Essay Essay Writing Help
Essay Writing Service Write My Essay Essay Writing HelpEssay Writing Service Write My Essay Essay Writing Help
Essay Writing Service Write My Essay Essay Writing Help
 
Thesis Vs. Dissertation Vs. Research Paper - Basic Dif
Thesis Vs. Dissertation Vs. Research Paper - Basic DifThesis Vs. Dissertation Vs. Research Paper - Basic Dif
Thesis Vs. Dissertation Vs. Research Paper - Basic Dif
 
013 Good Persuasive Essay Topics Example Thatsno
013 Good Persuasive Essay Topics Example Thatsno013 Good Persuasive Essay Topics Example Thatsno
013 Good Persuasive Essay Topics Example Thatsno
 
Using Quotes In An Essay Ultimate B
Using Quotes In An Essay Ultimate BUsing Quotes In An Essay Ultimate B
Using Quotes In An Essay Ultimate B
 
Brown Paper Texture Background Stock Photos Creative Market
Brown Paper Texture Background  Stock Photos  Creative MarketBrown Paper Texture Background  Stock Photos  Creative Market
Brown Paper Texture Background Stock Photos Creative Market
 
Critique Paper Example How To Write An Article Cr
Critique Paper Example  How To Write An Article CrCritique Paper Example  How To Write An Article Cr
Critique Paper Example How To Write An Article Cr
 
Write My Paper Hub - Your Reliable Academic Writing Assi
Write My Paper Hub - Your Reliable Academic Writing AssiWrite My Paper Hub - Your Reliable Academic Writing Assi
Write My Paper Hub - Your Reliable Academic Writing Assi
 
ITALIAN LESSON Italian Writing 1 By DrakeCroft On
ITALIAN LESSON Italian Writing 1 By DrakeCroft OnITALIAN LESSON Italian Writing 1 By DrakeCroft On
ITALIAN LESSON Italian Writing 1 By DrakeCroft On
 
Manuscript Paper Japanese Writing Paper Stock Illustra
Manuscript Paper Japanese Writing Paper Stock IllustraManuscript Paper Japanese Writing Paper Stock Illustra
Manuscript Paper Japanese Writing Paper Stock Illustra
 
Star Writing Template Freebie By Cupcakes A
Star Writing Template Freebie By Cupcakes AStar Writing Template Freebie By Cupcakes A
Star Writing Template Freebie By Cupcakes A
 
Short Paragraph On Water Pollution. Paragraph On Water Pollution ...
Short Paragraph On Water Pollution. Paragraph On Water Pollution ...Short Paragraph On Water Pollution. Paragraph On Water Pollution ...
Short Paragraph On Water Pollution. Paragraph On Water Pollution ...
 

Recently uploaded

Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 

Recently uploaded (20)

Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 

AI in Actuarial Science: Applications and Deep Learning

  • 1. AI in Actuarial Science Ronald Richman 3 April 2019
  • 2. This presentation is given solely in my personal capacity and the views expressed in these slides do not necessarily represent those of the AIG Group and its subsidiaries, nor the professional organizations to which I belong (the IFoA, ASSA or IRMSA). Any software or code referred to in the presentation is provided as is for demonstration purposes only, without any implied warranty, and is licensed under the MIT License which can be viewed on the associated GitHub repository. Disclaimer
  • 3. • Introduction • Machine Learning • Deep Learning • Applications in Actuarial Science • Discussion and Conclusion Agenda
  • 4. Introduction • This talk is about 3 things: • Provide context to understand deep learning • Discuss applications of deep learning in actuarial science • Provide code to experiment (see last slide) • Inspiration of paper and talk: "The future of insurance will be staffed by bots rather than brokers and AI in favor of actuaries"- Daniel Schreiber, CEO, Lemonade Inc.
  • 5. Deep Learning in the Wild • We all use Deep Learning today: • Google/Apple/Facebook/Instagram /Pinterest… • … and might use it more in the medium term (self-driving cars/medical applications) • We help to train DL - Recaptcha • DL is good enough to trick us • But, are actuaries benefiting from Deep Learning? Man from www.thispersondoesnotexist.com/ YOLO from https://github.com/pjreddie/darknet/wiki/YOLO:-Real-Time-Object- Detection
  • 6. • Computer vision starting with AlexNet architecture of Krizhevsky, Sutskever and Hinton (2012) • Speech recognition (Hannun, Case, Casper et al. 2014). • Natural language processing, e.g. Google’s neural translation machine (Wu, Schuster, Chen et al. 2016) • Winning method in 2018 M4 time series forecasting competition (Makridakis, Spiliotis and Assimakopoulos 2018a). • Analysis of GPS data (Brébisson, Simon, Auvolat et al. 2015) • Analysis of tabular data (Guo and Berkhahn 2016) (plus other Kaggle competitions) Practical Successes of Deep Learning
  • 7. • Introduction • Machine Learning • Deep Learning • Applications in Actuarial Science • Discussion and Conclusion Agenda
  • 8. Machine Learning • Machine Learning is concerned with “the study of algorithms that allow computer programs to automatically improve through experience” (Mitchell 1997) • Machine learning approach to AI - systems trained to recognize patterns within data to acquire knowledge (Goodfellow, Bengio and Courville 2016). • Earlier attempts to build AI systems = hard code knowledge into knowledge bases • But doesn’t work for highly complex tasks e.g. image recognition, scene understanding and inferring semantic concepts (Bengio 2009) • ML Paradigm – feed data to the machine and let it figure it out!
  • 9. Map of Machine Learning Reinforcement Learning Regression Deep Learning Machine Learning Unsupervised Learning Supervised Learning Classification
  • 10. Supervised Learning • Supervised learning = application of machine learning to datasets that contain features and outputs with the goal of predicting the outputs from the features (Friedman, Hastie and Tibshirani 2009). X (features) y (outputs)
  • 11. So, ML is just regression, right? • Not exactly. ML relies on a different approach to building, parameterizing and testing statistical models, based on statistical learning theory. For other ideas – see Richman (2018) • Distinction between tasks of predicting and explaining, see Shmueli (2010). Focus on predictive performance leads to: • Building algorithms to predict responses instead of specifying a stochastic data generating model (Breiman 2001)… • … favouring models with good predictive performance at expense of intepretablity. • Accepting bias in models if this is expected to reduce the overall prediction error. • Quantifying predictive error (i.e. out-of-sample error)
  • 12. Unsupervised learning • Unsupervised learning = application of machine learning to datasets containing only features to find structure within these datasets (Sutton and Barto 2018). • Task of unsupervised learning is to find meaningful patterns using only the features. • Recent examples: • modelling yield curves using Principal Components Analysis (PCA) for the Interest Rate SCR in SII • mortality modelling – Lee-Carter model uses PCA to reconstruct mortality curves
  • 13. The ML Actuary • Actuarial problems are often supervised regressions => • If an actuarial problem can be expressed as a regression, then machine and deep learning techniques can be applied: • P&C pricing • IBNR reserving • Experience analysis • Mortality modelling • Lite valuation models • But don’t forget about unsupervised learning either!
  • 14. • Introduction • Machine Learning • Deep Learning • Applications in Actuarial Science • Discussion and Conclusion Agenda
  • 15. Feature Engineering (Model Specification) • Suppose we realize that Claims depends on Age^2 => enlarge feature space by adding Age^2 to data. Other options – add interactions/basis functions e.g. splines X (features) y (outputs) 0.06 0.09 0.12 20 40 60 80 DrivAge rate
  • 16. Representation learning • In many domains, including actuarial science, traditional approach to designing machine learning systems relies on humans for feature engineering. But: • designing features is time consuming/tedious • relies on expert knowledge that may not be transferable to a new domain • becomes difficult with very high dimensional data • Representation Learning = ML technique where algorithms automatically design features that are optimal for a particular task. Traditional examples are PCA (unsupervised) and PLS (supervised) • Simple/naive RL approaches often fail when applied to high dimensional data
  • 17. Deep Learning • Deep Learning = representation learning technique that automatically constructs hierarchies of complex features • Modern example of deep learning is feed-forward neural networks, which are multi-layered machine learning models, where each layer learns a new representation of the features. • The principle: Provide data to the network and let it figure out what and how to learn. • Desiderata for AI by Bengio (2009): • “Ability to learn with little human input the low-level, intermediate, and high- level abstractions that would be useful to represent the kind of complex functions needed for AI tasks.”
  • 18. • Single layer neural network • Circles = variables • Lines = connections between inputs and outputs • Input layer holds the variables that are input to the network… • … multiplied by weights (coefficients) to get to result • Single layer neural network is a linear regression! Single Layer NN = Linear Regression
  • 19. • Deep = multiple layers • Feedforward = data travels from left to right • Fully connected network = all neurons in layer connected to all neurons in previous layer • More complicated representations of input data learned in hidden layers • Subsequent layers represent regressions on the variables in hidden layers Deep Feedforward Net
  • 20. • Several specialized types of neural networks depending on purpose • Embedding layer learns dense vector transformation of sparse input vectors and clusters similar categories together; see Section 3.3 in Richman (2018) • Embeddings often capture actuarially meaningful relationships in categorical data – can be interpreted as relativities Embedding layers Actuary Accountant Quant Statistician Economist Underwriter Actuary 1 0 0 0 0 0 Accountant 0 1 0 0 0 0 Quant 0 0 1 0 0 0 Statistician 0 0 0 1 0 0 Economist 0 0 0 0 1 0 Underwriter 0 0 0 0 0 1 Finance Math Stastistics Liabilities Actuary 0.5 0.25 0.5 0.5 Accountant 0.5 0 0 0 Quant 0.75 0.25 0.25 0 Statistician 0 0.5 0.85 0 Economist 0.5 0.25 0.5 0 Underwriter 0 0.1 0.05 0.75
  • 21. Summary of architectures • Key principle - Use architecture that expresses useful priors about the data => major performance gains: • Deep feedforward network – structured (tabular) data • Embedding layers – categorical data (or real values restructured as categorical data) • Deep autoencoder (non-linear PCA) – unsupervised learning • Convolutional neural network – data with spatial/temporal dimension e.g. images and time series • Recurrent neural network – data with temporal structure
  • 22. • Introduction • Machine Learning • Deep Learning • Applications in Actuarial Science • Discussion and Conclusion Agenda
  • 23. Summary of architectures • Searches within actuarial literature confined to articles written after 2006, when current resurgence of interest in neural networks began (Goodfellow, Bengio and Courville 2016). • Pricing of non-life insurance (Noll, Salzmann and Wüthrich 2018; Wüthrich and Buser 2018) X • IBNR Reserving (Kuo 2018b; Wüthrich 2018b; Zarkadoulas 2017) X • Analysis of telematics data (Gao, Meng and Wüthrich 2018; Gao and Wüthrich 2017; Wüthrich and Buser 2018; Wüthrich 2017) X • Mortality forecasting (Hainaut 2018; Richman and Wüthrich 2018) • Approximating nested stochastic simulations (Hejazi and Jackson 2016, 2017) • Forecasting financial markets (Smith, Beyers and De Villiers 2016)
  • 24. Non-life pricing (1) • Non-life Pricing (tabular data fit with GLMs) seems like obvious application of ML/DL • Noll, Salzmann and Wüthrich (2018) is tutorial paper (with code) in which apply GLMs, regression trees, boosting and (shallow) neural networks to French TPL dataset to model frequency • ML approaches outperform GLM • Boosted tree performs about as well as neural network… • ….mainly because ML approaches capture some interactions automatically • In own analysis, found that surprisingly, off the shelf approaches do not perform particularly well on frequency models. • These include XGBoost and ‘vanilla’ deep networks
  • 25. Non-life pricing (2) • Deep neural network applied to raw data (i.e. no feature engineering) did not perform well • Embedding layers provide significant gain in performance over GLM and other NN architectures • Layers learn a (multi- dimensional) schedule of relativities at each age (shown after applying t-SNE) • Transfer learning – can boost performance of GLM -50 -25 0 25 20 40 60 80 Drivage value variable dim1 dim2 Model OutOfSample GLM 0.3217 GLM_Keras 0.3217 NN_shallow 0.3150 NN_no_FE 0.3258 NN_embed 0.3068 GLM_embed 0.3194 NN_learned_embed 0.2925
  • 26. IBNR Reserving • IBNR Reserving boils down to regression of future reported claim amounts on past => good potential for ML/DL approaches • Granular reserving for claim type/property damaged/region/age etc difficult with normal chain-ladder approach as too much data to derive LDFs judgementally • Wüthrich (2018b) (who provides code + data) extends chain-ladder as a regression model to incorporate features into derivation of LDF • DeepTriangle of Kuo (2018b) is less traditional approach. Joint prediction of Paid + Outstanding claims using Recurrent Neural Networks and Embedding Layers • Better performance than CL/GLM/Bayesian techniques on Schedule P data from USA j i j i C X f C , , ). ( ˆ  1
  • 27. Telematics data (1) • Telematics produces high dimensional data (position, velocity, acceleration, road type, time of day) at high frequencies – not immediately obvious how to incorporate into pricing • Sophisticated approaches to analysing telematics data from outside actuarial literature using recurrent neural networks plus embedding layers such as Dong, Li, Yao et al. (2016), Dong, Yuan, Yang et al. (2017) and Wijnands, Thompson, Aschwanden et al. (2018) • Within actuarial literature, series of papers by Wüthrich (2017), Gao and Wüthrich (2017) and Gao, Meng and Wüthrich (2018) discuss analysis of velocity and acceleration information from telematics data feed • Focus on v-a heatmaps which capture velocity and acceleration profile of driver but these are also high dimensional
  • 28. Telematics data (2) • Heatmap generated using code in Wüthrich (2018c) • Shows density i.e. probability that driver is found at location in heatmap • Wüthrich (2017) and Gao and Wüthrich (2017) apply unsupervised learning methods to summarize v-a heat-maps: • K-means, PCA and shallow auto-encoders • Stunning result = continuous features are highly predictive • Why? Goodfellow, Bengio and Courville (2016) : “basic idea is features useful for the unsupervised task also be useful for the supervised learning task” 0.000 0.005 0.010 0.015 6 8 10 12 14 16 18 20 -2 -1 0 1 2 v-a heatmap of driver 20 speed in km/h acceleration in m/s^2
  • 29. • Introduction • Machine Learning • Deep Learning • Applications in Actuarial Science • Discussion and Conclusion Agenda
  • 30. Discussion • Emphasis on predictive performance and potential gains of moving from traditional actuarial and statistical methods to machine and deep learning approaches. • Measurement framework utilized within machine learning – focus on testing predictive performance => focus on measurable improvements in predictive performance led to refinements and enhancements of deep learning architectures • Learned representations from deep neural networks often have readily interpretable meaning • Very useful for high-frequency and high-dimensional data
  • 31. Conclusion • Deep learning can enhance the predictive power of models built by actuaries • Application of deep learning techniques to actuarial problems seems to be rapidly emerging field within actuarial science => appears reasonable to predict more advances in the near-term. • Deep learning is not a panacea for all modelling issues - applied to the wrong domain, deep learning will not produce better or more useful results than other techniques. • Winter might be coming – if actuaries do not take the lead in applying deep learning, someone else will.
  • 32. Bengio, Y. 2009. "Learning deep architectures for AI", Foundations and trends® in Machine Learning 2(1):1-127. De Brébisson, A., É. Simon, A. Auvolat, P. Vincent et al. 2015. "Artificial neural networks applied to taxi destination prediction", arXiv arXiv:1508.00021 Dong, W., J. Li, R. Yao, C. Li et al. 2016. "Characterizing driving styles with deep learning", arXiv arXiv:1607.03611 Dong, W., T. Yuan, K. Yang, C. Li et al. 2017. "Autoencoder regularized network for driving style representation learning", arXiv arXiv:1701.01272 Friedman, J., T. Hastie and R. Tibshirani. 2009. The Elements of Statistical Learning : Data Mining, Inference, and Prediction. New York: Springer-Verlag. http://dx.doi.org/10.1007/978-0-387-84858-7. Gao, G., S. Meng and M. Wüthrich. 2018. Claims Frequency Modeling Using Telematics Car Driving Data. SSRN. https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3102371. Accessed: 29 June 2018. Gao, G. and M. Wüthrich. 2017. Feature Extraction from Telematics Car Driving Heatmaps. SSRN. https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3070069. Accessed: June 29 2018. Goodfellow, I., Y. Bengio and A. Courville. 2016. Deep Learning. MIT Press. Guo, C. and F. Berkhahn. 2016. "Entity embeddings of categorical variables", arXiv arXiv:1604.06737 Hainaut, D. 2018. "A neural-network analyzer for mortality forecast", Astin Bulletin 48(2):481-508. Hannun, A., C. Case, J. Casper, B. Catanzaro et al. 2014. "Deep speech: Scaling up end-to-end speech recognition", arXiv arXiv:1412.5567 Hejazi, S. and K. Jackson. 2016. "A neural network approach to efficient valuation of large portfolios of variable annuities", Insurance: Mathematics and Economics 70:169-181. Hejazi, S. and K. Jackson. 2017. "Efficient valuation of SCR via a neural network approach", Journal of Computational and Applied Mathematics 313:427-439. Krizhevsky, A., I. Sutskever and G. Hinton. 2012. "Imagenet classification with deep convolutional neural networks," Paper presented at Advances in Neural Information Processing Systems. 1097-1105. Kuo, K. 2018. "DeepTriangle: A Deep Learning Approach to Loss Reserving", arXiv arXiv:1804.09253 References (1)
  • 33. Makridakis, S., E. Spiliotis and V. Assimakopoulos. 2018. "The M4 Competition: Results, findings, conclusion and way forward", International Journal of Forecasting Mitchell, T. 1997. Machine learning. McGraw-Hill Boston, MA. Noll, A., R. Salzmann and M. Wüthrich. 2018. Case Study: French Motor Third-Party Liability Claims. SSRN. https://ssrn.com/abstract=3164764 Accessed: 17 June 2018. Richman, R. 2018. Thoughts on the M4 Conference. http://ronaldrichman.co.za/2018/12/17/thoughts-on-the-m4-conference/. Accessed: 20 March 2019. Richman, R. and M. Wüthrich. 2018. "A Neural Network Extension of the Lee-Carter Model to Multiple Populations", Available at SSRN: https://ssrn.com/abstract=3270877 Schreiber, D. 2017. The Future of Insurance. DIA Munich 2017: https://www.youtube.com/watch?time_continue=1&v=LDOhFHJqKqI. Accessed: 17 June 2018. Shmueli, G. 2010. "To explain or to predict?", Statistical Science:289-310. Smith, M., F. Beyers and J. De Villiers. 2016. "A method of parameterising a feed forward multi-layered perceptron artificial neural network, with reference to South African financial markets", South African Actuarial Journal 16(1):35-67. Sutton, R. and A. Barto. 2018. Reinforcement learning: An introduction, Second Edition. MIT Press. Wijnands, J., J. Thompson, G. Aschwanden and M. Stevenson. 2018. "Identifying behavioural change among drivers using Long Short-Term Memory recurrent neural networks", Transportation Research Part F: Traffic Psychology and Behaviour 53:34-49. Wu, Y., M. Schuster, Z. Chen, Q. Le et al. 2016. "Google's neural machine translation system: Bridging the gap between human and machine translation", arXiv arXiv:1609.08144 Wüthrich, M. 2018a. "Neural networks applied to chain–ladder reserving", European Actuarial Journal 8(2):407-436. Wüthrich, M. 2018b. v-a Heatmap Simulation Machine. https://people.math.ethz.ch/~wueth/simulation.html. Accessed: 1 July 2018. Wüthrich, M. and C. Buser. 2018. Data analytics for non-life insurance pricing. Swiss Finance Institute Research Paper. https://ssrn.com/abstract=2870308. Accessed: 17 June 2018. Wüthrich, M.V. 2017. "Covariate selection from telematics car driving data", European Actuarial Journal 7(1):89-108. Zarkadoulas, A. 2017. "Neural network algorithms for the development of individual losses." Unpublished thesis, Lausanne: University of Lausanne. References (2)
  • 34. Get involved • Insurance Data Science conference - 14 June 2019 • ETH Zurich • https://insurancedatascience.org/ • Amazing line-up of papers, presentations and speakers! • Kasa.ai – launching soon, led by Kevin Kuo of Rstudio • An open research group encouraging innovation in insurance analytics • Some interesting projects planned
  • 35. Thanks for listening - Any questions? Paper: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3218082 Contact: ron@ronaldrichman.co.za