SlideShare a Scribd company logo
1 of 42
Download to read offline
Learning	Machine	Learning
A	little	intro	to	a	(not	that	complex)	world
@joel__lord
#LonestarPHP
About	Me
@joel__lord
#LonestarPHP
Our	Agenda	for	today…
• AI	vs	ML
• Deep	Learning	&	
Neural	Networks
• Supervised	vs	
unsupervised
• Naïve	Bayes	Classifier
• Genetic	Algorithms
@joel__lord
#LonestarPHP
@joel__lord
#LonestarPHP
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
#LonestarPHP
Artificial	Intelligence
“takes	actions	that	maximize	
its	chance	of	success	at	some	
goal”
@joel__lord
#LonestarPHP
Examples	in	real	life
@joel__lord
#LonestarPHP
Machine	Learning
Machine	learning	(ML) is	the	subfield	
of computer	science that	gives	"computers	the	
ability	to	learn	without	being	explicitly	
programmed."
@joel__lord
#LonestarPHP
@joel__lord
#LonestarPHP
@joel__lord
#LonestarPHP
@joel__lord
#LonestarPHP
@joel__lord
#LonestarPHP
@joel__lord
#LonestarPHP
“Don’t	be	afraid	of	artificial	intelligence,	be	
afraid	of	humanity.”
@joel__lord
#LonestarPHP
Deep	Learning	&	
Big	Data
• Explosion	of	digital	data
• Can’t	be	processed	with	
traditional	methods	
anymore
@joel__lord
#LonestarPHP
Neural	
Networks
• Breaking	big	problems	
in	small	layers
@joel__lord
#LonestarPHP
Supervised
Learning
• Requires feedback
• Starts with nothing
and increases its
understanding
• Useless if the data
is of bad quality
• Use cases:
• Classification
@joel__lord
#LonestarPHP
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
#LonestarPHP
The	Naïve	Bayes	Classifier
@joel__lord
#LonestarPHP
Bayes	Theorem
• 𝑃 𝐴 𝐵 =
% 𝐴 𝐵 % &
% '
@joel__lord
#LonestarPHP
Bayes	Theorem
• 𝑃 𝐴 𝐵 =
% 𝐵 𝐴 % &
% 𝐵 𝐴 % & ( )*% 𝐵 𝐴 )*% &
@joel__lord
#LonestarPHP
Bayes	Theorem
• 𝑃 𝐴 𝐵 =
∏ % 𝐴 𝑊-
.
/01
∏ % 𝐴 𝑊-
.
/01 ( ∏ )*% 𝐴 𝑊-
.
/01
@joel__lord
#LonestarPHP
Bayes	Theorem
• 𝑃 𝐴 𝐵 = 𝑊2∱
@joel__lord
#LonestarPHP
Naive	Bayes	
Classifier
• Let’s	look	at	a	concrete	
example.
• You	never	know	what	
you’re	gonna get
@joel__lord
#LonestarPHP
Probability	that	a	chocolate	has	nuts
Nuts No	Nuts
Round 25% 75%
Square 75% 25%
Dark 10% 90%
Light 90% 10%
@joel__lord
#LonestarPHP
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
#LonestarPHP
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
#LonestarPHP
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
#LonestarPHP
Naïve	Bayes	Classifier	in	code
var Classifier = function() {
this.dictionaries = {};
};
Classifier.prototype.classify = function(text, group) {
};
Classifier.prototype.categorize = function(text) {
};
@joel__lord
#LonestarPHP
@joel__lord
#LonestarPHP
Sentiment	
Analysis
• Not	Machine	Learning
• Uses	classifiers	and	
AFINN-165	(and	
emojis)
@joel__lord
#LonestarPHP
Sentiment	
Analysis
• Javascript:
• npm install	sentiment
• PHP:	
• composer	require	
risan/sentiment-
analysis
@joel__lord
#LonestarPHP
Genetic	
Algorithm
• Awesome	shit!
@joel__lord
#LonestarPHP
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
#LonestarPHP
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
#LonestarPHP
Genetic	Algorithm
Credit:	AutoDesk
https://autodeskresearch.com/projects/Dreamcatcher
@joel__lord
#LonestarPHP
https://www.youtube.com/watch?v=yci5FuI1ovk
@joel__lord
#LonestarPHP
Genetic	Algorithm	in	code
//Declare Consts
function randomInt(min, max) {…}
function random(min, max) {…}
function fitness(individual) {…}
function sortByFitness(population) {…}
function randomIndividual() {…}
function randomPopulation(size) {…}
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();
@joel__lord
#LonestarPHP
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
Lone	Star	PHP,	April	23rd 2017
@joel__lord
joellord
Thank	you
Presented	By
JOEL	LORD
Lone	Star	PHP,	April	23rd 2017
@joel__lord
joellord
Questions?
Impact	of	parameters on	Genetic Algorithms

More Related Content

What's hot

artificial intelligence
 artificial intelligence artificial intelligence
artificial intelligence
Megha Sharma
 
Lecture1 AI1 Introduction to artificial intelligence
Lecture1 AI1 Introduction to artificial intelligenceLecture1 AI1 Introduction to artificial intelligence
Lecture1 AI1 Introduction to artificial intelligence
Albert Orriols-Puig
 
Artificialintelignc 131019040643-phpapp01
Artificialintelignc 131019040643-phpapp01Artificialintelignc 131019040643-phpapp01
Artificialintelignc 131019040643-phpapp01
Amna Saeed
 
AI A Slight Intro
AI A Slight IntroAI A Slight Intro
AI A Slight Intro
Omar Enayet
 
Artificialintelignce lecture1 BCS7
Artificialintelignce lecture1 BCS7Artificialintelignce lecture1 BCS7
Artificialintelignce lecture1 BCS7
Amna Saeed
 

What's hot (20)

Advanced Artificial Intelligence
Advanced Artificial IntelligenceAdvanced Artificial Intelligence
Advanced Artificial Intelligence
 
Simplified Introduction to AI
Simplified Introduction to AISimplified Introduction to AI
Simplified Introduction to AI
 
Lect#1 (Artificial Intelligence )
Lect#1 (Artificial Intelligence )Lect#1 (Artificial Intelligence )
Lect#1 (Artificial Intelligence )
 
artificial intelligence
 artificial intelligence artificial intelligence
artificial intelligence
 
Artificial Intelligence vs. Machine Learning
 Artificial Intelligence vs. Machine Learning Artificial Intelligence vs. Machine Learning
Artificial Intelligence vs. Machine Learning
 
Artificial Intelligence by Jayant
Artificial Intelligence by JayantArtificial Intelligence by Jayant
Artificial Intelligence by Jayant
 
Artificial intelligence study project
Artificial intelligence study projectArtificial intelligence study project
Artificial intelligence study project
 
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNINGARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
 
Machine Learning and Artificial Intelligence
Machine Learning and Artificial IntelligenceMachine Learning and Artificial Intelligence
Machine Learning and Artificial Intelligence
 
Ai chapter1
Ai chapter1Ai chapter1
Ai chapter1
 
Jupyter widgets for human in the loop data science
Jupyter widgets for human in the loop data scienceJupyter widgets for human in the loop data science
Jupyter widgets for human in the loop data science
 
Lecture1 AI1 Introduction to artificial intelligence
Lecture1 AI1 Introduction to artificial intelligenceLecture1 AI1 Introduction to artificial intelligence
Lecture1 AI1 Introduction to artificial intelligence
 
Timo Honkela: An Introduction to Artificial Intelligence
Timo Honkela: An Introduction to Artificial IntelligenceTimo Honkela: An Introduction to Artificial Intelligence
Timo Honkela: An Introduction to Artificial Intelligence
 
AI Introduction
AI Introduction AI Introduction
AI Introduction
 
Artificialintelignc 131019040643-phpapp01
Artificialintelignc 131019040643-phpapp01Artificialintelignc 131019040643-phpapp01
Artificialintelignc 131019040643-phpapp01
 
What Artificial intelligence can Learn from Human Evolution
What Artificial intelligence can Learn from Human EvolutionWhat Artificial intelligence can Learn from Human Evolution
What Artificial intelligence can Learn from Human Evolution
 
AI A Slight Intro
AI A Slight IntroAI A Slight Intro
AI A Slight Intro
 
Artificialintelignce lecture1 BCS7
Artificialintelignce lecture1 BCS7Artificialintelignce lecture1 BCS7
Artificialintelignce lecture1 BCS7
 
Amdocs ai s1
Amdocs ai s1Amdocs ai s1
Amdocs ai s1
 
Aritficial intelligence
Aritficial intelligenceAritficial intelligence
Aritficial intelligence
 

Similar to Learning Machine Learning

Similar to Learning Machine Learning (20)

Learning About Machine Learning
Learning About Machine LearningLearning About Machine Learning
Learning About Machine Learning
 
Learning About Machine Learning
Learning About Machine LearningLearning About Machine Learning
Learning About Machine Learning
 
Learning Machine Learning
Learning Machine LearningLearning Machine Learning
Learning Machine Learning
 
Advancement in artificial intelligence: Should Humans be Worried?
Advancement in artificial intelligence: Should Humans be Worried?Advancement in artificial intelligence: Should Humans be Worried?
Advancement in artificial intelligence: Should Humans be Worried?
 
Introduction to AI.pptx
Introduction to AI.pptxIntroduction to AI.pptx
Introduction to AI.pptx
 
Learning Machine Learning
Learning Machine LearningLearning Machine Learning
Learning Machine Learning
 
Artificial Intelligence: An Introduction
 Artificial Intelligence: An Introduction Artificial Intelligence: An Introduction
Artificial Intelligence: An Introduction
 
AN INTRODUCTION TO EMERGING TECHNOLOGY
AN INTRODUCTION TO EMERGING TECHNOLOGYAN INTRODUCTION TO EMERGING TECHNOLOGY
AN INTRODUCTION TO EMERGING TECHNOLOGY
 
Artificial intelligence
Artificial intelligenceArtificial intelligence
Artificial intelligence
 
artificial intelligence ppt.pptx
artificial intelligence ppt.pptxartificial intelligence ppt.pptx
artificial intelligence ppt.pptx
 
Today is all about AI
Today is all about AIToday is all about AI
Today is all about AI
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 
Artificial intelligence agency's website
Artificial intelligence agency's websiteArtificial intelligence agency's website
Artificial intelligence agency's website
 
MOTION & MANIPULIATION IN ARTIFICIAL INTELLIGENCE.pdf
MOTION & MANIPULIATION IN ARTIFICIAL INTELLIGENCE.pdfMOTION & MANIPULIATION IN ARTIFICIAL INTELLIGENCE.pdf
MOTION & MANIPULIATION IN ARTIFICIAL INTELLIGENCE.pdf
 
Ai
AiAi
Ai
 
CH-1 Introduction to Artificial Intelligence for class 9.pptx
CH-1 Introduction to Artificial Intelligence for class 9.pptxCH-1 Introduction to Artificial Intelligence for class 9.pptx
CH-1 Introduction to Artificial Intelligence for class 9.pptx
 
Artificial intelligence with machine learning
Artificial intelligence with machine learningArtificial intelligence with machine learning
Artificial intelligence with machine learning
 
Presentation.pptx
Presentation.pptxPresentation.pptx
Presentation.pptx
 
Ai in software automation testing - testim.io
Ai in software automation testing - testim.ioAi in software automation testing - testim.io
Ai in software automation testing - testim.io
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 

More from Joel Lord

More from Joel Lord (20)

From Ceasar Cipher To Quantum Cryptography
From Ceasar Cipher To Quantum CryptographyFrom Ceasar Cipher To Quantum Cryptography
From Ceasar Cipher To Quantum Cryptography
 
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)
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)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)
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)
 
Forgot Password? Yes I Did!
Forgot Password? Yes I Did!Forgot Password? Yes I Did!
Forgot Password? Yes I Did!
 
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)
I Don't Care About Security (And Neither Should You)
 
Mot de passe oublié? Absolument!
Mot de passe oublié? Absolument!Mot de passe oublié? Absolument!
Mot de passe oublié? Absolument!
 
Asynchronicity: concurrency. A tale of
Asynchronicity: concurrency. A tale ofAsynchronicity: concurrency. A tale of
Asynchronicity: concurrency. A tale of
 
Forgot Password? Yes I Did!
Forgot Password? Yes I Did!Forgot Password? Yes I Did!
Forgot Password? Yes I Did!
 
WTH is a JWT
WTH is a JWTWTH is a JWT
WTH is a JWT
 
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)
I Don't Care About Security (And Neither Should You)
 
Forgot Password? Yes I Did!
Forgot Password? Yes I Did!Forgot Password? Yes I Did!
Forgot Password? Yes I Did!
 
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)
I Don't Care About Security (And Neither Should You)
 
WTH is a JWT
WTH is a JWTWTH is a JWT
WTH is a JWT
 
Asynchonicity: concurrency. A tale of
Asynchonicity: concurrency. A tale ofAsynchonicity: concurrency. A tale of
Asynchonicity: concurrency. A tale of
 
I Don't Care About Security
I Don't Care About Security I Don't Care About Security
I Don't Care About Security
 
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)
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)I Don't Care About Security (And Neither Should You)
I Don't Care About Security (And Neither Should You)
 
Secure your SPA with Auth0
Secure your SPA with Auth0Secure your SPA with Auth0
Secure your SPA with Auth0
 
Rise of the Nodebots
Rise of the NodebotsRise of the Nodebots
Rise of the Nodebots
 

Recently uploaded

Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
imonikaupta
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
nirzagarg
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Chandigarh Call girls 9053900678 Call girls in Chandigarh
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
ydyuyu
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
nilamkumrai
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
nirzagarg
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 

Learning Machine Learning