SlideShare a Scribd company logo
@awsgeek lucidchart.com
for noobs
MACHINE
LEARNINGIntheCloud
@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 Lucidchart Webinar - Machine Learning on 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
Amazon Web Services Korea
 
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
saulius_vl
 
Deep Learning for Developers (expanded version, 12/2017)
Deep Learning for Developers (expanded version, 12/2017)Deep Learning for Developers (expanded version, 12/2017)
Deep Learning for Developers (expanded version, 12/2017)
Julien SIMON
 
Securing Rails
Securing RailsSecuring Rails
Securing Rails
Alex Payne
 
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
Amazon Web Services Korea
 
아마존의 딥러닝 기술 활용 사례
아마존의 딥러닝 기술 활용 사례아마존의 딥러닝 기술 활용 사례
아마존의 딥러닝 기술 활용 사례
NAVER Engineering
 
Interaction designer how to grow up
Interaction designer how to grow upInteraction designer how to grow up
Interaction designer how to grow up
zhubin
 
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
 
Chaos is a ladder !
Chaos is a ladder !Chaos is a ladder !
Chaos is a ladder !
Haggai Philip Zagury
 
ML for Hackers
ML for HackersML for Hackers
ML for Hackers
Omri Fima
 
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
 
[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
CODE BLUE
 
Moving Forward with AI
Moving Forward with AIMoving Forward with AI
Moving Forward with AI
Adrian Hornsby
 
Systems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop KeynoteSystems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop KeynoteDeepak Singh
 
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
David Harvey
 
WebWorkersCamp 2010
WebWorkersCamp 2010WebWorkersCamp 2010
WebWorkersCamp 2010
Olivier Gutknecht
 
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
Amazon Web Services
 
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
 
Stefan Judis "Did we(b development) lose the right direction?"
Stefan Judis "Did we(b development) lose the right direction?"Stefan Judis "Did we(b development) lose the right direction?"
Stefan Judis "Did we(b development) lose the right direction?"
Fwdays
 

Similar to Lucidchart Webinar - Machine Learning on AWS (20)

개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) :: AWS DevDay 2018
개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) ::  AWS DevDay 2018개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) ::  AWS DevDay 2018
개발자가 알아두면 좋은 5가지 AWS 인공 지능 서비스 깨알 지식 (윤석찬, AWS 테크에반젤리스트) :: AWS DevDay 2018
 
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
 
Deep Learning for Developers (expanded version, 12/2017)
Deep Learning for Developers (expanded version, 12/2017)Deep Learning for Developers (expanded version, 12/2017)
Deep Learning for Developers (expanded version, 12/2017)
 
Securing Rails
Securing RailsSecuring Rails
Securing Rails
 
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
아마존의 딥러닝 기술 활용 사례 - 윤석찬 (AWS 테크니컬 에반젤리스트)
 
아마존의 딥러닝 기술 활용 사례
아마존의 딥러닝 기술 활용 사례아마존의 딥러닝 기술 활용 사례
아마존의 딥러닝 기술 활용 사례
 
Interaction designer how to grow up
Interaction designer how to grow upInteraction designer how to grow up
Interaction designer how to grow up
 
HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?
 
Chaos is a ladder !
Chaos is a ladder !Chaos is a ladder !
Chaos is a ladder !
 
ML for Hackers
ML for HackersML for Hackers
ML for Hackers
 
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...
 
[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
 
Moving Forward with AI
Moving Forward with AIMoving Forward with AI
Moving Forward with AI
 
Systems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop KeynoteSystems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop Keynote
 
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
 
WebWorkersCamp 2010
WebWorkersCamp 2010WebWorkersCamp 2010
WebWorkersCamp 2010
 
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
 
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.....
 
Stefan Judis "Did we(b development) lose the right direction?"
Stefan Judis "Did we(b development) lose the right direction?"Stefan Judis "Did we(b development) lose the right direction?"
Stefan Judis "Did we(b development) lose the right direction?"
 

Recently uploaded

DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 

Recently uploaded (20)

DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 

Lucidchart Webinar - Machine Learning on AWS