Learning About Machine Learning

J
Learning	Machine	Learning
A	little	intro	to	a	(not	that	complex)	world
@joel__lord
#phptek
About	Me
@joel__lord
#phptek
Our	Agenda	for	today…
• AI	vs	ML
• Deep	Learning	&	
Neural	Networks
• Supervised	vs	
unsupervised
• Naïve	Bayes	Classifier
• Genetic	Algorithms
• Q&A
@joel__lord
#phptek
@joel__lord
#phptek
Artificial	Intelligence
Artificial	intelligence (AI)	
is intelligence exhibited	by machines.	
In computer	science,	the	field	of	AI	research	
defines	itself	as	the	study	of	"intelligent	
agents":	any	device	that	perceives	its	
environment	and	takes	actions	that	maximize	
its	chance	of	success	at	some	goal.
@joel__lord
#phptek
Artificial	Intelligence
“takes	actions	that	maximize	
its	chance	of	success	at	some	
goal”
@joel__lord
#phptek
Examples	in	real	life
@joel__lord
#phptek
Machine	Learning
Machine	learning	(ML) is	the	subfield	
of computer	science that	gives	"computers	the	
ability	to	learn	without	being	explicitly	
programmed."
@joel__lord
#phptek
@joel__lord
#phptek
@joel__lord
#phptek
@joel__lord
#phptek
@joel__lord
#phptek
@joel__lord
#phptek
“Don’t	be	afraid	of	artificial	intelligence,	be	
afraid	of	humanity.”
@joel__lord
#phptek
Deep	Learning	&	
Big	Data
• Explosion	of	digital	data
• Can’t	be	processed	with	
traditional	methods	
anymore
@joel__lord
#phptek
Neural	
Networks
• Breaking	big	problems	
in	small	layers
@joel__lord
#phptek
Supervised
Learning
• Requires feedback
• Starts with nothing
and increases its
understanding
• Useless if the data
is of bad quality
• Use cases:
• Classification
@joel__lord
#phptek
Unsupervised	
Learning
• There	is	no	feedback
• Good	in	the	case	of	no	right	or	
wrong	answer
• Helps	to	identify	patterns	or	data	
structures
• Use	case:
• You	might	also	be	interested	
in…
• Grouping	customers	by	
purchasing	behaviors
@joel__lord
#phptek
The	Naïve	Bayes	Classifier
@joel__lord
#phptek
Bayes	Theorem
• 𝑃 𝐴 𝐵 =
% &
% & '% (
@joel__lord
#phptek
Bayes	Theorem
• 𝑃 𝐴 𝐵 =
% 𝐵 𝐴 % &
% 𝐵 𝐴 % & ' )*% 𝐵 𝐴 )*% &
@joel__lord
#phptek
Bayes	Theorem
• 𝑃 𝐴 𝐵 =
∏ % 𝐴 𝑊-
.
/01
∏ % 𝐴 𝑊-
.
/01 ' ∏ )*% 𝐴 𝑊-
.
/01
@joel__lord
#phptek
Bayes	Theorem
• 𝑃 𝐴 𝐵 = 𝑊2∱
@joel__lord
#phptek
Naive	Bayes	
Classifier
• Let’s	look	at	a	concrete	
example.
• You	never	know	what	
you’re	gonna get
@joel__lord
#phptek
Probability	that	a	chocolate	has	nuts
Nuts No	Nuts
Round 25% 75%
Square 75% 25%
Dark 10% 90%
Light 90% 10%
@joel__lord
#phptek
Do	round,	light	chocolates	have	nuts?
Nuts No	Nuts
Round 25% 75% 0.25 0.75
Square 75% 25% - -
Dark 10% 90% - -
Light 90% 10% 0.9 0.1
@joel__lord
#phptek
Do	round,	light	chocolates	have	nuts?
Nuts No	Nuts
Round 25% 75% 0.25 0.75
Square 75% 25% - -
Dark 10% 90% - -
Light 90% 10% 0.9 0.1
4 𝑷𝒊
𝒏
𝒊8𝟏
0.225 0.075
@joel__lord
#phptek
Do	round,	light	chocolates	have	nuts?
Nuts No	Nuts
Round 25% 75% 0.25 0.75
Square 75% 25% - -
Dark 10% 90% - -
Light 90% 10% 0.9 0.1
4 𝑷𝒊
𝒏
𝒊8𝟏
0.225 0.075
𝑃 🌰 =	
0.225
0.225 + 0.075
= 0.75 = 75%
@joel__lord
#phptek
Naïve	Bayes	Classifier	in	code
var Classifier = function() {
this.dictionaries = {};
};
Classifier.prototype.classify = function(text, group) {
};
Classifier.prototype.categorize = function(text) {
};
@joel__lord
#phptek
@joel__lord
#phptek
Sentiment	
Analysis
• Not	Machine	Learning
• Uses	classifiers	and	
AFINN-165	(and	
emojis)
@joel__lord
#phptek
Sentiment	
Analysis
• Javascript:
• npm install	sentiment
• PHP:	
• composer	require	
risan/sentiment-
analysis
@joel__lord
#phptek
Genetic	
Algorithm
• Awesome	shit!
@joel__lord
#phptek
Genetic	
Algorithm
• Create	a	population	of	
random	individuals
• Keep	the	closest	individuals
• Keep	a	few	random	
individuals
• Introduce	random	mutations
• Randomly	create	”children”	
• Magically	end	up	with	a	valid	
solution
@joel__lord
#phptek
Genetic	
Algorithm
• Create	a	population	of	
random individuals
• Keep	the	closest	individuals
• Keep	a	few	random
individuals
• Introduce	random mutations
• Randomly create	”children”	
• Magically end	up	with	a	valid	
solution
@joel__lord
#phptek
Genetic	Algorithm
Credit:	AutoDesk
https://autodeskresearch.com/projects/Dreamcatcher
@joel__lord
#phptek
https://www.youtube.com/watch?v=yci5FuI1ovk
@joel__lord
#phptek
Genetic	Algorithm	in	code
//Declare Consts
function randomInt(min, max) {…}
function random(min, max) {…}
function randomIndividual() {…}
function randomPopulation(size) {…}
function fitness(individual) {…}
function sortByFitness(population) {…}
function mutate(population) {…}
function reproduce(father, mother) {…}
function evolve(population) {…}
function findSolution() {
var population = randomPopulation(POP_SIZE);
var generation = 0;
while (fitness(population[0]) > CLOSE_ENOUGH) {
generation++;
population = evolve(population);
}
return {solution: population[0], generations: generation};
}
var sol = findSolution();
Impact	of	parameters on	Genetic Algorithms
@joel__lord
#phptek
What	did	we	learn?
• Machine	Learning	and	Artificial	Intelligence
• Big	Data	and	Deep	Learning
• Supervised	vs	unsupervised
• Basic	Algorithms
• Naïve	Bayes	Classifier
• Sentiment	Analysis
• Genetic	Algorithm
• Hopefully,	you	don’t	feel	intimidated	by	ML	anymore
Presented	By
JOEL	LORD
PHP	[tek],	May	26th 2017
@joel__lord
joellord
Thank	you
https://joind.in/talk/47902
Learning About Machine Learning
Presented	By
JOEL	LORD
PHP	[tek],	May	26th 2017
@joel__lord
joellord
Questions?
https://joind.in/talk/47902
1 of 43

Recommended

Learning About Machine Learning by
Learning About Machine LearningLearning About Machine Learning
Learning About Machine LearningJoel Lord
582 views42 slides
Learning About Machine Learning by
Learning About Machine LearningLearning About Machine Learning
Learning About Machine LearningJoel Lord
308 views42 slides
Learning Machine Learning by
Learning Machine LearningLearning Machine Learning
Learning Machine LearningJoel Lord
241 views43 slides
Machine Learning: Inteligencia Artificial no es sólo un tema de Ciencia Ficci... by
Machine Learning: Inteligencia Artificial no es sólo un tema de Ciencia Ficci...Machine Learning: Inteligencia Artificial no es sólo un tema de Ciencia Ficci...
Machine Learning: Inteligencia Artificial no es sólo un tema de Ciencia Ficci....NET Conf UY
1.5K views29 slides
Ai notes by
Ai notesAi notes
Ai notesAbdullahGubbi1
327 views159 slides
Artificial Intelligence Course- Introduction by
Artificial Intelligence Course- IntroductionArtificial Intelligence Course- Introduction
Artificial Intelligence Course- IntroductionMuhammad Sanaullah
1.7K views15 slides

More Related Content

What's hot

(Ch#1) artificial intelligence by
(Ch#1) artificial intelligence(Ch#1) artificial intelligence
(Ch#1) artificial intelligenceNoor Ul Hudda Memon
2.6K views26 slides
Artificial Intelligence by Jayant by
Artificial Intelligence by JayantArtificial Intelligence by Jayant
Artificial Intelligence by JayantJayant Jain
376 views15 slides
Artificial Intelligence power point presentation document by
Artificial Intelligence power point presentation documentArtificial Intelligence power point presentation document
Artificial Intelligence power point presentation documentDavid Raj Kanthi
1.2K views26 slides
Artificial Intelligence Techniques In Power Systems Paper Presentation by
Artificial Intelligence Techniques In Power Systems Paper PresentationArtificial Intelligence Techniques In Power Systems Paper Presentation
Artificial Intelligence Techniques In Power Systems Paper Presentationguestac67362
6.5K views14 slides
Artificial Intelligence for Business by
Artificial Intelligence for BusinessArtificial Intelligence for Business
Artificial Intelligence for BusinessNicola Mattina
11K views47 slides
Artificial Intelligence- An Introduction by
Artificial Intelligence- An IntroductionArtificial Intelligence- An Introduction
Artificial Intelligence- An Introductionacemindia
88 views17 slides

What's hot(20)

Artificial Intelligence by Jayant by Jayant Jain
Artificial Intelligence by JayantArtificial Intelligence by Jayant
Artificial Intelligence by Jayant
Jayant Jain376 views
Artificial Intelligence power point presentation document by David Raj Kanthi
Artificial Intelligence power point presentation documentArtificial Intelligence power point presentation document
Artificial Intelligence power point presentation document
David Raj Kanthi1.2K views
Artificial Intelligence Techniques In Power Systems Paper Presentation by guestac67362
Artificial Intelligence Techniques In Power Systems Paper PresentationArtificial Intelligence Techniques In Power Systems Paper Presentation
Artificial Intelligence Techniques In Power Systems Paper Presentation
guestac673626.5K views
Artificial Intelligence for Business by Nicola Mattina
Artificial Intelligence for BusinessArtificial Intelligence for Business
Artificial Intelligence for Business
Nicola Mattina11K views
Artificial Intelligence- An Introduction by acemindia
Artificial Intelligence- An IntroductionArtificial Intelligence- An Introduction
Artificial Intelligence- An Introduction
acemindia88 views
Artificial intelligence original by Saila Sri
Artificial intelligence originalArtificial intelligence original
Artificial intelligence original
Saila Sri403 views
Artificial intelligence in cyber defense by Ujjwal Tripathi
Artificial intelligence in cyber defenseArtificial intelligence in cyber defense
Artificial intelligence in cyber defense
Ujjwal Tripathi8.3K views
Machine learning seminar presentation by sweety seth
Machine learning seminar presentationMachine learning seminar presentation
Machine learning seminar presentation
sweety seth23.2K views
artificial Intelligence by Ramya SK
artificial Intelligence artificial Intelligence
artificial Intelligence
Ramya SK1.8K views
Lebanon SoftShore Artificial Intelligence Seminar - March 38, 2014 by lebsoftshore
Lebanon SoftShore Artificial Intelligence Seminar - March 38, 2014Lebanon SoftShore Artificial Intelligence Seminar - March 38, 2014
Lebanon SoftShore Artificial Intelligence Seminar - March 38, 2014
lebsoftshore3K views
ARTIFICIAL INTELLIGENCE & NEURAL NETWORKS by Er Kaushal
ARTIFICIAL INTELLIGENCE & NEURAL NETWORKSARTIFICIAL INTELLIGENCE & NEURAL NETWORKS
ARTIFICIAL INTELLIGENCE & NEURAL NETWORKS
Er Kaushal13.6K views
Artificial Intelligence (AI) -> understanding what it is & how you can use it... by Adela VILLANUEVA
Artificial Intelligence (AI) -> understanding what it is & how you can use it...Artificial Intelligence (AI) -> understanding what it is & how you can use it...
Artificial Intelligence (AI) -> understanding what it is & how you can use it...
Adela VILLANUEVA1.5K views
Computational Intelligence and Applications by Chetan Kumar S
Computational Intelligence and ApplicationsComputational Intelligence and Applications
Computational Intelligence and Applications
Chetan Kumar S3K views
BE-EEE-8th sem-Presentation Artificial intelligence in security managenent by MOHAMMED SAQIB
BE-EEE-8th sem-Presentation Artificial intelligence in security managenentBE-EEE-8th sem-Presentation Artificial intelligence in security managenent
BE-EEE-8th sem-Presentation Artificial intelligence in security managenent
MOHAMMED SAQIB433 views
Paper sharing_deep learning for smart manufacturing methods and applications by YOU SHENG CHEN
Paper sharing_deep learning for smart manufacturing methods and applicationsPaper sharing_deep learning for smart manufacturing methods and applications
Paper sharing_deep learning for smart manufacturing methods and applications
YOU SHENG CHEN194 views

Similar to Learning About Machine Learning

Learning Machine Learning by
Learning Machine LearningLearning Machine Learning
Learning Machine LearningJoel Lord
568 views42 slides
Learning Machine Learning by
Learning Machine LearningLearning Machine Learning
Learning Machine LearningJoel Lord
452 views45 slides
Learning Machine Learning by
Learning Machine LearningLearning Machine Learning
Learning Machine LearningJoel Lord
343 views42 slides
AN INTRODUCTION TO EMERGING TECHNOLOGY by
AN INTRODUCTION TO EMERGING TECHNOLOGYAN INTRODUCTION TO EMERGING TECHNOLOGY
AN INTRODUCTION TO EMERGING TECHNOLOGYVijay R. Joshi
6.4K views17 slides
Ai in software automation testing - testim.io by
Ai in software automation testing - testim.ioAi in software automation testing - testim.io
Ai in software automation testing - testim.ioAliaa Monier Ismaail
1.1K views32 slides
Simplified Introduction to AI by
Simplified Introduction to AISimplified Introduction to AI
Simplified Introduction to AIDeepu S Nath
2.2K views63 slides

Similar to Learning About Machine Learning(20)

Learning Machine Learning by Joel Lord
Learning Machine LearningLearning Machine Learning
Learning Machine Learning
Joel Lord568 views
Learning Machine Learning by Joel Lord
Learning Machine LearningLearning Machine Learning
Learning Machine Learning
Joel Lord452 views
Learning Machine Learning by Joel Lord
Learning Machine LearningLearning Machine Learning
Learning Machine Learning
Joel Lord343 views
AN INTRODUCTION TO EMERGING TECHNOLOGY by Vijay R. Joshi
AN INTRODUCTION TO EMERGING TECHNOLOGYAN INTRODUCTION TO EMERGING TECHNOLOGY
AN INTRODUCTION TO EMERGING TECHNOLOGY
Vijay R. Joshi6.4K views
Simplified Introduction to AI by Deepu S Nath
Simplified Introduction to AISimplified Introduction to AI
Simplified Introduction to AI
Deepu S Nath2.2K views
Artificial Intelligence: An Introduction by Deepu S Nath
 Artificial Intelligence: An Introduction Artificial Intelligence: An Introduction
Artificial Intelligence: An Introduction
Deepu S Nath193 views
Advancement in artificial intelligence: Should Humans be Worried? by Raymond Owusu
Advancement in artificial intelligence: Should Humans be Worried?Advancement in artificial intelligence: Should Humans be Worried?
Advancement in artificial intelligence: Should Humans be Worried?
Raymond Owusu1.4K views
Introduction to AI.pptx by AshaS74
Introduction to AI.pptxIntroduction to AI.pptx
Introduction to AI.pptx
AshaS747 views
Artificial Intelligence by komal jain
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
komal jain211 views
Introduction to artificial intelligence by SindhuVelmukull
Introduction to artificial intelligenceIntroduction to artificial intelligence
Introduction to artificial intelligence
SindhuVelmukull177 views
Introduction to Artificial Intelligence and Machine Learning with Python by AIMDek Technologies
Introduction to Artificial Intelligence and Machine Learning with Python Introduction to Artificial Intelligence and Machine Learning with Python
Introduction to Artificial Intelligence and Machine Learning with Python
Aritficial intelligence by Maqsood Awan
Aritficial intelligenceAritficial intelligence
Aritficial intelligence
Maqsood Awan178 views
Artificial intelligence by ravijain90
Artificial intelligenceArtificial intelligence
Artificial intelligence
ravijain902.4K views
[Srijan Wednesday Webinars] Artificial Intelligence & the Future of Business by Srijan Technologies
[Srijan Wednesday Webinars] Artificial Intelligence & the Future of Business[Srijan Wednesday Webinars] Artificial Intelligence & the Future of Business
[Srijan Wednesday Webinars] Artificial Intelligence & the Future of Business
Webinar on AI in IoT applications KCG Connect Alumni Digital Series by Rajkumar by Rajkumar R
Webinar on AI in IoT applications KCG Connect Alumni Digital Series by RajkumarWebinar on AI in IoT applications KCG Connect Alumni Digital Series by Rajkumar
Webinar on AI in IoT applications KCG Connect Alumni Digital Series by Rajkumar
Rajkumar R197 views

More from Joel Lord

From Ceasar Cipher To Quantum Cryptography by
From Ceasar Cipher To Quantum CryptographyFrom Ceasar Cipher To Quantum Cryptography
From Ceasar Cipher To Quantum CryptographyJoel Lord
405 views185 slides
I Don't Care About Security (And Neither Should You) by
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)Joel Lord
670 views131 slides
I Don't Care About Security (And Neither Should You) by
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)Joel Lord
157 views128 slides
I Don't Care About Security (And Neither Should You) by
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)Joel Lord
323 views121 slides
Forgot Password? Yes I Did! by
Forgot Password? Yes I Did!Forgot Password? Yes I Did!
Forgot Password? Yes I Did!Joel Lord
432 views61 slides
I Don't Care About Security (And Neither Should You) by
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)Joel Lord
153 views126 slides

More from Joel Lord(20)

From Ceasar Cipher To Quantum Cryptography by Joel Lord
From Ceasar Cipher To Quantum CryptographyFrom Ceasar Cipher To Quantum Cryptography
From Ceasar Cipher To Quantum Cryptography
Joel Lord405 views
I Don't Care About Security (And Neither Should You) by Joel Lord
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
Joel Lord670 views
I Don't Care About Security (And Neither Should You) by Joel Lord
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
Joel Lord157 views
I Don't Care About Security (And Neither Should You) by Joel Lord
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
Joel Lord323 views
Forgot Password? Yes I Did! by Joel Lord
Forgot Password? Yes I Did!Forgot Password? Yes I Did!
Forgot Password? Yes I Did!
Joel Lord432 views
I Don't Care About Security (And Neither Should You) by Joel Lord
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
Joel Lord153 views
Mot de passe oublié? Absolument! by Joel Lord
Mot de passe oublié? Absolument!Mot de passe oublié? Absolument!
Mot de passe oublié? Absolument!
Joel Lord193 views
Asynchronicity: concurrency. A tale of by Joel Lord
Asynchronicity: concurrency. A tale ofAsynchronicity: concurrency. A tale of
Asynchronicity: concurrency. A tale of
Joel Lord283 views
Forgot Password? Yes I Did! by Joel Lord
Forgot Password? Yes I Did!Forgot Password? Yes I Did!
Forgot Password? Yes I Did!
Joel Lord295 views
WTH is a JWT by Joel Lord
WTH is a JWTWTH is a JWT
WTH is a JWT
Joel Lord909 views
I Don't Care About Security (And Neither Should You) by Joel Lord
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
Joel Lord125 views
Forgot Password? Yes I Did! by Joel Lord
Forgot Password? Yes I Did!Forgot Password? Yes I Did!
Forgot Password? Yes I Did!
Joel Lord115 views
I Don't Care About Security (And Neither Should You) by Joel Lord
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
Joel Lord196 views
WTH is a JWT by Joel Lord
WTH is a JWTWTH is a JWT
WTH is a JWT
Joel Lord311 views
Asynchonicity: concurrency. A tale of by Joel Lord
Asynchonicity: concurrency. A tale ofAsynchonicity: concurrency. A tale of
Asynchonicity: concurrency. A tale of
Joel Lord360 views
I Don't Care About Security by Joel Lord
I Don't Care About Security I Don't Care About Security
I Don't Care About Security
Joel Lord247 views
I Don't Care About Security (And Neither Should You) by Joel Lord
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
Joel Lord209 views
I Don't Care About Security (And Neither Should You) by Joel Lord
I Don't Care About Security (And Neither Should You)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
Joel Lord233 views
Secure your SPA with Auth0 by Joel Lord
Secure your SPA with Auth0Secure your SPA with Auth0
Secure your SPA with Auth0
Joel Lord341 views
Rise of the Nodebots by Joel Lord
Rise of the NodebotsRise of the Nodebots
Rise of the Nodebots
Joel Lord262 views

Recently uploaded

ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ... by
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...Jasper Oosterveld
35 views49 slides
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ... by
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...ShapeBlue
126 views10 slides
"Surviving highload with Node.js", Andrii Shumada by
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada Fwdays
56 views29 slides
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And... by
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...ShapeBlue
106 views12 slides
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading... by
Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading...The Digital Insurer
90 views52 slides
The Role of Patterns in the Era of Large Language Models by
The Role of Patterns in the Era of Large Language ModelsThe Role of Patterns in the Era of Large Language Models
The Role of Patterns in the Era of Large Language ModelsYunyao Li
85 views65 slides

Recently uploaded(20)

ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ... by Jasper Oosterveld
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ... by ShapeBlue
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
ShapeBlue126 views
"Surviving highload with Node.js", Andrii Shumada by Fwdays
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada
Fwdays56 views
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And... by ShapeBlue
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
ShapeBlue106 views
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading... by The Digital Insurer
Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading...
The Role of Patterns in the Era of Large Language Models by Yunyao Li
The Role of Patterns in the Era of Large Language ModelsThe Role of Patterns in the Era of Large Language Models
The Role of Patterns in the Era of Large Language Models
Yunyao Li85 views
"Node.js Development in 2024: trends and tools", Nikita Galkin by Fwdays
"Node.js Development in 2024: trends and tools", Nikita Galkin "Node.js Development in 2024: trends and tools", Nikita Galkin
"Node.js Development in 2024: trends and tools", Nikita Galkin
Fwdays32 views
State of the Union - Rohit Yadav - Apache CloudStack by ShapeBlue
State of the Union - Rohit Yadav - Apache CloudStackState of the Union - Rohit Yadav - Apache CloudStack
State of the Union - Rohit Yadav - Apache CloudStack
ShapeBlue297 views
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha... by ShapeBlue
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
ShapeBlue180 views
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue198 views
The Power of Generative AI in Accelerating No Code Adoption.pdf by Saeed Al Dhaheri
The Power of Generative AI in Accelerating No Code Adoption.pdfThe Power of Generative AI in Accelerating No Code Adoption.pdf
The Power of Generative AI in Accelerating No Code Adoption.pdf
Saeed Al Dhaheri32 views
Business Analyst Series 2023 - Week 4 Session 8 by DianaGray10
Business Analyst Series 2023 -  Week 4 Session 8Business Analyst Series 2023 -  Week 4 Session 8
Business Analyst Series 2023 - Week 4 Session 8
DianaGray10123 views
Transcript: Redefining the book supply chain: A glimpse into the future - Tec... by BookNet Canada
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
BookNet Canada41 views
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue by ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueCloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
ShapeBlue135 views
Future of AR - Facebook Presentation by Rob McCarty
Future of AR - Facebook PresentationFuture of AR - Facebook Presentation
Future of AR - Facebook Presentation
Rob McCarty64 views

Learning About Machine Learning