SlideShare a Scribd company logo
1 of 78
Download to read offline
@awsgeek lucidchart.com
MACHINE
LEARNINGIn the Cloud
@awsgeek lucidchart.com
Jerry Hargrove
Cloud Architect &
Evangelist
www.awsgeek.com
at Lucidchart
@awsgeek lucidchart.com
What’s that?
@awsgeek lucidchart.com
Jet?
# Doors?
T-Tail??
X
Windows Wings? B
Livery?Engines?
#
Wheels?
A
C
@awsgeek lucidchart.com
@awsgeek lucidchart.com
@awsgeek lucidchart.com
@awsgeek lucidchart.comlucidchart.com
@awsgeek lucidchart.com
Agenda
.oOo.
WhatisMachineLearning?
WhatoptionsarethereonAWS?
Whichshouldyouchoose?
@awsgeek lucidchart.com
“afieldofcomputersciencethatusesstatistical
techniquestogivecomputersystemstheability
to"learn"withdata,withoutbeingexplicitly
programmed” - wikipedia
MachineLearning
@awsgeek lucidchart.com
@awsgeek lucidchart.com
MachineLearning
SupervisedLearning UnsupervisedLearning
Classification Regression Clustering Association
@awsgeek lucidchart.com
Classification
Isitahotdog?
yes
no
@awsgeek lucidchart.com
ArtificialIntelligenceClassification
“a380”
“747”
“737”
“a320”
Output
Inputs
Labels
Model
@awsgeek lucidchart.com@awsgeek
Classification ArtificialIntelligence
@awsgeek lucidchart.com@awsgeek
Classification ArtificialIntelligence
Y=mX+b
@awsgeek lucidchart.com@awsgeek
Classification ArtificialIntelligence
Y=log(X)
@awsgeek lucidchart.com@awsgeek
Classification ArtificialIntelligence
overfit!
@awsgeek lucidchart.com
ArtificialIntelligencePrediction
Unlabeled image
@awsgeek lucidchart.com
ArtificialIntelligencePrediction
Unlabeled image
@awsgeek lucidchart.com
ArtificialIntelligencePrediction
“a320”
Unlabeled image
@awsgeek lucidchart.com
SupervisedLearningSupervisedLearning
Existing
Observations
Future
Predictions
@awsgeek lucidchart.com
SupervisedLearningSupervisedLearning
Advantages:
Youdefinethelabels
Youlabeltheinputs
Youcontroltheaccuracy
Disadvantages:
Canbecomplex
Canrequirealotofeffort
Cantakealotoftime
@awsgeek lucidchart.com
@awsgeek lucidchart.com
MachineLearning
onAWS
@awsgeek lucidchart.comwww.awsgeeklucidchart.com
AWSMachineLearningfor...
✓ Noobs
✓ Geeks
✓ Gurus
@awsgeek lucidchart.com
MachineLearningforNoobs
Servicesthatare:
- FullManaged
- Elastic&Scalable
- HighlyAvailable
- ResilienttoFailure
- CostEffective
NOASSEMBLY
REQUIRED
Machine
learning
viaAPI
@awsgeek lucidchart.comwww.awsgeeklucidchart.com
Translate
Comprehend
Transcribe
Polly
Rekognition
Lex
Texttospeech
Image&videoanalysis
Conversationalbots
Languagetranslation
Naturallanguage
Speechrecognition
@awsgeek lucidchart.com
AmazonRekognition
Deeplearning-basedimage
andvideoanalysis
• Object, scene, activity
detection
• Facial recognition
• Content classification
• Text detection
@awsgeek lucidchart.com
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
'region' => 'us-west-2',
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
'region' => 'us-west-2',
'credentials' => [
'key' => 'AKAI ...',
'secret' => 'YiaPmET ...'
]
]);
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
'region' => 'us-west-2',
'credentials' => [
'key' => 'AKAI ...',
'secret' => 'YiaPmET ...'
]
]);
Don’tdothis
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $rek->detectLabels([
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $rek->detectLabels([
'Image' => [ 'Bytes' => ... ]
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $rek->detectLabels([
'Image' => [ 'Bytes' => ... ],
'MaxLabels' => 5
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $rek->detectLabels([
'Image' => [ 'Bytes' => ... ],
'MaxLabels' => 5,
'MinConfidence' => 80
]);
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$rek = new AwsRekognitionRekognitionClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $rek->detectLabels([
'Image' => [ 'Bytes' => ... ],
'MaxLabels' => 5,
'MinConfidence' => 80
]);
Results:
Person - 99.3%
Mountain Bike - 99.1%
Outdoors - 83.1%
Crest - 83.0%
Rock - 82.8
@awsgeek lucidchart.com
“That’s an airplane”
@awsgeek lucidchart.comwww.awsgeeklucidchart.com
Translate
Comprehend
Transcribe
Polly
Rekognition
Lex
Texttospeech
Image&videoanalysis
Conversationalbots
Languagetranslation
Naturallanguage
Speechrecognition
@awsgeek lucidchart.com
MachineLearningforNoobs
Servicesthatare:
- FullManaged
- Elastic&Scalable
- HighlyAvailable
- ResilienttoFailure
- CostEffective
NOASSEMBLY
REQUIRED
Usewhen:
- Theymatchyour
requirements
- Youdon’thave
timeorskills
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Microsoft Azure
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Cloud(AutoML)Vision,
NaturalLanguage,Translate
Microsoft Azure
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Cloud(AutoML)Vision,
NaturalLanguage,Translate
CognitiveServices:
Vision,Speech,Language,
Knowledge,SearchMicrosoft Azure
@awsgeek lucidchart.comwww.awsgeeklucidchart.com
AWSMachineLearningfor...
✓ Noobs
✓ Geeks
✓ Gurus
Geeks
@awsgeek lucidchart.com
MachineLearningforGeeks
SOMEASSEMBLY
REQUIRED
Knowingjust
enoughtobe
dangerous
@awsgeek lucidchart.com
AmazonSageMaker
Build,train,anddeploy
MLmodelsatscale
• Ad targeting
• IoT & machine learning
• Credit default prediction
• Content quality prediction
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$sage = new AwsSageMakerRuntimeSageMakerRuntimeClient([
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$sage = new AwsSageMakerRuntimeSageMakerRuntimeClient([
'version' => 'latest',
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$sage = new AwsSageMakerRuntimeSageMakerRuntimeClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$sage = new AwsSageMakerRuntimeSageMakerRuntimeClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $sage->invokeEndpoint([
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$sage = new AwsSageMakerRuntimeSageMakerRuntimeClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $sage->invokeEndpoint([
'Body' => [ 'Bytes' => ... ],
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$sage = new AwsSageMakerRuntimeSageMakerRuntimeClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $sage->invokeEndpoint([
'Body' => [ 'Bytes' => ... ],
'ContentType' => 'application/x-image',
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$sage = new AwsSageMakerRuntimeSageMakerRuntimeClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $sage->invokeEndpoint([
'Body' => [ 'Bytes' => ... ],
'ContentType' => 'application/x-image',
'EndpointName' => 'classify-aircraft'
]);
@awsgeek lucidchart.com
<?php
require 'vendor/autoload.php';
$sage = new AwsSageMakerRuntimeSageMakerRuntimeClient([
'version' => 'latest',
'region' => 'us-west-2'
]);
$res = $sage->invokeEndpoint([
'Body' => [ 'Bytes' => ... ],
'ContentType' => 'application/x-image',
'EndpointName' => 'classify-aircraft'
]);
Results:
Boeing 737 - 99.3%
Airbus A320 - 32.1%
Airbus A319 - 19.0%
Airbus A318 - 3.0%
Boeing 747 - 0.1%
...
@awsgeek lucidchart.com
@awsgeek lucidchart.com
MachineLearningforGeeks
SOMEASSEMBLY
REQUIRED
Knowingjust
enoughtobe
dangerous
Usewhen:
- Needmore
flexibility
- Wantproviderto
manageinfra
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Cloud(AutoML)Vision,
NaturalLanguage,Translate
AmazonSageMaker
AWSDeepLens
CognitiveServices:
Vision,Speech,Language,
Knowledge,SearchMicrosoft Azure
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Cloud(AutoML)Vision,
NaturalLanguage,Translate
AmazonSageMaker
AWSDeepLens
CloudMLEngine
CognitiveServices:
Vision,Speech,Language,
Knowledge,SearchMicrosoft Azure
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Cloud(AutoML)Vision,
NaturalLanguage,Translate
AmazonSageMaker
AWSDeepLens
CloudMLEngine
AzureMLServicesCognitiveServices:
Vision,Speech,Language,
Knowledge,SearchMicrosoft Azure
@awsgeek lucidchart.comwww.awsgeeklucidchart.com
SomethingforEveryone
✓ Noobs
✓ Geeks
✓ GurusGurus
@awsgeek lucidchart.com
MachinelearningforGurus
Wherethe
rubbermeets
theroad
ASSEMBLY
REQUIRED
@awsgeek lucidchart.com
AWSDeepLearningAMIs
Pre-configured
deeplearning
environments
• MxNet
• TensorFlow
• Gluon
• Caffe
…andmore
• PyTorch
• Chainer
• Theano
• Caffe2
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Cloud(AutoML)Vision,
NaturalLanguage,Translate
AmazonSageMaker
AWSDeepLens
AWSDeep
LearningAMIs
CloudMLEngine
AzureMLServicesCognitiveServices:
Vision,Speech,Language,
Knowledge,SearchMicrosoft Azure
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Cloud(AutoML)Vision,
NaturalLanguage,Translate
AmazonSageMaker
AWSDeepLens
AWSDeep
LearningAMIs
CloudDeepLearning
VMImage
CloudMLEngine
AzureMLServicesCognitiveServices:
Vision,Speech,Language,
Knowledge,SearchMicrosoft Azure
@awsgeek lucidchart.com
GeekNoob Guru
AmazonRekognition,
Polly,Comprehend,Lex,
Translate,Transcribe
Cloud(AutoML)Vision,
NaturalLanguage,Translate
AmazonSageMaker
AWSDeepLens
AWSDeep
LearningAMIs
CloudDeepLearning
VMImage
CloudMLEngine
DataScience
VirtualMachines
AzureMLServicesCognitiveServices:
Vision,Speech,Language,
Knowledge,SearchMicrosoft Azure
@awsgeek lucidchart.com
Whichshouldyou
choose?
@awsgeek lucidchart.comlucidchart.com
There’smore
thanoneway
toskinacat
@awsgeek lucidchart.com
End-to-End
Curate Train Deploy
Quality
Quantity
Organization
Scalability
Availability
Resilience
Algorithms
Scalability
Accuracy
@awsgeek lucidchart.com
Amazon
Rekognition
Amazon
SageMaker
DeepLearning
VMImage
Curate
Train
Deploy
Curate
Train
Deploy
Curate
Train
Deploy
AWS
You
@awsgeek lucidchart.com
Noobs Geeks Gurus
Application
Developers
DataScientists
&Practitioners
Machinelearningisfor...
@awsgeek lucidchart.com
Whichisrightforyou?
● Cost
● Team
● Time
● Complexity
● Requirements
● Management
Consider:
@awsgeek lucidchart.comlucidchart.com
@awsgeek lucidchart.com
Aircraft
Detector
TailNumber
Detector
Model
Trainer
Aircraft
Classifier
DLQ
Model
Store
Request
Dispatcher
Request
Queue
Request
Handler
Twitter Secret
Store
Request
Webhook
Permissions TextDetector
1
2 3 4
5
6
7
8 11
9
10
13
12
@awsgeek lucidchart.com
Anysufficientlyadvanced
technologyis indistinguishable
from magic. - Arthur C. Clark
“ ”
@awsgeek lucidchart.com
ThankYou!
Read more:
lucidchart.com/blog/cloud
Follow:
@awsgeekon Twitter
See more:
awsgeek.com

More Related Content

Similar to ZendCon/OE: Machine Leaning in the Cloud

stackconf 2021 | Why you should take care of infrastructure drift
stackconf 2021 | Why you should take care of infrastructure driftstackconf 2021 | Why you should take care of infrastructure drift
stackconf 2021 | Why you should take care of infrastructure driftNETWAYS
 
How We Learned To Love The Data Center Operating System
How We Learned To Love The Data Center Operating SystemHow We Learned To Love The Data Center Operating System
How We Learned To Love The Data Center Operating Systemsaulius_vl
 
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)Amazon Web Services Korea
 
개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) :: AWS DevDay 2018
개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) ::  AWS DevDay 2018개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) ::  AWS DevDay 2018
개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) :: AWS DevDay 2018Amazon Web Services Korea
 
Interaction designer how to grow up
Interaction designer how to grow upInteraction designer how to grow up
Interaction designer how to grow upzhubin
 
아마존의 딥러닝 기술 활용 사례
아마존의 딥러닝 기술 활용 사례아마존의 딥러닝 기술 활용 사례
아마존의 딥러닝 기술 활용 사례NAVER Engineering
 
HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?Remy Sharp
 
ML for Hackers
ML for HackersML for Hackers
ML for HackersOmri Fima
 
Why Agile Works But Isn't Working For You
Why Agile Works But Isn't Working For YouWhy Agile Works But Isn't Working For You
Why Agile Works But Isn't Working For YouDavid Harvey
 
(ARC317) Maintaining a Resilient Front Door at Massive Scale | AWS re:Invent ...
(ARC317) Maintaining a Resilient Front Door at Massive Scale | AWS re:Invent ...(ARC317) Maintaining a Resilient Front Door at Massive Scale | AWS re:Invent ...
(ARC317) Maintaining a Resilient Front Door at Massive Scale | AWS re:Invent ...Amazon Web Services
 
Systems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop KeynoteSystems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop KeynoteDeepak Singh
 
Securing Rails
Securing RailsSecuring Rails
Securing RailsAlex Payne
 
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)Amazon Web Services Korea
 
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014Christopher Schmitt
 
Oracle Developer Tour Latam Nowadays Architecture Trends, from Monolith to Mi...
Oracle Developer Tour Latam Nowadays Architecture Trends, from Monolith to Mi...Oracle Developer Tour Latam Nowadays Architecture Trends, from Monolith to Mi...
Oracle Developer Tour Latam Nowadays Architecture Trends, from Monolith to Mi...Alberto Salazar
 
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....Michele Orselli
 
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....Alessandro Cinelli (cirpo)
 
An Overview of the AI on the AWS Platform
An Overview of the AI on the AWS PlatformAn Overview of the AI on the AWS Platform
An Overview of the AI on the AWS PlatformAmazon Web Services
 
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey GordeychikCODE BLUE
 

Similar to ZendCon/OE: Machine Leaning in the Cloud (20)

stackconf 2021 | Why you should take care of infrastructure drift
stackconf 2021 | Why you should take care of infrastructure driftstackconf 2021 | Why you should take care of infrastructure drift
stackconf 2021 | Why you should take care of infrastructure drift
 
How We Learned To Love The Data Center Operating System
How We Learned To Love The Data Center Operating SystemHow We Learned To Love The Data Center Operating System
How We Learned To Love The Data Center Operating System
 
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
 
개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) :: AWS DevDay 2018
개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) ::  AWS DevDay 2018개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) ::  AWS DevDay 2018
개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) :: AWS DevDay 2018
 
Interaction designer how to grow up
Interaction designer how to grow upInteraction designer how to grow up
Interaction designer how to grow up
 
아마존의 딥러닝 기술 활용 사례
아마존의 딥러닝 기술 활용 사례아마존의 딥러닝 기술 활용 사례
아마존의 딥러닝 기술 활용 사례
 
Chaos is a ladder !
Chaos is a ladder !Chaos is a ladder !
Chaos is a ladder !
 
HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?
 
ML for Hackers
ML for HackersML for Hackers
ML for Hackers
 
Why Agile Works But Isn't Working For You
Why Agile Works But Isn't Working For YouWhy Agile Works But Isn't Working For You
Why Agile Works But Isn't Working For You
 
(ARC317) Maintaining a Resilient Front Door at Massive Scale | AWS re:Invent ...
(ARC317) Maintaining a Resilient Front Door at Massive Scale | AWS re:Invent ...(ARC317) Maintaining a Resilient Front Door at Massive Scale | AWS re:Invent ...
(ARC317) Maintaining a Resilient Front Door at Massive Scale | AWS re:Invent ...
 
Systems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop KeynoteSystems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop Keynote
 
Securing Rails
Securing RailsSecuring Rails
Securing Rails
 
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
AI 클라우드로 완전 정복하기 - 데이터 분석부터 딥러닝까지 (윤석찬, AWS테크에반젤리스트)
 
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
 
Oracle Developer Tour Latam Nowadays Architecture Trends, from Monolith to Mi...
Oracle Developer Tour Latam Nowadays Architecture Trends, from Monolith to Mi...Oracle Developer Tour Latam Nowadays Architecture Trends, from Monolith to Mi...
Oracle Developer Tour Latam Nowadays Architecture Trends, from Monolith to Mi...
 
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
 
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
BDD - Buzzword Driven Development - Build the next cool app for fun and for.....
 
An Overview of the AI on the AWS Platform
An Overview of the AI on the AWS PlatformAn Overview of the AI on the AWS Platform
An Overview of the AI on the AWS Platform
 
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
 

Recently uploaded

TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Recently uploaded (20)

TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

ZendCon/OE: Machine Leaning in the Cloud