Learning Machine Learning

J
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
1 of 42

Recommended

Learning About Machine Learning by
Learning About Machine LearningLearning About Machine Learning
Learning About Machine LearningJoel Lord
582 views42 slides
Learning Machine Learning by
Learning Machine LearningLearning Machine Learning
Learning Machine LearningJoel Lord
241 views43 slides
Artificial Intelligence power point presentation by
Artificial Intelligence power point presentationArtificial Intelligence power point presentation
Artificial Intelligence power point presentationDavid Raj Kanthi
5.9K views27 slides
Introduction to Artificial Intelligence - Cybernetics Robo Academy by
Introduction to Artificial Intelligence - Cybernetics Robo AcademyIntroduction to Artificial Intelligence - Cybernetics Robo Academy
Introduction to Artificial Intelligence - Cybernetics Robo AcademyTutulAhmed3
147 views17 slides
Ai history to-m-learning by
Ai history to-m-learningAi history to-m-learning
Ai history to-m-learningKyung Eun Park
6.2K views37 slides
Artificial Intelligence: Basic Terminologies by
Artificial Intelligence: Basic TerminologiesArtificial Intelligence: Basic Terminologies
Artificial Intelligence: Basic TerminologiesMinakshi Atre
223 views41 slides

More Related Content

What's hot

Advanced Artificial Intelligence by
Advanced Artificial IntelligenceAdvanced Artificial Intelligence
Advanced Artificial IntelligenceAshik Iqbal
5.3K views23 slides
Simplified Introduction to AI by
Simplified Introduction to AISimplified Introduction to AI
Simplified Introduction to AIDeepu S Nath
2.2K views63 slides
Lect#1 (Artificial Intelligence ) by
Lect#1 (Artificial Intelligence )Lect#1 (Artificial Intelligence )
Lect#1 (Artificial Intelligence )Zeeshan_Jadoon
10.5K views26 slides
artificial intelligence by
 artificial intelligence artificial intelligence
artificial intelligenceMegha Sharma
739 views20 slides
Artificial Intelligence vs. Machine Learning by
 Artificial Intelligence vs. Machine Learning Artificial Intelligence vs. Machine Learning
Artificial Intelligence vs. Machine LearningPranab Choudhary
146 views32 slides
Artificial Intelligence by Jayant by
Artificial Intelligence by JayantArtificial Intelligence by Jayant
Artificial Intelligence by JayantJayant Jain
376 views15 slides

What's hot(20)

Advanced Artificial Intelligence by Ashik Iqbal
Advanced Artificial IntelligenceAdvanced Artificial Intelligence
Advanced Artificial Intelligence
Ashik Iqbal5.3K 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
Lect#1 (Artificial Intelligence ) by Zeeshan_Jadoon
Lect#1 (Artificial Intelligence )Lect#1 (Artificial Intelligence )
Lect#1 (Artificial Intelligence )
Zeeshan_Jadoon10.5K views
artificial intelligence by Megha Sharma
 artificial intelligence artificial intelligence
artificial intelligence
Megha Sharma739 views
Artificial Intelligence vs. Machine Learning by Pranab Choudhary
 Artificial Intelligence vs. Machine Learning Artificial Intelligence vs. Machine Learning
Artificial Intelligence vs. Machine Learning
Pranab Choudhary146 views
Artificial Intelligence by Jayant by Jayant Jain
Artificial Intelligence by JayantArtificial Intelligence by Jayant
Artificial Intelligence by Jayant
Jayant Jain376 views
Artificial intelligence study project by Victoria Gnatoka
Artificial intelligence study projectArtificial intelligence study project
Artificial intelligence study project
Victoria Gnatoka3.7K views
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING by Dr Sandeep Ranjan
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNINGARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
Dr Sandeep Ranjan4.6K views
Machine Learning and Artificial Intelligence by V.N.S. Satya Teja
Machine Learning and Artificial IntelligenceMachine Learning and Artificial Intelligence
Machine Learning and Artificial Intelligence
V.N.S. Satya Teja302 views
Jupyter widgets for human in the loop data science by Pascal Bugnion
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
Pascal Bugnion493 views
Lecture1 AI1 Introduction to artificial intelligence by Albert Orriols-Puig
Lecture1 AI1 Introduction to artificial intelligenceLecture1 AI1 Introduction to artificial intelligence
Lecture1 AI1 Introduction to artificial intelligence
Albert Orriols-Puig27.5K views
Timo Honkela: An Introduction to Artificial Intelligence by Timo Honkela
Timo Honkela: An Introduction to Artificial IntelligenceTimo Honkela: An Introduction to Artificial Intelligence
Timo Honkela: An Introduction to Artificial Intelligence
Timo Honkela539 views
Artificialintelignc 131019040643-phpapp01 by Amna Saeed
Artificialintelignc 131019040643-phpapp01Artificialintelignc 131019040643-phpapp01
Artificialintelignc 131019040643-phpapp01
Amna Saeed46 views
What Artificial intelligence can Learn from Human Evolution by Abhimanyu Singh
What Artificial intelligence can Learn from Human EvolutionWhat Artificial intelligence can Learn from Human Evolution
What Artificial intelligence can Learn from Human Evolution
Abhimanyu Singh1K views
AI A Slight Intro by Omar Enayet
AI A Slight IntroAI A Slight Intro
AI A Slight Intro
Omar Enayet1.3K views
Artificialintelignce lecture1 BCS7 by Amna Saeed
Artificialintelignce lecture1 BCS7Artificialintelignce lecture1 BCS7
Artificialintelignce lecture1 BCS7
Amna Saeed78 views
Aritficial intelligence by Maqsood Awan
Aritficial intelligenceAritficial intelligence
Aritficial intelligence
Maqsood Awan178 views

Similar to Learning Machine Learning

Learning About Machine Learning by
Learning About Machine LearningLearning About Machine Learning
Learning About Machine LearningJoel Lord
308 views42 slides
Learning About Machine Learning by
Learning About Machine LearningLearning About Machine Learning
Learning About Machine LearningJoel Lord
245 views43 slides
Learning Machine Learning by
Learning Machine LearningLearning Machine Learning
Learning Machine LearningJoel Lord
452 views45 slides
Advancement in artificial intelligence: Should Humans be Worried? by
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 Owusu
1.4K views47 slides
Introduction to AI.pptx by
Introduction to AI.pptxIntroduction to AI.pptx
Introduction to AI.pptxAshaS74
7 views27 slides
Learning Machine Learning by
Learning Machine LearningLearning Machine Learning
Learning Machine LearningJoel Lord
343 views42 slides

Similar to Learning Machine Learning(20)

Learning About Machine Learning by Joel Lord
Learning About Machine LearningLearning About Machine Learning
Learning About Machine Learning
Joel Lord308 views
Learning About Machine Learning by Joel Lord
Learning About Machine LearningLearning About Machine Learning
Learning About Machine Learning
Joel Lord245 views
Learning Machine Learning by Joel Lord
Learning Machine LearningLearning Machine Learning
Learning Machine Learning
Joel Lord452 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
Learning Machine Learning by Joel Lord
Learning Machine LearningLearning Machine Learning
Learning Machine Learning
Joel Lord343 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
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.3K views
artificial intelligence ppt.pptx by BrijithaGokula
artificial intelligence ppt.pptxartificial intelligence ppt.pptx
artificial intelligence ppt.pptx
BrijithaGokula229 views
Artificial Intelligence by komal jain
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
komal jain211 views
MOTION & MANIPULIATION IN ARTIFICIAL INTELLIGENCE.pdf by Amna Nawazish
MOTION & MANIPULIATION IN ARTIFICIAL INTELLIGENCE.pdfMOTION & MANIPULIATION IN ARTIFICIAL INTELLIGENCE.pdf
MOTION & MANIPULIATION IN ARTIFICIAL INTELLIGENCE.pdf
Amna Nawazish128 views
CH-1 Introduction to Artificial Intelligence for class 9.pptx by AadityaNanda
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
AadityaNanda2.2K views
Artificial intelligence with machine learning by sohelparves1
Artificial intelligence with machine learningArtificial intelligence with machine learning
Artificial intelligence with machine learning
sohelparves131 views
AI - The Good, Bad and scary truth of Super Intelligence by Chariza Pladin
AI - The Good, Bad and scary truth of Super IntelligenceAI - The Good, Bad and scary truth of Super Intelligence
AI - The Good, Bad and scary truth of Super Intelligence
Chariza Pladin471 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 Lord195 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

WEB 2.O TOOLS: Empowering education.pptx by
WEB 2.O TOOLS: Empowering education.pptxWEB 2.O TOOLS: Empowering education.pptx
WEB 2.O TOOLS: Empowering education.pptxnarmadhamanohar21
16 views16 slides
How to think like a threat actor for Kubernetes.pptx by
How to think like a threat actor for Kubernetes.pptxHow to think like a threat actor for Kubernetes.pptx
How to think like a threat actor for Kubernetes.pptxLibbySchulze1
5 views33 slides
PORTFOLIO 1 (Bret Michael Pepito).pdf by
PORTFOLIO 1 (Bret Michael Pepito).pdfPORTFOLIO 1 (Bret Michael Pepito).pdf
PORTFOLIO 1 (Bret Michael Pepito).pdfbrejess0410
9 views6 slides
The Dark Web : Hidden Services by
The Dark Web : Hidden ServicesThe Dark Web : Hidden Services
The Dark Web : Hidden ServicesAnshu Singh
5 views24 slides
Marketing and Community Building in Web3 by
Marketing and Community Building in Web3Marketing and Community Building in Web3
Marketing and Community Building in Web3Federico Ast
14 views64 slides
IETF 118: Starlink Protocol Performance by
IETF 118: Starlink Protocol PerformanceIETF 118: Starlink Protocol Performance
IETF 118: Starlink Protocol PerformanceAPNIC
394 views22 slides

Recently uploaded(10)

How to think like a threat actor for Kubernetes.pptx by LibbySchulze1
How to think like a threat actor for Kubernetes.pptxHow to think like a threat actor for Kubernetes.pptx
How to think like a threat actor for Kubernetes.pptx
LibbySchulze15 views
PORTFOLIO 1 (Bret Michael Pepito).pdf by brejess0410
PORTFOLIO 1 (Bret Michael Pepito).pdfPORTFOLIO 1 (Bret Michael Pepito).pdf
PORTFOLIO 1 (Bret Michael Pepito).pdf
brejess04109 views
The Dark Web : Hidden Services by Anshu Singh
The Dark Web : Hidden ServicesThe Dark Web : Hidden Services
The Dark Web : Hidden Services
Anshu Singh5 views
Marketing and Community Building in Web3 by Federico Ast
Marketing and Community Building in Web3Marketing and Community Building in Web3
Marketing and Community Building in Web3
Federico Ast14 views
IETF 118: Starlink Protocol Performance by APNIC
IETF 118: Starlink Protocol PerformanceIETF 118: Starlink Protocol Performance
IETF 118: Starlink Protocol Performance
APNIC394 views
Building trust in our information ecosystem: who do we trust in an emergency by Tina Purnat
Building trust in our information ecosystem: who do we trust in an emergencyBuilding trust in our information ecosystem: who do we trust in an emergency
Building trust in our information ecosystem: who do we trust in an emergency
Tina Purnat109 views

Learning Machine Learning