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.....Alessandro Cinelli (cirpo)
 
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
 
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

Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
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
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 

Recently uploaded (20)

Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
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
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 

ZendCon/OE: Machine Leaning in the Cloud