SlideShare uma empresa Scribd logo
1 de 92
Baixar para ler offline
Tuesday, June 26, 12
Hi



Tuesday, June 26, 12
Tuesday, June 26, 12

Use MongoDB to store millions of real estate properties for sale

Lots of data = fun with machine learning!
Tuesday, June 26, 12

https://www.coursera.org/
Arthur Samuel (1959):

          Machine Learning is a field of
         study that gives computers the
          ability to learn without being
             explicitly programmed.

Tuesday, June 26, 12

Samuel was one of the pioneers of the machine learning field. He wrote a checkers program
that learned from the games it played. The program became better at checkers than he was,
but hewas pretty bad at checkers. Checkers is now solved.
Tom Mitchell (1998):

          A computer program is said to
           learn from experience E with
            respect to some task T and
            some performance measure
            P if its performance on T, as
          measured by P, improves with
                     experience E
Tuesday, June 26, 12

Here’s a more formal definition.
Andrew Ng




Tuesday, June 26, 12

The guy who taught my class is in the middle. I pretty much ripped off this entire talk from
his class.

Here’s a pretty cool application of machine learning.

Stanford taught these helicopters how to fly autonomously.

apprenticeship learning
Tuesday, June 26, 12

Old attempts at autonomous helicopters

build a model of world and helicopter state

create complex algorithm by hand that tells helicopter what to do
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Supervised Machine Learning


                 Input Data X                                    Output Data Y
            (already have - training
                      set)
                                            ?               (already have - training
                                                                      set)




Tuesday, June 26, 12

? is unknown function that maps our existing input to existing outputs
Supervised Machine Learning
                                  Goal


                       New input data   h(x)   New prediction




Tuesday, June 26, 12

create function h(x)
Tuesday, June 26, 12

Here is a new training set
Tuesday, June 26, 12

h is our hypothesis function
Tuesday, June 26, 12

Given data like this, how can we predict new prices for square feet given that we haven’t seen
before?
Tuesday, June 26, 12
Linear Regression



Tuesday, June 26, 12

When our target variable y is continuous, like in this example, the learning problem is called
a regression problem.

When y can take on only a small number of discrete values, it is called a classification
problem. More on that later

show ipython linear regression demo
source virtualenvwrapper.sh && workon ml_talk && cd ~/work/ml_talk/demos && ipython notebook --pylab inline
How did we do?



                 Input Data X
           (already have - test set)        ?                    Output Data Y
                                                            (already have - test set)




Tuesday, June 26, 12

? is unknown function that maps our existing input to existing outputs
Test Set
                         10%




                                  Training Set
                                      90%




Tuesday, June 26, 12
How can we give better predictions?


                       • Add More Data
                       • Tweak parameters
                       • Try a different algorithm


Tuesday, June 26, 12

these are 3 ways but there are many more

show second demo

source virtualenvwrapper.sh && workon ml_talk && cd ~/work/ml_talk/demos && ipython notebook --pylab inline
Test Set
                                                10%




                       Cross-Validation Set
                              20%




                                                          Training Set
                                                              70%




Tuesday, June 26, 12

This means we get less data in our training set

Why do we need it?

When tweaking model parameters, if we use the test set to gauge our success, we overfit to
the test set. Our algorithm looks better than it actually is since we use the same set we use
to fine-tune parameters that we use to judge the effectiveness of our entire model.
numpy.polyfit,
                        how does it work?


Tuesday, June 26, 12

Let’s lift the covers on this magic function.
Tuesday, June 26, 12

Let’s make our own fitting function.
Hypothesis Function




Tuesday, June 26, 12

h is our hypothesis

You might recognize this as Y=mx+b, the slope-intercept formula

x is our input (example 1000 square feet)

Theta is the parameter (actually a matrix of parameters) we are trying to determine. How?
Cost Function




Tuesday, June 26, 12

We are going to try to minimize this thing

Sigma just means “add this stuff up” m is the number of training examples we have


J of Theta is a function that, when given Theta, tells us how close to the training results (y)
our prediction function (h) gets when given data from our training set.

The 1/2 helps us take the derivative of this, don’t worry about it.

This is known as the Least Squares cost function. Notice that the farther away our prediction
gets from reality, worse the penalty grows.
Gradient Descent



Tuesday, June 26, 12

This is how we will actually go about minimizing the cost function.

Gradient descent seems funky but is simple easy to visualize

Is used quite a bit in the industry today
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
But... Local Optima!



Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12

This is the update step that makes this happen

alpha is the learning rate. This tells it how big of a step to take. Has to be not too big, or it
won’t converge, not too small, or it will take forever

We keep updating our values for theta by taking the derivative of our cost function. This tells
us which way to go to make our cost function smaller.
Tuesday, June 26, 12

Plug in our cost function

 a bunch of scary math happens (this is where the 1/2 came in handy in our cost function)
Update Step




Tuesday, June 26, 12

repeat until convergence
Tuesday, June 26, 12

too bad that’s not actually how numpy.polyfit works

let’s take a break
Tuesday, June 26, 12
Tuesday, June 26, 12
Training Set



             Lots of 1-dimensional
             pictures of things (X)        ?         3D laser scan of same
                                                           things (Y)




Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Normal Equation



Tuesday, June 26, 12
Tuesday, June 26, 12

high school way of minimizing a function (aka Fermat’s Theorem)

all maxima and minima must exist at critical point

set derivative of function = 0
Tuesday, June 26, 12

Not going to show the derivation

Closed form
Tuesday, June 26, 12
Logistic Regression



Tuesday, June 26, 12

Logistic regression = discrete values

spam classifier

BORING let’s do neural nets
Neural Networks



Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Unsupervised Machine
                             Learning


Tuesday, June 26, 12

Supervised learning - you have a training set with known inputs and known outputs

Unsupervised learning - you just have a bunch of data and want to find structure in it
Clustering



Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
K-Means Clustering




Tuesday, June 26, 12
K-Means Clustering




Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Collaborative filtering

netflix prize
CustomerID,MovieID,Rating (1-5), 0 = not rated)
6,16983,0
10,11888,0
10,14584,5
10,15957,0
131,17405,5
134,6243,0
188,12365,0
368,16002,5
424,15997,0
477,12080,0
491,7233,3
508,15929,0
527,1046,2
596,15294,0

Tuesday, June 26, 12
  1. A user expresses his or her preferences by rating items (eg. books, movies or CDs) of the system. These ratings can be viewed as an approximate representation of the user's interest
       in the corresponding domain.


  2.   The system matches this user’s ratings against other users’ and finds the people with most “similar” tastes.


  3.   With similar users, the system recommends items that the similar users have rated highly but not yet being rated by this user (presumably the absence of rating is often considered as
       the unfamiliarity of an item)
Other cool stuff I just
                           thought of


Tuesday, June 26, 12
Tuesday, June 26, 12
Deep Learning



Tuesday, June 26, 12

unsupervised neural networks

autoencoder
Tuesday, June 26, 12
Computer Vision Features




Tuesday, June 26, 12
Autoencoder Neural Network




Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
Tuesday, June 26, 12
THE END


Tuesday, June 26, 12

Mais conteúdo relacionado

Mais procurados

How to calculate back propagation
How to calculate back propagationHow to calculate back propagation
How to calculate back propagationShinagawa Seitaro
 
Generative Adversarial Network (+Laplacian Pyramid GAN)
Generative Adversarial Network (+Laplacian Pyramid GAN)Generative Adversarial Network (+Laplacian Pyramid GAN)
Generative Adversarial Network (+Laplacian Pyramid GAN)NamHyuk Ahn
 
Machine learning
Machine learningMachine learning
Machine learningShreyas G S
 
Hanie Sedghi, Research Scientist at Allen Institute for Artificial Intelligen...
Hanie Sedghi, Research Scientist at Allen Institute for Artificial Intelligen...Hanie Sedghi, Research Scientist at Allen Institute for Artificial Intelligen...
Hanie Sedghi, Research Scientist at Allen Institute for Artificial Intelligen...MLconf
 
2018.01.12 AHClab SD-study paper reading
2018.01.12 AHClab SD-study paper reading2018.01.12 AHClab SD-study paper reading
2018.01.12 AHClab SD-study paper readingShinagawa Seitaro
 
[GAN by Hung-yi Lee]Part 1: General introduction of GAN
[GAN by Hung-yi Lee]Part 1: General introduction of GAN[GAN by Hung-yi Lee]Part 1: General introduction of GAN
[GAN by Hung-yi Lee]Part 1: General introduction of GANNAVER Engineering
 
Machine Learning ICS 273A
Machine Learning ICS 273AMachine Learning ICS 273A
Machine Learning ICS 273Abutest
 
ICASSP 2018 Tutorial: Generative Adversarial Network and its Applications to ...
ICASSP 2018 Tutorial: Generative Adversarial Network and its Applications to ...ICASSP 2018 Tutorial: Generative Adversarial Network and its Applications to ...
ICASSP 2018 Tutorial: Generative Adversarial Network and its Applications to ...宏毅 李
 
Generative Adversarial Networks (GAN)
Generative Adversarial Networks (GAN)Generative Adversarial Networks (GAN)
Generative Adversarial Networks (GAN)Manohar Mukku
 
Intro to machine learning
Intro to machine learningIntro to machine learning
Intro to machine learningAkshay Kanchan
 
Principal Component Analysis For Novelty Detection
Principal Component Analysis For Novelty DetectionPrincipal Component Analysis For Novelty Detection
Principal Component Analysis For Novelty DetectionJordan McBain
 
Neural Learning to Rank
Neural Learning to RankNeural Learning to Rank
Neural Learning to RankBhaskar Mitra
 
11.final paper 0040www.iiste.org call-for_paper-46
11.final paper  0040www.iiste.org call-for_paper-4611.final paper  0040www.iiste.org call-for_paper-46
11.final paper 0040www.iiste.org call-for_paper-46Alexander Decker
 
Back propagation
Back propagationBack propagation
Back propagationSan Kim
 
Machine Learning on Azure - AzureConf
Machine Learning on Azure - AzureConfMachine Learning on Azure - AzureConf
Machine Learning on Azure - AzureConfSeth Juarez
 
Aaron Roth, Associate Professor, University of Pennsylvania, at MLconf NYC 2017
Aaron Roth, Associate Professor, University of Pennsylvania, at MLconf NYC 2017Aaron Roth, Associate Professor, University of Pennsylvania, at MLconf NYC 2017
Aaron Roth, Associate Professor, University of Pennsylvania, at MLconf NYC 2017MLconf
 
Learning to Rank with Neural Networks
Learning to Rank with Neural NetworksLearning to Rank with Neural Networks
Learning to Rank with Neural NetworksBhaskar Mitra
 
Uncertainty Awareness in Integrating Machine Learning and Game Theory
Uncertainty Awareness in Integrating Machine Learning and Game TheoryUncertainty Awareness in Integrating Machine Learning and Game Theory
Uncertainty Awareness in Integrating Machine Learning and Game TheoryRikiya Takahashi
 

Mais procurados (20)

Machine learning
Machine learningMachine learning
Machine learning
 
How to calculate back propagation
How to calculate back propagationHow to calculate back propagation
How to calculate back propagation
 
Generative Adversarial Network (+Laplacian Pyramid GAN)
Generative Adversarial Network (+Laplacian Pyramid GAN)Generative Adversarial Network (+Laplacian Pyramid GAN)
Generative Adversarial Network (+Laplacian Pyramid GAN)
 
Machine learning
Machine learningMachine learning
Machine learning
 
DTLC-GAN
DTLC-GANDTLC-GAN
DTLC-GAN
 
Hanie Sedghi, Research Scientist at Allen Institute for Artificial Intelligen...
Hanie Sedghi, Research Scientist at Allen Institute for Artificial Intelligen...Hanie Sedghi, Research Scientist at Allen Institute for Artificial Intelligen...
Hanie Sedghi, Research Scientist at Allen Institute for Artificial Intelligen...
 
2018.01.12 AHClab SD-study paper reading
2018.01.12 AHClab SD-study paper reading2018.01.12 AHClab SD-study paper reading
2018.01.12 AHClab SD-study paper reading
 
[GAN by Hung-yi Lee]Part 1: General introduction of GAN
[GAN by Hung-yi Lee]Part 1: General introduction of GAN[GAN by Hung-yi Lee]Part 1: General introduction of GAN
[GAN by Hung-yi Lee]Part 1: General introduction of GAN
 
Machine Learning ICS 273A
Machine Learning ICS 273AMachine Learning ICS 273A
Machine Learning ICS 273A
 
ICASSP 2018 Tutorial: Generative Adversarial Network and its Applications to ...
ICASSP 2018 Tutorial: Generative Adversarial Network and its Applications to ...ICASSP 2018 Tutorial: Generative Adversarial Network and its Applications to ...
ICASSP 2018 Tutorial: Generative Adversarial Network and its Applications to ...
 
Generative Adversarial Networks (GAN)
Generative Adversarial Networks (GAN)Generative Adversarial Networks (GAN)
Generative Adversarial Networks (GAN)
 
Intro to machine learning
Intro to machine learningIntro to machine learning
Intro to machine learning
 
Principal Component Analysis For Novelty Detection
Principal Component Analysis For Novelty DetectionPrincipal Component Analysis For Novelty Detection
Principal Component Analysis For Novelty Detection
 
Neural Learning to Rank
Neural Learning to RankNeural Learning to Rank
Neural Learning to Rank
 
11.final paper 0040www.iiste.org call-for_paper-46
11.final paper  0040www.iiste.org call-for_paper-4611.final paper  0040www.iiste.org call-for_paper-46
11.final paper 0040www.iiste.org call-for_paper-46
 
Back propagation
Back propagationBack propagation
Back propagation
 
Machine Learning on Azure - AzureConf
Machine Learning on Azure - AzureConfMachine Learning on Azure - AzureConf
Machine Learning on Azure - AzureConf
 
Aaron Roth, Associate Professor, University of Pennsylvania, at MLconf NYC 2017
Aaron Roth, Associate Professor, University of Pennsylvania, at MLconf NYC 2017Aaron Roth, Associate Professor, University of Pennsylvania, at MLconf NYC 2017
Aaron Roth, Associate Professor, University of Pennsylvania, at MLconf NYC 2017
 
Learning to Rank with Neural Networks
Learning to Rank with Neural NetworksLearning to Rank with Neural Networks
Learning to Rank with Neural Networks
 
Uncertainty Awareness in Integrating Machine Learning and Game Theory
Uncertainty Awareness in Integrating Machine Learning and Game TheoryUncertainty Awareness in Integrating Machine Learning and Game Theory
Uncertainty Awareness in Integrating Machine Learning and Game Theory
 

Semelhante a Introduction to Machine Learning

TAO: Turing test As Objective function
TAO: Turing test As Objective functionTAO: Turing test As Objective function
TAO: Turing test As Objective functionShin Yoo
 
Supporting Agile Requirements Evolution via Paraconsistent Reasoning
Supporting Agile Requirements Evolution via Paraconsistent ReasoningSupporting Agile Requirements Evolution via Paraconsistent Reasoning
Supporting Agile Requirements Evolution via Paraconsistent ReasoningNeil Ernst
 
20MEMECH Part 3- Classification.pdf
20MEMECH Part 3- Classification.pdf20MEMECH Part 3- Classification.pdf
20MEMECH Part 3- Classification.pdfMariaKhan905189
 
Think-Aloud Protocols
Think-Aloud ProtocolsThink-Aloud Protocols
Think-Aloud Protocolsbutest
 
Machine Learning Guide maXbox Starter62
Machine Learning Guide maXbox Starter62Machine Learning Guide maXbox Starter62
Machine Learning Guide maXbox Starter62Max Kleiner
 
notes as .ppt
notes as .pptnotes as .ppt
notes as .pptbutest
 
Essentials of machine learning algorithms
Essentials of machine learning algorithmsEssentials of machine learning algorithms
Essentials of machine learning algorithmsArunangsu Sahu
 
Regression, Bayesian Learning and Support vector machine
Regression, Bayesian Learning and Support vector machineRegression, Bayesian Learning and Support vector machine
Regression, Bayesian Learning and Support vector machineDr. Radhey Shyam
 
A tour of the top 10 algorithms for machine learning newbies
A tour of the top 10 algorithms for machine learning newbiesA tour of the top 10 algorithms for machine learning newbies
A tour of the top 10 algorithms for machine learning newbiesVimal Gupta
 
Introduction to conventional machine learning techniques
Introduction to conventional machine learning techniquesIntroduction to conventional machine learning techniques
Introduction to conventional machine learning techniquesXavier Rafael Palou
 
End-to-End Machine Learning Project
End-to-End Machine Learning ProjectEnd-to-End Machine Learning Project
End-to-End Machine Learning ProjectEng Teong Cheah
 
Reinforcement Learning in Practice: Contextual Bandits
Reinforcement Learning in Practice: Contextual BanditsReinforcement Learning in Practice: Contextual Bandits
Reinforcement Learning in Practice: Contextual BanditsMax Pagels
 
Introduction to Datamining Concept and Techniques
Introduction to Datamining Concept and TechniquesIntroduction to Datamining Concept and Techniques
Introduction to Datamining Concept and TechniquesSơn Còm Nhom
 
Introduction ML
Introduction MLIntroduction ML
Introduction MLLuc Lesoil
 
Introduction to Machine Learning Aristotelis Tsirigos
Introduction to Machine Learning Aristotelis Tsirigos Introduction to Machine Learning Aristotelis Tsirigos
Introduction to Machine Learning Aristotelis Tsirigos butest
 
Relationship between some machine learning concepts
Relationship between some machine learning conceptsRelationship between some machine learning concepts
Relationship between some machine learning conceptsZoya Bylinskii
 

Semelhante a Introduction to Machine Learning (20)

TAO: Turing test As Objective function
TAO: Turing test As Objective functionTAO: Turing test As Objective function
TAO: Turing test As Objective function
 
Supporting Agile Requirements Evolution via Paraconsistent Reasoning
Supporting Agile Requirements Evolution via Paraconsistent ReasoningSupporting Agile Requirements Evolution via Paraconsistent Reasoning
Supporting Agile Requirements Evolution via Paraconsistent Reasoning
 
20MEMECH Part 3- Classification.pdf
20MEMECH Part 3- Classification.pdf20MEMECH Part 3- Classification.pdf
20MEMECH Part 3- Classification.pdf
 
Think-Aloud Protocols
Think-Aloud ProtocolsThink-Aloud Protocols
Think-Aloud Protocols
 
Machine Learning Guide maXbox Starter62
Machine Learning Guide maXbox Starter62Machine Learning Guide maXbox Starter62
Machine Learning Guide maXbox Starter62
 
notes as .ppt
notes as .pptnotes as .ppt
notes as .ppt
 
Machine Learning.pptx
Machine Learning.pptxMachine Learning.pptx
Machine Learning.pptx
 
Essentials of machine learning algorithms
Essentials of machine learning algorithmsEssentials of machine learning algorithms
Essentials of machine learning algorithms
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Regression, Bayesian Learning and Support vector machine
Regression, Bayesian Learning and Support vector machineRegression, Bayesian Learning and Support vector machine
Regression, Bayesian Learning and Support vector machine
 
A tour of the top 10 algorithms for machine learning newbies
A tour of the top 10 algorithms for machine learning newbiesA tour of the top 10 algorithms for machine learning newbies
A tour of the top 10 algorithms for machine learning newbies
 
Machine Learning Seminar
Machine Learning SeminarMachine Learning Seminar
Machine Learning Seminar
 
Introduction to conventional machine learning techniques
Introduction to conventional machine learning techniquesIntroduction to conventional machine learning techniques
Introduction to conventional machine learning techniques
 
Clusterix at VDS 2016
Clusterix at VDS 2016Clusterix at VDS 2016
Clusterix at VDS 2016
 
End-to-End Machine Learning Project
End-to-End Machine Learning ProjectEnd-to-End Machine Learning Project
End-to-End Machine Learning Project
 
Reinforcement Learning in Practice: Contextual Bandits
Reinforcement Learning in Practice: Contextual BanditsReinforcement Learning in Practice: Contextual Bandits
Reinforcement Learning in Practice: Contextual Bandits
 
Introduction to Datamining Concept and Techniques
Introduction to Datamining Concept and TechniquesIntroduction to Datamining Concept and Techniques
Introduction to Datamining Concept and Techniques
 
Introduction ML
Introduction MLIntroduction ML
Introduction ML
 
Introduction to Machine Learning Aristotelis Tsirigos
Introduction to Machine Learning Aristotelis Tsirigos Introduction to Machine Learning Aristotelis Tsirigos
Introduction to Machine Learning Aristotelis Tsirigos
 
Relationship between some machine learning concepts
Relationship between some machine learning conceptsRelationship between some machine learning concepts
Relationship between some machine learning concepts
 

Último

Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
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 MenDelhi Call girls
 
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...Igalia
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
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...Miguel Araújo
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
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 AutomationSafe Software
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
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 SolutionsEnterprise Knowledge
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
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?Antenna Manufacturer Coco
 
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 organizationRadu Cotescu
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
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 2024Rafal Los
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 

Último (20)

Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.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
 
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...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
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...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
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
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
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
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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?
 
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
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
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
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 

Introduction to Machine Learning