SlideShare a Scribd company logo
1 of 74
DEEP LEARNING
AN C ESTRYY
AN EC OD TES
AVAN AN
FOR
AMATURES
a
Agenda
• ML – Brief History
• Neural Netowrks & DL
• Avanan’s Use Case
• Explainability
Machine Learning became a “hot topic”
Neural net – Motivation & Deep Learning
What do data scientists do, when they don’t brag?
How Did ML Become
the Prom Queen?
Until 1990’s
Data
• Less Domains
• Less “innovative” motivation
• Organzations don’t priortize data
Until 1990’s
Machine Learning
• Most of the projects are done locally within the domains
• Cross talks are rare
• It is not an academical leading topic
• Neural Net is a theoretical topic with nearly no
commercial implicatgions
1990’s
•Stock exchange’s boom
•Genome Project
•Internet
Outcomes
• Abundant of data is available
• A huge interest in data’s potential insights
• Financial data becomes interesting (e.g a boost in the hedge funds
industry)
• Academy- Researchers focused on data as their main study
 Data became “science”
MACHINE
LEARNING
Which Poblems does ML typically solve?
• Which animal can be seen in the image ?
• Was this text’s writer happy?
• Is this recorded utterance human?
• Can we predict our customers’ satisfaction?
What is Common for these Questions?
Junior High
Memories from Junior High
Function
A deteministic engine that receives an input X and outputs Y
Y =3*X+5
Y =- 3*𝑋2 +4 *X- 0.5
Y= 𝑒−𝑥
+ tan 2𝑋 + 5
Which Poblems does ML typically solve?
• Which animal can be seen in the image ?
• Was this text’s writer happy?
• Is this recorded utterance human?
• Can we predict our customers’ satisfaction?
Gaps Between Life and Junior High
The input X is not a single number but a collection of information:
• Images
• SQL columns
• Text
No teacher, no function
In most of the problems Y exists
ML is about finding the optimal maps from X to Y
A Few Words about Y
• It can be numbers , vectors or categories.
• In this lecture, it is only categories.:
(dog, cat, pineapple) or (malicious, benign)
• These types of problemes is called “Classifaction”
Few Words about Y- One hot
Y indicates whether an image is dog, cat, pineapple
• Dog - 1 Y= [1,0,0]
• Cat - 2. Y= [0, 1, 0]
• Pineapple - 3 Y= [0, 0, 1]
This represntaion has two virtues:
• Easy to demestify
• It is a probability vector
Learning
&
Neural Networks
𝑥1
𝑥2
𝑥3
Input
𝑥4
𝑥5
𝑥6
𝑥7
𝑥8
𝑥9
𝑥10
output
Dog
Cat
Pineapple
X Y
𝑥1
𝑥2
𝑥3
Input
𝑥4
𝑥5
𝑥6
𝑥7
𝑥9
𝑥10
output
Dog
Cat
Pineapple
Hidden
𝑥8
𝑥1
𝑥2
𝑥3
Input
𝑥4
𝑥5
𝑥6
𝑥7
𝑥9
𝑥10
F [ 𝑖=1
10
𝑤𝑖𝑥𝑖]
𝑥8
𝑤1
𝑤2
𝑤4
𝑤5
𝑤6
𝑤7
𝑤8
𝑤9
𝑤10
Input
Output
Dog
Cat
Pineapple
Hidden
Neural network is cool.
But..
How do we we get the
function?
Training
Training
• We have X & Y
• We need to find the best function F that maps X to Y
Z1
Z3
Z2
X
𝑥1
𝑥2
𝑥3
𝑥4
𝑥5
𝑥6
𝑥7
𝑥8
𝑥9
𝑥10
Dog
Cat
Pineappl
ee
Y
Training- Continue
• What are Z’s?
• Z1,Z2,Z3 are number that the indicates the network’s observation
• We are data scientists; we need probabilities for our going metabolism
Softmax
Few Words about Y- One hot
Y indicates whether an image is dog, cat, pineapple
• Dog - 1 Y= [1,0,0]
• Cat - 2. Y= [0, 1, 0]
• Pineapple - 3 Y= [0, 0, 1]
This represntaion has two virtues:
• Easy to demestify
• It is a probability vector
Loss Function
We have Y
We. Have Sigma’s
Loss function
It measures the distance between probabilities (KL-divergence)
we aim to minimize it by updating the weights according to the gradient
What is DL then ..?
𝑥1
𝑥2
𝑥3
Input
𝑥4
𝑥5
𝑥6
𝑥7
𝑥9
𝑥10
output
Dog
Cat
Pineapple
Hidden(S)
𝑥8
WORDS
EMBEDDING
Motivation
• Text does not have a natural analytic structure nor a
quantitative represntaion
• We wish to solve “text driven” problems (e.g
sentiment analysis)
One Hot Coding
Dictionary with 1000 words
We use vectors of length 1000
1. Apple -> [1,0,0,……0]
2. Ball -> [0,1,0………0]
..
10 Eating ->[0,0,0,0,0,0,0,0,0,1,0,0 0,0 ..]
122. I. ->. [0,0,0….(121 times 0) 1,0,0,0,0,0,0 ]
..
633. Playing ->[0,(632 times 0),1 ,0,0……0]
Next Word Predction
Eating (an) apple -> [122] [,1]
X=[ 0,0,0,0,0,0,0,0,0, 1, 0,0,0,0… 0,0 0 ..0]
Y= [1,0,0,0…]
X vector of length 1000 with single 1 in place 10
Y has 1 only on the first place
Example 2
Playing (a) ball -> [633] [2]
X=[0,0,0,0,0. (in place 633) 1, 0,0 0 ..0] (length 1000)
Y= [0,1,0,0,0…]
X vector of length 1000 with single 1 at palce 633
Y has 1 only on the second place
𝑥1
𝑥2
𝑥3
𝑥4
𝑥6
𝑥999
𝑥1000
𝑦1
𝑦2
𝑦3
𝑦999
𝑦1000
MODEL’S
ESTIMATION
Common KPI’s
There are several useful KPI’s- Binary case
• Accuracy – How many times the model was right
• False Positive- Models detects “True” for “False”
• Recall – How many real “True” the model detects
• Precision – Among all the “True” detections, how many were
corrrect
Numerical Exampls- Balanced Case
ActualDetect “True” “False”
True 990 10
False 10 990
We have 1000 True and 1000. False
Accuarcy = 9900099/(1000100). 0.99
False Positive = 10000/100000 0=0.01
False negative = 1/100 = 0.01
Recall = 99/100 =. 0.99
Precsision 0.99
Numerical Examples– Cyber-Like.
ActualDetect “Phishing” “Benign”
Phishing 99 1
Benign 10,000 990000
Accuarcy = 9900099/(1000100)=0.99
False Positive = 10000/1000000 =0.01
False ngvative = 1/10 0 =0.01
Recall = = 99/100 =0.99
Precision = 99/10099=0.0099
Imagine that a single false positve costs 10$
EMAIL’S PHISHING
AVANAN’S CHALLENGE
Challenges in phishing
• Ambiguity of detection
• Independence is obscure
• How do we need to label?
• Imbalanced traffic
• Explainability is mandatory
CURRENT
ENGINE
Use Case
• Cloud traffic of emails
• A typical customer has several millions of emails per
day
• Phishing’s rate is about 1 per 10000 emails
• System classifies the emails to one of four categories:
 Clean
 Phishing
 Spam
 Marketing
Avanan’s Model
A double steps XGBoost:
• Combination of tabular feautres
with some text analysis
• In order to achieve good
precsion the second step takes
place only if the first step
detects Phishing
• Second model uses DistilBERT
Labeling Protocol
An enormous number of emails
• Labeling emails that were detected by the model
as phishing or spam
• Precision is well measured
• Howerver, new types of phishing are hardly
detected as a result the recall measurements are
endowed with high risk
.
THE UNIFIED MODEL
Our Objectives
• Construct a DL model
Model’s inputs are both text and tabular
data
Model’s outputs remain the four
categories
Performances requirements:
Optimizing Recall for 98% precision
DL –”Engineering”
• Which types of embedding?
• How to Combine embedded text with tabular data?
• After combining what kind of network, we wish to have?
• Loss
THE NETWORK
𝑇𝑒𝑥𝑡
𝑦1
𝑦2
𝑇𝑎𝑏𝑢𝑙𝑎𝑟
dData
Embedding
• DistilBert
• Bert
• FNET
𝑦3
𝑦4
Post Pooling
• FC
• Batch_normlaization
• Relu
• Dropout
HOW TO IMPROVE
PRECISION?
A solution (A and not The)
• We use Cross Entropy as loss (L)
• We aim to reduce our FP (our objective is the precision level)
𝐿𝑛𝑒𝑤 = L+ F(Score of phishing)
What is F ?
Our new F
• For every real phishing training example it outputs 0
• For every non phishing example it outputs :
 A positive function that increases with the phishing
probability
 For a big prob, we wish a big slope
Avanan 6th Patent
Loss Function
• Usage of tanh
• Wasserstein metric
1D
• Usage of neural ODE
RESULTS
EXPLAINABILITY
Background
DL commonly
provides bad
explainability
Epxlainbility
in phishing is
crucial
Huge interest
in Causal
Inference
Example
• We solve a prediction problem :
• Cloudy
• Sprinkler
• Rain
 Wet grass
Prediction is cool. But ….
FINALLY
https://youtu.be/k3sTL5kCJ_4
Ancestry, Anecdotes & Avanan -DL for Amateurs

More Related Content

Similar to Ancestry, Anecdotes & Avanan -DL for Amateurs

An introduction to deep learning concepts
An introduction to deep learning conceptsAn introduction to deep learning concepts
An introduction to deep learning conceptsAmazon Web Services
 
Introducción a NLP (Natural Language Processing) en Azure
Introducción a NLP (Natural Language Processing) en AzureIntroducción a NLP (Natural Language Processing) en Azure
Introducción a NLP (Natural Language Processing) en AzurePlain Concepts
 
Hacking Predictive Modeling - RoadSec 2018
Hacking Predictive Modeling - RoadSec 2018Hacking Predictive Modeling - RoadSec 2018
Hacking Predictive Modeling - RoadSec 2018HJ van Veen
 
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
 
Data Con LA 2022 - Real world consumer segmentation
Data Con LA 2022 - Real world consumer segmentationData Con LA 2022 - Real world consumer segmentation
Data Con LA 2022 - Real world consumer segmentationData Con LA
 
Machine Learning, Deep Learning and Data Analysis Introduction
Machine Learning, Deep Learning and Data Analysis IntroductionMachine Learning, Deep Learning and Data Analysis Introduction
Machine Learning, Deep Learning and Data Analysis IntroductionTe-Yen Liu
 
Good ideas that we forgot
Good ideas that we forgot   Good ideas that we forgot
Good ideas that we forgot J On The Beach
 
Practical deep learning for computer vision
Practical deep learning for computer visionPractical deep learning for computer vision
Practical deep learning for computer visionEran Shlomo
 
NLP Bootcamp 2018 : Representation Learning of text for NLP
NLP Bootcamp 2018 : Representation Learning of text for NLPNLP Bootcamp 2018 : Representation Learning of text for NLP
NLP Bootcamp 2018 : Representation Learning of text for NLPAnuj Gupta
 
Machine Learning on Azure - AzureConf
Machine Learning on Azure - AzureConfMachine Learning on Azure - AzureConf
Machine Learning on Azure - AzureConfSeth Juarez
 
Machine Learning : why we should know and how it works
Machine Learning : why we should know and how it worksMachine Learning : why we should know and how it works
Machine Learning : why we should know and how it worksKevin Lee
 
[D2 COMMUNITY] Spark User Group - 머신러닝 인공지능 기법
[D2 COMMUNITY] Spark User Group - 머신러닝 인공지능 기법[D2 COMMUNITY] Spark User Group - 머신러닝 인공지능 기법
[D2 COMMUNITY] Spark User Group - 머신러닝 인공지능 기법NAVER D2
 
Machine Learning ebook.pdf
Machine Learning ebook.pdfMachine Learning ebook.pdf
Machine Learning ebook.pdfHODIT12
 
1_5_AI_edx_ml_51intro_240204_104838machine learning lecture 1
1_5_AI_edx_ml_51intro_240204_104838machine learning lecture 11_5_AI_edx_ml_51intro_240204_104838machine learning lecture 1
1_5_AI_edx_ml_51intro_240204_104838machine learning lecture 1MostafaHazemMostafaa
 
kmean_naivebayes.pptx
kmean_naivebayes.pptxkmean_naivebayes.pptx
kmean_naivebayes.pptxAryanhayaran
 
An Introduction to Deep Learning I AWS Dev Day 2018
An Introduction to Deep Learning I AWS Dev Day 2018An Introduction to Deep Learning I AWS Dev Day 2018
An Introduction to Deep Learning I AWS Dev Day 2018AWS Germany
 
An Introduction to Deep Learning (April 2018)
An Introduction to Deep Learning (April 2018)An Introduction to Deep Learning (April 2018)
An Introduction to Deep Learning (April 2018)Julien SIMON
 

Similar to Ancestry, Anecdotes & Avanan -DL for Amateurs (20)

An introduction to deep learning concepts
An introduction to deep learning conceptsAn introduction to deep learning concepts
An introduction to deep learning concepts
 
Introducción a NLP (Natural Language Processing) en Azure
Introducción a NLP (Natural Language Processing) en AzureIntroducción a NLP (Natural Language Processing) en Azure
Introducción a NLP (Natural Language Processing) en Azure
 
Hacking Predictive Modeling - RoadSec 2018
Hacking Predictive Modeling - RoadSec 2018Hacking Predictive Modeling - RoadSec 2018
Hacking Predictive Modeling - RoadSec 2018
 
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...
 
Data Con LA 2022 - Real world consumer segmentation
Data Con LA 2022 - Real world consumer segmentationData Con LA 2022 - Real world consumer segmentation
Data Con LA 2022 - Real world consumer segmentation
 
On Impact in Software Engineering Research (HU Berlin 2021)
On Impact in Software Engineering Research (HU Berlin 2021)On Impact in Software Engineering Research (HU Berlin 2021)
On Impact in Software Engineering Research (HU Berlin 2021)
 
Machine Learning, Deep Learning and Data Analysis Introduction
Machine Learning, Deep Learning and Data Analysis IntroductionMachine Learning, Deep Learning and Data Analysis Introduction
Machine Learning, Deep Learning and Data Analysis Introduction
 
Good ideas that we forgot
Good ideas that we forgot   Good ideas that we forgot
Good ideas that we forgot
 
Artificial intelligence
Artificial intelligenceArtificial intelligence
Artificial intelligence
 
Deep learning
Deep learningDeep learning
Deep learning
 
Practical deep learning for computer vision
Practical deep learning for computer visionPractical deep learning for computer vision
Practical deep learning for computer vision
 
NLP Bootcamp 2018 : Representation Learning of text for NLP
NLP Bootcamp 2018 : Representation Learning of text for NLPNLP Bootcamp 2018 : Representation Learning of text for NLP
NLP Bootcamp 2018 : Representation Learning of text for NLP
 
Machine Learning on Azure - AzureConf
Machine Learning on Azure - AzureConfMachine Learning on Azure - AzureConf
Machine Learning on Azure - AzureConf
 
Machine Learning : why we should know and how it works
Machine Learning : why we should know and how it worksMachine Learning : why we should know and how it works
Machine Learning : why we should know and how it works
 
[D2 COMMUNITY] Spark User Group - 머신러닝 인공지능 기법
[D2 COMMUNITY] Spark User Group - 머신러닝 인공지능 기법[D2 COMMUNITY] Spark User Group - 머신러닝 인공지능 기법
[D2 COMMUNITY] Spark User Group - 머신러닝 인공지능 기법
 
Machine Learning ebook.pdf
Machine Learning ebook.pdfMachine Learning ebook.pdf
Machine Learning ebook.pdf
 
1_5_AI_edx_ml_51intro_240204_104838machine learning lecture 1
1_5_AI_edx_ml_51intro_240204_104838machine learning lecture 11_5_AI_edx_ml_51intro_240204_104838machine learning lecture 1
1_5_AI_edx_ml_51intro_240204_104838machine learning lecture 1
 
kmean_naivebayes.pptx
kmean_naivebayes.pptxkmean_naivebayes.pptx
kmean_naivebayes.pptx
 
An Introduction to Deep Learning I AWS Dev Day 2018
An Introduction to Deep Learning I AWS Dev Day 2018An Introduction to Deep Learning I AWS Dev Day 2018
An Introduction to Deep Learning I AWS Dev Day 2018
 
An Introduction to Deep Learning (April 2018)
An Introduction to Deep Learning (April 2018)An Introduction to Deep Learning (April 2018)
An Introduction to Deep Learning (April 2018)
 

More from Natan Katz

AI for PM.pptx
AI for PM.pptxAI for PM.pptx
AI for PM.pptxNatan Katz
 
SGLD Berlin ML GROUP
SGLD Berlin ML GROUPSGLD Berlin ML GROUP
SGLD Berlin ML GROUPNatan Katz
 
Foundation of KL Divergence
Foundation of KL DivergenceFoundation of KL Divergence
Foundation of KL DivergenceNatan Katz
 
Bayesian Neural Networks
Bayesian Neural NetworksBayesian Neural Networks
Bayesian Neural NetworksNatan Katz
 
Deep VI with_beta_likelihood
Deep VI with_beta_likelihoodDeep VI with_beta_likelihood
Deep VI with_beta_likelihoodNatan Katz
 
NICE Research -Variational inference project
NICE Research -Variational inference projectNICE Research -Variational inference project
NICE Research -Variational inference projectNatan Katz
 
NICE Implementations of Variational Inference
NICE Implementations of Variational Inference NICE Implementations of Variational Inference
NICE Implementations of Variational Inference Natan Katz
 
Reinfrocement Learning
Reinfrocement LearningReinfrocement Learning
Reinfrocement LearningNatan Katz
 
Variational inference
Variational inference  Variational inference
Variational inference Natan Katz
 
GAN for Bayesian Inference objectives
GAN for Bayesian Inference objectivesGAN for Bayesian Inference objectives
GAN for Bayesian Inference objectivesNatan Katz
 

More from Natan Katz (17)

final_v.pptx
final_v.pptxfinal_v.pptx
final_v.pptx
 
AI for PM.pptx
AI for PM.pptxAI for PM.pptx
AI for PM.pptx
 
SGLD Berlin ML GROUP
SGLD Berlin ML GROUPSGLD Berlin ML GROUP
SGLD Berlin ML GROUP
 
Cyn meetup
Cyn meetupCyn meetup
Cyn meetup
 
Finalver
FinalverFinalver
Finalver
 
Foundation of KL Divergence
Foundation of KL DivergenceFoundation of KL Divergence
Foundation of KL Divergence
 
Quant2a
Quant2aQuant2a
Quant2a
 
Bismark
BismarkBismark
Bismark
 
Bayesian Neural Networks
Bayesian Neural NetworksBayesian Neural Networks
Bayesian Neural Networks
 
Deep VI with_beta_likelihood
Deep VI with_beta_likelihoodDeep VI with_beta_likelihood
Deep VI with_beta_likelihood
 
NICE Research -Variational inference project
NICE Research -Variational inference projectNICE Research -Variational inference project
NICE Research -Variational inference project
 
NICE Implementations of Variational Inference
NICE Implementations of Variational Inference NICE Implementations of Variational Inference
NICE Implementations of Variational Inference
 
Ucb
UcbUcb
Ucb
 
Reinfrocement Learning
Reinfrocement LearningReinfrocement Learning
Reinfrocement Learning
 
Neural ODE
Neural ODENeural ODE
Neural ODE
 
Variational inference
Variational inference  Variational inference
Variational inference
 
GAN for Bayesian Inference objectives
GAN for Bayesian Inference objectivesGAN for Bayesian Inference objectives
GAN for Bayesian Inference objectives
 

Recently uploaded

"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 

Recently uploaded (20)

"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 

Ancestry, Anecdotes & Avanan -DL for Amateurs