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

Systems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop KeynoteSystems Bioinformatics Workshop Keynote
Systems Bioinformatics Workshop Keynote
Deepak Singh
 

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

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
Enterprise Knowledge
 

Recently uploaded (20)

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...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
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
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
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
 
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
 
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...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

ZendCon/OE: Machine Leaning in the Cloud