SlideShare una empresa de Scribd logo
1 de 57
Descargar para leer sin conexión
Applying
Machine
Learning to
Mobile Games
Neil Patrick Del Gallego
An example of supervised learning
for predictive game analytics
Who Am I
Software Engineer and Game Developer for 5 years.
Developed Dragon Cubes along with other team members
Developed Bubble Cubes
Currently developing Casino Slots
Who Am I
Also currently taking Masters of Science in Computer Science in DLSU.
What is machine
learning?
Machine Learning
Field of study that gives the computer the ability to learn and
recognize patterns.
Image R G B Name
A 255 255 255 Animal
B 255 0 0 Animal
C 132 122 230 Plant
D 89 134 200 Plant
Training Dataset Machine Learning
Algorithm Prediction Model/s
Animal? Plant?
Supervised Learning
The class to predict is explicitly
given in the dataset
TRAINING
DATASET
Image R G B Name
A 255 255 255 Animal
B 255 0 0 Animal
C 132 122 230 Plant
D 89 134 200 Plant
Supervised Learning
Prediction model attempts to predict the missing class value
TRAINING
DATASET
NEW/UNSEEN
DATASET
Image R G B Name
A 255 255 255 Animal
B 255 0 0 Animal
C 132 122 230 Plant
D 89 134 200 Plant
Image R G B Name
E 0 0 255 ??
F 255 0 0 ??
G 0 122 125 ??
H 98 7 2 ??
Data Mining
• Extract patterns or provide insights from a
complex dataset.
• Borrows techniques from machine learning and
statistics.
Data Mining
• Patterns should be:
• Non-trivial (not normally extracted in an SQL
statement)
• Unknown
• Unexpected
• Potentially useful
• Actionable
Why Data Mining?
Drowning in data but starved for knowledge
Unstructured data, or knowledge is deeply buried.
Predicting Daily Active Users for Match-3
Mobile Games
Application of supervised learning for Dragon Cubes and Jungle Cubes
It’s been published!
Daily Active Users
A measure of application virality. A very important
metric to gauge the success of an application.
Motivation
Attempt to determine the amount of user activity X
days ahead to assist on project planning.
X = 7, on our study
Marketing
expenses
Daily active users
Develop features
to make users stay
Where data was extracted
MARKETING DATA
Dataset Overview
• Two match-3 games
• JNC generating
revenue
• DNC does not
• Both games only differ in
game mechanics.
General Methodology of Data Mining*
*How I performed data mining on our data
*For supervised learning. Unsupervised learning use subjective evaluation to determine reliability of model.
Dataset
Feature Selection
Refined
Dataset
Machine Learning
Prediction Models
Model A Model B
Model C Model D
Unseen
Data
Predicted
Result
Accuracy
Measure
Features in Dataset
Users are reached via advertising channels
MKTExpenses This is the total amount of marketing expenses, in USD,
spent to advertise the game.
A high marketing expense means more advertising
channels have been used to target more potential
users to install the game.
Advertising amount per user per
country*
● Users are reached via advertising channels.
*Market insight taken from Chartboost: http://tinyurl.com/charboost
Features in Dataset
How many users discovered our app on a given date?
Install Date Calendar date of installation.
Cohort Size Refers to the total amount of users who have
installed the application on the given install date.
Session Count Refers to the total amount of play sessions on a
given install date.
Features in Dataset
How long do players play the game?
AvgSessionSeconds The arithmetic mean of the total amount of time
users spend in the game
MedianSessionSeconds Session length value where half of the sessions are
longer, and half are shorter.
Features in Dataset
Market impression of the game
DailyAverageRating
Features in Dataset
Market impression of the game
CrashesANRDay1
Features in Dataset
How many users are engaged?
ActiveUsers This refers to the total amount of unique users who
spent considerable time in the game given a certain
date.
ActiveUsersDay7 This is similar to the ActiveUsers variable but offset
7 days after the install date. This is the variable to
be predicted.
Features in Dataset
Screen that triggers the
events
LevelPlayedEvents
LevelSuccessEvents
LevelFailedEvents
Dataset
Applying Methodology
Dataset
Feature Selection
Refined
Dataset
Machine Learning
Prediction Models
Model A Model B
Model C Model D
Unseen
Data
Predicted
Result
Accuracy
Measure
Feature Selection
Filter out unneeded attributes
Determine what attributes matters
Correlation Analysis
Measure relationship of two variables.
As X grows, how fast Y grows/declines?
Range (-1.0 to +1.0)
0.0 means no relationship at all.
+1.0 strong positive relationship
-1.0 strong negative relationship
Correlation Analysis
0.7 as our threshold for
strong relationship.
Basis for manual feature
selection.
Automatic Feature Selection
Automatic
Feature
Selection
CSV
file
Filtered
CSV
Acceptab
le?
Manual
feature
selection
NO
YES Final
CSV for
training
*Wrappers for feature subset selection by Ron Kohavi a,, George H. John b, (1995)
Wrapper scheme* algorithm is used
for automatic feature selection.
Automatic Feature Selection
Automatic
Feature
Selection
CSV
file
Filtered
CSV
Acceptab
le?
Manual
feature
selection
NO
YES Final
CSV for
training
● Despite using the wrapper scheme, some selected features are
considered noise.
● Evaluate if the selected features are indeed valuable.
Applying Methodology
Dataset
Feature Selection
Refined
Dataset
Machine Learning
Prediction Models
Model A Model B
Model C Model D
Unseen
Data
Predicted
Result
Accuracy
Measure
Selected Attributes
Applying Methodology
Dataset
Feature Selection
Refined
Dataset
Machine Learning
Prediction Models
Model A Model B
Model C Model D
Unseen
Data
Predicted
Result
Accuracy
Measure
Applying Machine
Learning
Using M5Base or decision tree with regression
Machine Learning Technique
Using M5Base (decision tree with regression)
WEKA demo (if possible)
M5Base sample
Problem!
We do not have enough unseen data yet!
What do we do to test our model?
K-fold cross-validation
Divide dataset into K partitions (recommended 10)
Test
set
Training set
K-fold cross-validation
Divide dataset into K partitions (recommended 10)
Test
set
Training set
Traini
ng
set
K-fold cross-validation
Divide dataset into K partitions (recommended 10)
Test
set
Training setTraining set
K-fold cross-validation
Divide dataset into K partitions (recommended 10)
Test
set Training setTraining set
Applying Methodology
Dataset
Feature Selection
Refined
Dataset
Machine Learning
Prediction Models
Model A Model B
Model C Model D
Unseen
Data
Predicted
Result
Accuracy
Measure
Unseen Data Sample
Applying Methodology
Dataset
Feature Selection
Refined
Dataset
Machine Learning
Prediction Models
Model A Model B
Model C Model D
Unseen
Data
Predicted
Result
Accuracy
Measure
Accuracy Measure
A value close to 0.0 is not really significant.
Accuracy Measure
Magnitude of error of predicted value vs actual value. Lower is
better.
Accuracy Measure
Percentage of error of predicted value vs actual value. Lower is
better.
Interpretations
Using results from M5Base.
*More details available at: http://www.dlsu.edu.ph/conferences/dlsu-research-congress-proceedings/2016/GRC/GRC-HCT-I-001.pdf
Interpretations
M5Base performed exceptionally well on JNC-Test (unseen data),
which makes it recommendable for real-world use.
Interpretations
Jungle Cubes is potentially, a predictable scaleable game.
Interpretations
JNC and DNC have almost the same total advertising expense. But
DNC did not gain enough daily active users.
Positive correlation summary JNC DAU-Day7 DNC DAU-Day7
MKTExpenses High Low
SessionCount High Low
SessionLength High Low
Interpretations
Based from our study, we propose a finding that MKTExpenses gets high
correlation with DAU-Day7 once the game has enough enjoyable content
to keep users engaged.
Ensure high
session
length
Promote
replayability
SessionLength
affects
SessionCount
affects
Satisfies
business
requirements?
Increase
advertising
campaigns
MKTExpenses
affects
DAU
DAU-Day7
influences
Conclusion
Did our study correctly predicted the fate of JNC and DNC?
Yes. Jungle Cubes has gained over 1M downloads as
of October 2016 and is still profitable.
Dragon Cubes was pulled out of the market last
September 2016.
We thank you Jakob Lykkegaard Pedersen and
Thomas Andreasen for allowing us to use the
dataset for Jungle Cubes and Dragon Cubes. We
would also like to give thanks to Suhana Chooli,
the marketing manager of Playlab Inc., which
provided the details about the marketing
expenses.
Thank you for listening!

Más contenido relacionado

La actualidad más candente

ESG: NetApp Open Solution for Hadoop
ESG: NetApp Open Solution for HadoopESG: NetApp Open Solution for Hadoop
ESG: NetApp Open Solution for Hadoop
NetApp
 
Bitanshu Resume New
Bitanshu Resume NewBitanshu Resume New
Bitanshu Resume New
Bitanshu Das
 
Automated parameter optimization should be included in future 
defect predict...
Automated parameter optimization should be included in future 
defect predict...Automated parameter optimization should be included in future 
defect predict...
Automated parameter optimization should be included in future 
defect predict...
Chakkrit (Kla) Tantithamthavorn
 

La actualidad más candente (12)

A Defect Prediction Model for Software Product based on ANFIS
A Defect Prediction Model for Software Product based on ANFISA Defect Prediction Model for Software Product based on ANFIS
A Defect Prediction Model for Software Product based on ANFIS
 
Application of genetic algorithm
Application of genetic algorithmApplication of genetic algorithm
Application of genetic algorithm
 
ESG: NetApp Open Solution for Hadoop
ESG: NetApp Open Solution for HadoopESG: NetApp Open Solution for Hadoop
ESG: NetApp Open Solution for Hadoop
 
20130716 aaai13-short
20130716 aaai13-short20130716 aaai13-short
20130716 aaai13-short
 
“Practical Image Data Augmentation Methods for Training Deep Learning Object ...
“Practical Image Data Augmentation Methods for Training Deep Learning Object ...“Practical Image Data Augmentation Methods for Training Deep Learning Object ...
“Practical Image Data Augmentation Methods for Training Deep Learning Object ...
 
Bitanshu Resume New
Bitanshu Resume NewBitanshu Resume New
Bitanshu Resume New
 
[台灣人工智慧學校] 主題演講 - 張智威總經理 (President of HTC DeepQ)
[台灣人工智慧學校] 主題演講 - 張智威總經理 (President of HTC DeepQ)[台灣人工智慧學校] 主題演講 - 張智威總經理 (President of HTC DeepQ)
[台灣人工智慧學校] 主題演講 - 張智威總經理 (President of HTC DeepQ)
 
A framework for adoption of machine learning in industry for software defect ...
A framework for adoption of machine learning in industry for software defect ...A framework for adoption of machine learning in industry for software defect ...
A framework for adoption of machine learning in industry for software defect ...
 
Buzzword scheme
Buzzword schemeBuzzword scheme
Buzzword scheme
 
Machine Learning for Developers - Pop-up Loft Tel Aviv
Machine Learning for Developers - Pop-up Loft Tel AvivMachine Learning for Developers - Pop-up Loft Tel Aviv
Machine Learning for Developers - Pop-up Loft Tel Aviv
 
Filtering Instagram hashtags through crowdtagging and the HITS algorithm
Filtering Instagram hashtags through crowdtagging and the HITS algorithmFiltering Instagram hashtags through crowdtagging and the HITS algorithm
Filtering Instagram hashtags through crowdtagging and the HITS algorithm
 
Automated parameter optimization should be included in future 
defect predict...
Automated parameter optimization should be included in future 
defect predict...Automated parameter optimization should be included in future 
defect predict...
Automated parameter optimization should be included in future 
defect predict...
 

Destacado

Destacado (20)

Real Life Machine Learning Case on Mobile Advertisement
Real Life Machine Learning Case on Mobile AdvertisementReal Life Machine Learning Case on Mobile Advertisement
Real Life Machine Learning Case on Mobile Advertisement
 
The A1 by Christian John Felix
The A1 by Christian John FelixThe A1 by Christian John Felix
The A1 by Christian John Felix
 
Rain Classifier: The Engineered Way of Evaluating the Rain by Paulo Luis Lozano
Rain Classifier: The Engineered Way of Evaluating the Rain by Paulo Luis LozanoRain Classifier: The Engineered Way of Evaluating the Rain by Paulo Luis Lozano
Rain Classifier: The Engineered Way of Evaluating the Rain by Paulo Luis Lozano
 
How to Prevent Design Blindness by Tin Balabat
How to Prevent Design Blindness by Tin BalabatHow to Prevent Design Blindness by Tin Balabat
How to Prevent Design Blindness by Tin Balabat
 
Talk nerdy to me: how the future of UX is conversation and bots by Brian Rowe
Talk nerdy to me: how the future of UX is conversation and bots by Brian RoweTalk nerdy to me: how the future of UX is conversation and bots by Brian Rowe
Talk nerdy to me: how the future of UX is conversation and bots by Brian Rowe
 
Docker - Contain that Wild Application by Marvin Arcilla
Docker - Contain that Wild Application by Marvin ArcillaDocker - Contain that Wild Application by Marvin Arcilla
Docker - Contain that Wild Application by Marvin Arcilla
 
Securing Your AWS Cloud Infrastructure by Neil Hermosilla
Securing Your AWS Cloud Infrastructure by Neil HermosillaSecuring Your AWS Cloud Infrastructure by Neil Hermosilla
Securing Your AWS Cloud Infrastructure by Neil Hermosilla
 
Solving Database Management, Migration, and Scaling Problems with DevOps Tool...
Solving Database Management, Migration, and Scaling Problems with DevOps Tool...Solving Database Management, Migration, and Scaling Problems with DevOps Tool...
Solving Database Management, Migration, and Scaling Problems with DevOps Tool...
 
Quick prototyping (Construct 2 & Unity) by Roan Contreras
Quick prototyping (Construct 2 & Unity) by Roan ContrerasQuick prototyping (Construct 2 & Unity) by Roan Contreras
Quick prototyping (Construct 2 & Unity) by Roan Contreras
 
Progressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent ConventoProgressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent Convento
 
Fundamentals of IoT: Communications with Uttr by Edmandie Samonte
Fundamentals of IoT: Communications with Uttr by Edmandie SamonteFundamentals of IoT: Communications with Uttr by Edmandie Samonte
Fundamentals of IoT: Communications with Uttr by Edmandie Samonte
 
Protocol-Oriented Programming in iOS: the Correct Way to Use Swift by JC Vela...
Protocol-Oriented Programming in iOS: the Correct Way to Use Swift by JC Vela...Protocol-Oriented Programming in iOS: the Correct Way to Use Swift by JC Vela...
Protocol-Oriented Programming in iOS: the Correct Way to Use Swift by JC Vela...
 
A Smarter World: The Mesh of Interconnected Devices and Artificial Intelligen...
A Smarter World: The Mesh of Interconnected Devices and Artificial Intelligen...A Smarter World: The Mesh of Interconnected Devices and Artificial Intelligen...
A Smarter World: The Mesh of Interconnected Devices and Artificial Intelligen...
 
Creating a Hospital Based IoT Solution by Russ Earl Malangen
Creating a Hospital Based IoT Solution by Russ Earl MalangenCreating a Hospital Based IoT Solution by Russ Earl Malangen
Creating a Hospital Based IoT Solution by Russ Earl Malangen
 
Developing a Smart Farm: Using Low-Cost electronics and a Civil Engineering B...
Developing a Smart Farm: Using Low-Cost electronics and a Civil Engineering B...Developing a Smart Farm: Using Low-Cost electronics and a Civil Engineering B...
Developing a Smart Farm: Using Low-Cost electronics and a Civil Engineering B...
 
Developing Your First Mobile VR App by NJ Realubit
Developing Your First Mobile VR App by NJ RealubitDeveloping Your First Mobile VR App by NJ Realubit
Developing Your First Mobile VR App by NJ Realubit
 
Open Minded? Software Engineer to a UX Engineer. Ask me how. by Micael Diaz d...
Open Minded? Software Engineer to a UX Engineer. Ask me how. by Micael Diaz d...Open Minded? Software Engineer to a UX Engineer. Ask me how. by Micael Diaz d...
Open Minded? Software Engineer to a UX Engineer. Ask me how. by Micael Diaz d...
 
Pokemon Go Analysis by Jolo Balbin
Pokemon Go Analysis by Jolo BalbinPokemon Go Analysis by Jolo Balbin
Pokemon Go Analysis by Jolo Balbin
 
Smart Waste Disposal System by Russ Earl Malangen
Smart Waste Disposal System by Russ Earl MalangenSmart Waste Disposal System by Russ Earl Malangen
Smart Waste Disposal System by Russ Earl Malangen
 
Payment Acceptance and Card Tokenization in JavaScript by Diwa Del Mundo
Payment Acceptance and Card Tokenization in JavaScript by Diwa Del MundoPayment Acceptance and Card Tokenization in JavaScript by Diwa Del Mundo
Payment Acceptance and Card Tokenization in JavaScript by Diwa Del Mundo
 

Similar a Applying Machine Learning for Mobile Games by Neil Patrick Del Gallego

Dataiku productive application to production - pap is may 2015
Dataiku    productive application to production - pap is may 2015 Dataiku    productive application to production - pap is may 2015
Dataiku productive application to production - pap is may 2015
Dataiku
 

Similar a Applying Machine Learning for Mobile Games by Neil Patrick Del Gallego (20)

#ATAGTR2021 Presentation : "Unlocking the Power of Machine Learning in the Mo...
#ATAGTR2021 Presentation : "Unlocking the Power of Machine Learning in the Mo...#ATAGTR2021 Presentation : "Unlocking the Power of Machine Learning in the Mo...
#ATAGTR2021 Presentation : "Unlocking the Power of Machine Learning in the Mo...
 
Dataiku productive application to production - pap is may 2015
Dataiku    productive application to production - pap is may 2015 Dataiku    productive application to production - pap is may 2015
Dataiku productive application to production - pap is may 2015
 
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
 
B4UConference_machine learning_deeplearning
B4UConference_machine learning_deeplearningB4UConference_machine learning_deeplearning
B4UConference_machine learning_deeplearning
 
Internship PPT.ppsx
Internship PPT.ppsxInternship PPT.ppsx
Internship PPT.ppsx
 
Data Analysis - Making Big Data Work
Data Analysis - Making Big Data WorkData Analysis - Making Big Data Work
Data Analysis - Making Big Data Work
 
Machine Learning AND Deep Learning for OpenPOWER
Machine Learning AND Deep Learning for OpenPOWERMachine Learning AND Deep Learning for OpenPOWER
Machine Learning AND Deep Learning for OpenPOWER
 
A Hierarchical Feature Set optimization for effective code change based Defec...
A Hierarchical Feature Set optimization for effective code change based Defec...A Hierarchical Feature Set optimization for effective code change based Defec...
A Hierarchical Feature Set optimization for effective code change based Defec...
 
Predictive Analytics
Predictive AnalyticsPredictive Analytics
Predictive Analytics
 
Practical Machine Learning at Work
Practical Machine Learning at WorkPractical Machine Learning at Work
Practical Machine Learning at Work
 
Ashisdeb analytics new_cv_doc
Ashisdeb analytics new_cv_docAshisdeb analytics new_cv_doc
Ashisdeb analytics new_cv_doc
 
Ashisdeb analytics new_cv_doc
Ashisdeb analytics new_cv_docAshisdeb analytics new_cv_doc
Ashisdeb analytics new_cv_doc
 
Cv zamir siddiqui
Cv zamir siddiquiCv zamir siddiqui
Cv zamir siddiqui
 
IRJET - House Price Predictor using ML through Artificial Neural Network
IRJET - House Price Predictor using ML through Artificial Neural NetworkIRJET - House Price Predictor using ML through Artificial Neural Network
IRJET - House Price Predictor using ML through Artificial Neural Network
 
Movie recommendation Engine using Artificial Intelligence
Movie recommendation Engine using Artificial IntelligenceMovie recommendation Engine using Artificial Intelligence
Movie recommendation Engine using Artificial Intelligence
 
BIG MART SALES PREDICTION USING MACHINE LEARNING
BIG MART SALES PREDICTION USING MACHINE LEARNINGBIG MART SALES PREDICTION USING MACHINE LEARNING
BIG MART SALES PREDICTION USING MACHINE LEARNING
 
Feature extraction for classifying students based on theirac ademic performance
Feature extraction for classifying students based on theirac ademic performanceFeature extraction for classifying students based on theirac ademic performance
Feature extraction for classifying students based on theirac ademic performance
 
Baseball Prediction Model on Tensorflow
Baseball Prediction Model on TensorflowBaseball Prediction Model on Tensorflow
Baseball Prediction Model on Tensorflow
 
Classification and Prediction Based Data Mining Algorithm in Weka Tool
Classification and Prediction Based Data Mining Algorithm in Weka ToolClassification and Prediction Based Data Mining Algorithm in Weka Tool
Classification and Prediction Based Data Mining Algorithm in Weka Tool
 
Black_Friday_Sales_Trushita
Black_Friday_Sales_TrushitaBlack_Friday_Sales_Trushita
Black_Friday_Sales_Trushita
 

Más de DEVCON

Use The Source Join The Force by Mark Steve Samson | DevCon Summit 2015 #GoO...
Use The Source Join The Force by Mark Steve Samson  | DevCon Summit 2015 #GoO...Use The Source Join The Force by Mark Steve Samson  | DevCon Summit 2015 #GoO...
Use The Source Join The Force by Mark Steve Samson | DevCon Summit 2015 #GoO...
DEVCON
 

Más de DEVCON (11)

App Store Optimization 101 by James Chua
App Store Optimization 101 by James ChuaApp Store Optimization 101 by James Chua
App Store Optimization 101 by James Chua
 
Recent trends in the Android Ecosystem by Tiago Alves
Recent trends in the Android Ecosystem by Tiago AlvesRecent trends in the Android Ecosystem by Tiago Alves
Recent trends in the Android Ecosystem by Tiago Alves
 
Introduction to Talas Data Intelligence by Alvin Gendrano
Introduction to Talas Data Intelligence by Alvin GendranoIntroduction to Talas Data Intelligence by Alvin Gendrano
Introduction to Talas Data Intelligence by Alvin Gendrano
 
DevOps - Infrastructure as Code by Andre Marcelo-Tanner
DevOps - Infrastructure as Code by Andre Marcelo-TannerDevOps - Infrastructure as Code by Andre Marcelo-Tanner
DevOps - Infrastructure as Code by Andre Marcelo-Tanner
 
Rediscovering Developer Opportunities in the Philippines by Fred Tshidimba
Rediscovering Developer Opportunities in the Philippines by Fred TshidimbaRediscovering Developer Opportunities in the Philippines by Fred Tshidimba
Rediscovering Developer Opportunities in the Philippines by Fred Tshidimba
 
The State of the Philippine Programming Talent by Joey Gurango
The State of the Philippine Programming Talent by Joey GurangoThe State of the Philippine Programming Talent by Joey Gurango
The State of the Philippine Programming Talent by Joey Gurango
 
Python Code Camp for Professionals 4/4
Python Code Camp for Professionals 4/4Python Code Camp for Professionals 4/4
Python Code Camp for Professionals 4/4
 
Python Code Camp for Professionals 3/4
Python Code Camp for Professionals 3/4Python Code Camp for Professionals 3/4
Python Code Camp for Professionals 3/4
 
Python Code Camp for Professionals 2/4
Python Code Camp for Professionals 2/4Python Code Camp for Professionals 2/4
Python Code Camp for Professionals 2/4
 
Python Code Camp for Professionals 1/4
Python Code Camp for Professionals 1/4Python Code Camp for Professionals 1/4
Python Code Camp for Professionals 1/4
 
Use The Source Join The Force by Mark Steve Samson | DevCon Summit 2015 #GoO...
Use The Source Join The Force by Mark Steve Samson  | DevCon Summit 2015 #GoO...Use The Source Join The Force by Mark Steve Samson  | DevCon Summit 2015 #GoO...
Use The Source Join The Force by Mark Steve Samson | DevCon Summit 2015 #GoO...
 

Último

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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

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 Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
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
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.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...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
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...
 
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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
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 future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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
 
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
 

Applying Machine Learning for Mobile Games by Neil Patrick Del Gallego