SlideShare une entreprise Scribd logo
1  sur  55
The Post Office Problem

k-d trees, k-nn search, and the Johnson-
Lindenstrauss lemma
Who am I?
   Jeremy Holland
   Senior lead developer at
    Centresource
   Math and algorithms nerd
   @awebneck,
    github.com/awebneck, freenode:
    awebneck, (you get the idea)
If you like the talk...
   I like scotch. Just putting it out there.
What is the Post Office Problem?
   Don Knuth, professional CS badass.
   TAOCP, vol. 3
   Otherwise known as ”Nearest Neighbor search”
   Let's say you've...
Just moved to Denmark!
But you need to mail a letter!
      Which post office do you go to?
Finding free images of post
offices is hard, so...
        We'll just reduce it to this:




              q
Naive implementation
   Calculate distance to all points, find smallest
min = INFINITY
P = <points to be searched>
K = <dimensionality of points, e.g. 2>
q = <query point>
best = nil
for p in P do
  dimDistSum = 0
  for k in K do
    dimDistSum += (q[k]-p[k])**2
  dist = dimDistSum.sqrt
  if dist < min
    min = dist
    best = p
return best
With a little preprocessing...
   But that takes      time! - can we do better?
   You bet!
   k-d tree
   Binary tree (each node has at most two
    children)
   Each node represents a single point in the set
    to be searched
Each node looks like...
   Domain: the vector describing the point (i.e.
    [p[0], p[1], … p[k-1]])
   Range: Some identifying characteristic (e.g. PK
    in a database)
   Split: A chosen dimension from 0 ≤ split < k
   Left: The left child (left.domain[split] <
    self.domain[split])
   Right: The right child (right.domain[split] ≥
    self.domain[split])
Let's build a k-d tree!
             Point 1: [20,10]
Let's build a k-d tree!
          Let's split on the x axis
Let's build a k-d tree!
          Add a new point: [10,5]
Let's build a k-d tree!
 The new point is the Left Child of the first point
Let's build a k-d tree!
        Let's split him on the y axis
Let's build a k-d tree!
         And add a 3rd point: [25,3]
Let's build a k-d tree!
 The new point is the Right Child of the first point
Let's build a k-d tree!
           So on and so forth...
Let's build a k-d tree!
            Giving you a tree:
How do we search it?
 Step 1: Find the best bin (where the query point
           would otherwise be inserted)


              q

                               root
How do we search it?
 NOTE: There is no node for this bin – just the
     space a node would be if existed!


             q

                              root
How do we search it?
 Step 2: Make the current leaf node the current
                 ”best guess”




                     Best guess
How do we search it?
  … and set the ”best guess radius” to be the
  distance between the query and that point




                      Best guess radius
How do we search it?
      Step 3: Back up the tree 1 node




                    Current node
How do we search it?
 If the distance between the query and the new
     node is less than the best guess radius...
How do we search it?
   Then set the best guess radius to the new
 distance, and make the current node the best
How do we search it?
Step 4: If the hypersphere described by the best
    guess radius crosses the current split...



                        Oh nooooh!
How do we search it?
 And the current node has a child on the other
                    side...




                      Oh snap!
How do we search it?
 … then make that node the current node, and
                   repeat:
How do we search it?
Here, the distance is not less than the best guess
                     radius...
How do we search it?
  … and the hypersphere neither crosses the
                  split ...
                             Whew, missed it!
How do we search it?
… nor does the current node have any children ...

                               Whew, missed it!
How do we search it?
So we can eliminate it and back up the tree again!
How do we search it?
We've already compared this node, so let's keep
            going back up the tree
How do we search it?
 Again, the radius is bigger than the best guess,
   and there is no crossing – back up again!
How do we search it?
           ...and again...
How do we search it?
       All the way back to the root!
How do we search it?
And you have your nearest neighbor, with a good
         case of        running time!


            I'm the answer!
But that was a pretty good case...
   We barely had to backtrack at all – best case is

   Worst case (lots of backtracking – examining
    almost every node) can get up to
   Amount of backtracking is directly proportional
    to k!
   If k is small (say 2, as in this example) and n is
    large, we see a huge improvement over linear
    search
   As k becomes large, the benefits of this over a
    naive implementation virtually disappear!
The Curse of Dimensionality
   Curse you, dimensionality!
   High-dimensional vector spaces are darned
    hard to search!
   Why? Too many dimensions! Why are there so
    many dimensions!?!
   What can we do about it?
   Get rid of the extra weight!
   Enter Mssrs. Johnson and Lindenstrauss
It turns out...
   Your vectors have a high dimension
   Absolute distance and precise location versus
    relative distance between points
   Relative distance can be largely preserved by a
    lower dimensional space
   Reduce k dimensions to kproj dimensions,
     kproj << k
Example: 2d to 1d

                    11.180
   5.0
       00




                               8.246
 7.28




                                       17.
                                           464
     0




                                                  7.
                                  6                  0
                               .29                       71
                             10
            3.16




                                         13.34
                                              2
                2




                                       14.000
Example: 2d to 1d, 1st attempt

                    11.180                        Projection Plane
   5.0
       00




                               8.246
 7.28




                                       17.
                                           464
     0




                                                      7.
                                  6                      0
                               .29                           71
                             10
            3.16




                                         13.34
                                              2
                2




                                       14.000
Example: 2d to 1d, 1st attempt

                    11.180
   5.0
       00




                               8.246
 7.28




                                        17.
                                            464
     0




                                                       7.
                                  6                       0
                               .29                            71
                             10
            3.16




                                           13.34
                                                2
                2




                                         14.000




                             Finished 1-d Projection
Example: 2d to 1d, 2nd attempt

                    11.180                        Projection Plane
   5.0
       00




                               8.246
 7.28




                                       17.
                                           464
     0




                                                      7.
                                  6                      0
                               .29                           71
                             10
            3.16




                                         13.34
                                              2
                2




                                       14.000
Example: 2d to 1d, 2nd attempt

                    11.180
   5.0
       00




                               8.246
 7.28




                                        17.
                                            464
     0




                                                       7.
                                  6                       0
                               .29                            71
                             10
            3.16




                                           13.34
                                                2
                2




                                         14.000




                             Finished 1-d Projection
Example: 2d to 1d, 3rd attempt

                    11.180                        Projection Plane
   5.0
       00




                               8.246
 7.28




                                       17.
                                           464
     0




                                                      7.
                                  6                      0
                               .29                           71
                             10
            3.16




                                         13.34
                                              2
                2




                                       14.000
Example: 2d to 1d, 3rd attempt

                    11.180                             Projection Plane
   5.0
       00




                               8.246
 7.28




                                        17.
                                            464
     0




                                                           7.
                                  6                           0
                               .29                                71
                             10
            3.16




                                           13.34
                                                2
                2




                                        14.000




                             Finished 1-d Projection
It turns out...




   Relative distance can be largely but not
    completely preserved by a lower dimensional
    space
   Every projection will have errors
   How do you choose one with the fewest?
   Trick question: Let fate decide!
Multiple random projection
   Choose the projections radomly
   Multiple projections
   Exchange cost in resources for cost in accuracy
       More projections = greater resource cost = greater
        accuracy
       Fewer projections = lesser resource cost = lesser
        accuracy
   Trivially parallelizable
   Learn to be happy with ”good enough”
Multiple random projections
 Get the nearest from each projection, then run a
       naive nearest on the results thereof.
Nns = []
P = <projections>
q = <query point>
for p in P do
  pq = <project q to the same plane as p>
  nns << <nearest neighbor to pq from projection>
<execute naive nearest on nns to find nearest of result>
return nn



                         Et voilá!
Multiple random projection
   Experiments yield > 98% accuracy when
    multiple nearest neighbors are selected from
    each projection and d is reduced from 256 to
    15, with approximately 30% of the calculation.
    (see credits)
   Additional experiments yielded similar results,
    as did my own
   That's pretty darn-tootin' good
Stuff to watch out for
   Balancing is vitally important (assuming uniform
    distribution of points): careful attention must be
    paid to selection of nodes (node with median
    coordinate for split axis)
   Cycle through axes for each level of the tree –
    root should split on 0, lvl 1 on 1, lvl 2 on 2, etc.
Stuff to watch out for
   Building the trees still takes some time
       Building the projections is effectively matrix
        multiplication, time in            (Strassen's
        algorithm)
       Building the (balanced) trees from the projections
        takes time in approximately
   Solution: build the trees ahead of time and
    store them for later querying (i.e. index those
    bad boys!)
Thanks!
   Credits:
       Based in large part on research conducted by
        Yousuf Ahmed, NYU: http://bit.ly/NZ7ZHo
       K-d trees: J. L. Bentley, Stanford U.:
        http://bit.ly/Mpy05p
       Dimensionality reduction: W. B. Johnson and J.
        Lindenstrauss: http://bit.ly/m9SGPN
       Research Fuel: Ardbeg Uigeadail:
        http://bit.ly/fcag0E

Contenu connexe

Tendances

Introduction to CUDA
Introduction to CUDAIntroduction to CUDA
Introduction to CUDARaymond Tay
 
Illumina GAIIx for high throughput sequencing
Illumina GAIIx for high throughput sequencingIllumina GAIIx for high throughput sequencing
Illumina GAIIx for high throughput sequencingCristian Cosentino, PhD
 
System-on-Chip Design, Embedded System Design Challenges
System-on-Chip Design, Embedded System Design ChallengesSystem-on-Chip Design, Embedded System Design Challenges
System-on-Chip Design, Embedded System Design Challengespboulet
 
A CGRA-based Approach for Accelerating Convolutional Neural Networks
A CGRA-based Approachfor Accelerating Convolutional Neural NetworksA CGRA-based Approachfor Accelerating Convolutional Neural Networks
A CGRA-based Approach for Accelerating Convolutional Neural NetworksShinya Takamaeda-Y
 
BPF Internals (eBPF)
BPF Internals (eBPF)BPF Internals (eBPF)
BPF Internals (eBPF)Brendan Gregg
 
Vector red bend_webinar_flashing_over_the_air_and_delta_technology_20140121_en
Vector red bend_webinar_flashing_over_the_air_and_delta_technology_20140121_enVector red bend_webinar_flashing_over_the_air_and_delta_technology_20140121_en
Vector red bend_webinar_flashing_over_the_air_and_delta_technology_20140121_enRed Bend Software
 
scRNA-Seq Lecture - Stem Cell Network RNA-Seq Workshop 2017
scRNA-Seq Lecture - Stem Cell Network RNA-Seq Workshop 2017scRNA-Seq Lecture - Stem Cell Network RNA-Seq Workshop 2017
scRNA-Seq Lecture - Stem Cell Network RNA-Seq Workshop 2017David Cook
 
Deep learning takes on Signal Processing
Deep learning takes on Signal ProcessingDeep learning takes on Signal Processing
Deep learning takes on Signal ProcessingVivek Kumar
 
QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?Pradeep Kumar
 
Predictive Business Process Monitoring with LSTM Neural Networks
Predictive Business Process Monitoring with LSTM Neural NetworksPredictive Business Process Monitoring with LSTM Neural Networks
Predictive Business Process Monitoring with LSTM Neural NetworksMarlon Dumas
 
RNA-seq differential expression analysis
RNA-seq differential expression analysisRNA-seq differential expression analysis
RNA-seq differential expression analysismikaelhuss
 
Intelligent Control Systems for Humanoid Robot: Master Thesis_Owen Chih-Hsuan...
Intelligent Control Systems for Humanoid Robot: Master Thesis_Owen Chih-Hsuan...Intelligent Control Systems for Humanoid Robot: Master Thesis_Owen Chih-Hsuan...
Intelligent Control Systems for Humanoid Robot: Master Thesis_Owen Chih-Hsuan...Owen (Chih-Hsuan) Chen
 
Implementation of Soft-core processor on FPGA (Final Presentation)
Implementation of Soft-core processor on FPGA (Final Presentation)Implementation of Soft-core processor on FPGA (Final Presentation)
Implementation of Soft-core processor on FPGA (Final Presentation)Deepak Kumar
 
Circuit Partitioning for VLSI Layout presented by Oveis Dehghantanha
Circuit Partitioning for VLSI Layout presented by Oveis DehghantanhaCircuit Partitioning for VLSI Layout presented by Oveis Dehghantanha
Circuit Partitioning for VLSI Layout presented by Oveis Dehghantanhaoveis dehghantanha
 
Integer quantization for deep learning inference: principles and empirical ev...
Integer quantization for deep learning inference: principles and empirical ev...Integer quantization for deep learning inference: principles and empirical ev...
Integer quantization for deep learning inference: principles and empirical ev...jemin lee
 
Inside the Volta GPU Architecture and CUDA 9
Inside the Volta GPU Architecture and CUDA 9Inside the Volta GPU Architecture and CUDA 9
Inside the Volta GPU Architecture and CUDA 9inside-BigData.com
 

Tendances (20)

Docker vs kvm
Docker vs kvmDocker vs kvm
Docker vs kvm
 
Introduction to CUDA
Introduction to CUDAIntroduction to CUDA
Introduction to CUDA
 
How can Optical Mapping accelerate my research?
How can Optical Mapping accelerate my research?How can Optical Mapping accelerate my research?
How can Optical Mapping accelerate my research?
 
Illumina GAIIx for high throughput sequencing
Illumina GAIIx for high throughput sequencingIllumina GAIIx for high throughput sequencing
Illumina GAIIx for high throughput sequencing
 
System-on-Chip Design, Embedded System Design Challenges
System-on-Chip Design, Embedded System Design ChallengesSystem-on-Chip Design, Embedded System Design Challenges
System-on-Chip Design, Embedded System Design Challenges
 
A CGRA-based Approach for Accelerating Convolutional Neural Networks
A CGRA-based Approachfor Accelerating Convolutional Neural NetworksA CGRA-based Approachfor Accelerating Convolutional Neural Networks
A CGRA-based Approach for Accelerating Convolutional Neural Networks
 
BPF Internals (eBPF)
BPF Internals (eBPF)BPF Internals (eBPF)
BPF Internals (eBPF)
 
VHDL Reference - FSM
VHDL Reference -  FSMVHDL Reference -  FSM
VHDL Reference - FSM
 
Vector red bend_webinar_flashing_over_the_air_and_delta_technology_20140121_en
Vector red bend_webinar_flashing_over_the_air_and_delta_technology_20140121_enVector red bend_webinar_flashing_over_the_air_and_delta_technology_20140121_en
Vector red bend_webinar_flashing_over_the_air_and_delta_technology_20140121_en
 
scRNA-Seq Lecture - Stem Cell Network RNA-Seq Workshop 2017
scRNA-Seq Lecture - Stem Cell Network RNA-Seq Workshop 2017scRNA-Seq Lecture - Stem Cell Network RNA-Seq Workshop 2017
scRNA-Seq Lecture - Stem Cell Network RNA-Seq Workshop 2017
 
Deep learning takes on Signal Processing
Deep learning takes on Signal ProcessingDeep learning takes on Signal Processing
Deep learning takes on Signal Processing
 
QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?
 
Predictive Business Process Monitoring with LSTM Neural Networks
Predictive Business Process Monitoring with LSTM Neural NetworksPredictive Business Process Monitoring with LSTM Neural Networks
Predictive Business Process Monitoring with LSTM Neural Networks
 
RNA-seq differential expression analysis
RNA-seq differential expression analysisRNA-seq differential expression analysis
RNA-seq differential expression analysis
 
Intelligent Control Systems for Humanoid Robot: Master Thesis_Owen Chih-Hsuan...
Intelligent Control Systems for Humanoid Robot: Master Thesis_Owen Chih-Hsuan...Intelligent Control Systems for Humanoid Robot: Master Thesis_Owen Chih-Hsuan...
Intelligent Control Systems for Humanoid Robot: Master Thesis_Owen Chih-Hsuan...
 
Implementation of Soft-core processor on FPGA (Final Presentation)
Implementation of Soft-core processor on FPGA (Final Presentation)Implementation of Soft-core processor on FPGA (Final Presentation)
Implementation of Soft-core processor on FPGA (Final Presentation)
 
Circuit Partitioning for VLSI Layout presented by Oveis Dehghantanha
Circuit Partitioning for VLSI Layout presented by Oveis DehghantanhaCircuit Partitioning for VLSI Layout presented by Oveis Dehghantanha
Circuit Partitioning for VLSI Layout presented by Oveis Dehghantanha
 
Integer quantization for deep learning inference: principles and empirical ev...
Integer quantization for deep learning inference: principles and empirical ev...Integer quantization for deep learning inference: principles and empirical ev...
Integer quantization for deep learning inference: principles and empirical ev...
 
Inside the Volta GPU Architecture and CUDA 9
Inside the Volta GPU Architecture and CUDA 9Inside the Volta GPU Architecture and CUDA 9
Inside the Volta GPU Architecture and CUDA 9
 
Learning the structure of Gaussian Graphical models with unobserved variables...
Learning the structure of Gaussian Graphical models with unobserved variables...Learning the structure of Gaussian Graphical models with unobserved variables...
Learning the structure of Gaussian Graphical models with unobserved variables...
 

En vedette

Mobile 111229042626-phpapp02
Mobile 111229042626-phpapp02Mobile 111229042626-phpapp02
Mobile 111229042626-phpapp02Rajasekar Sekaran
 
PRACTICAL APPROXIMATE K NEAREST NEIGHBOR QUERIES WITH LOCATION AND QUERY PRIVACY
PRACTICAL APPROXIMATE K NEAREST NEIGHBOR QUERIES WITH LOCATION AND QUERY PRIVACYPRACTICAL APPROXIMATE K NEAREST NEIGHBOR QUERIES WITH LOCATION AND QUERY PRIVACY
PRACTICAL APPROXIMATE K NEAREST NEIGHBOR QUERIES WITH LOCATION AND QUERY PRIVACYNexgen Technology
 
03 propriétés de l'intégrale sur un segment d'une fonction continue
03 propriétés de l'intégrale sur un segment d'une fonction continue03 propriétés de l'intégrale sur un segment d'une fonction continue
03 propriétés de l'intégrale sur un segment d'une fonction continueAchraf Ourti
 
04 intégrale d'une fonction continue sur un segment et dérivation
04 intégrale d'une fonction continue sur un segment et dérivation04 intégrale d'une fonction continue sur un segment et dérivation
04 intégrale d'une fonction continue sur un segment et dérivationAchraf Ourti
 
Choice architecture Part 1
Choice architecture Part 1Choice architecture Part 1
Choice architecture Part 1Putu Sundika
 
35549307 capacitor-qbank
35549307 capacitor-qbank35549307 capacitor-qbank
35549307 capacitor-qbanknoracleguy
 
Share and Share Alike
Share and Share AlikeShare and Share Alike
Share and Share Alikeawebneck
 
Business inteligince
Business inteliginceBusiness inteligince
Business inteliginceIssam Chong
 
06 equations différentielles
06 equations différentielles06 equations différentielles
06 equations différentiellesAchraf Ourti
 
01 fonctions convexes
01 fonctions convexes01 fonctions convexes
01 fonctions convexesAchraf Ourti
 
10 courbes paramétrées planes
10 courbes paramétrées planes10 courbes paramétrées planes
10 courbes paramétrées planesAchraf Ourti
 
Documento tecnico norme_di_convivenza
Documento tecnico norme_di_convivenzaDocumento tecnico norme_di_convivenza
Documento tecnico norme_di_convivenzaittgiuseppemazzotti
 

En vedette (20)

Mobile 111229042626-phpapp02
Mobile 111229042626-phpapp02Mobile 111229042626-phpapp02
Mobile 111229042626-phpapp02
 
Post office building
Post office buildingPost office building
Post office building
 
PRACTICAL APPROXIMATE K NEAREST NEIGHBOR QUERIES WITH LOCATION AND QUERY PRIVACY
PRACTICAL APPROXIMATE K NEAREST NEIGHBOR QUERIES WITH LOCATION AND QUERY PRIVACYPRACTICAL APPROXIMATE K NEAREST NEIGHBOR QUERIES WITH LOCATION AND QUERY PRIVACY
PRACTICAL APPROXIMATE K NEAREST NEIGHBOR QUERIES WITH LOCATION AND QUERY PRIVACY
 
20131102 rel grollo_13nov13
20131102 rel grollo_13nov1320131102 rel grollo_13nov13
20131102 rel grollo_13nov13
 
03 propriétés de l'intégrale sur un segment d'une fonction continue
03 propriétés de l'intégrale sur un segment d'une fonction continue03 propriétés de l'intégrale sur un segment d'une fonction continue
03 propriétés de l'intégrale sur un segment d'une fonction continue
 
04 intégrale d'une fonction continue sur un segment et dérivation
04 intégrale d'une fonction continue sur un segment et dérivation04 intégrale d'une fonction continue sur un segment et dérivation
04 intégrale d'une fonction continue sur un segment et dérivation
 
06
0606
06
 
07 coniques
07 coniques07 coniques
07 coniques
 
Sony ptz 25
Sony ptz 25Sony ptz 25
Sony ptz 25
 
04
0404
04
 
Choice architecture Part 1
Choice architecture Part 1Choice architecture Part 1
Choice architecture Part 1
 
35549307 capacitor-qbank
35549307 capacitor-qbank35549307 capacitor-qbank
35549307 capacitor-qbank
 
Baabul
BaabulBaabul
Baabul
 
Share and Share Alike
Share and Share AlikeShare and Share Alike
Share and Share Alike
 
Business inteligince
Business inteliginceBusiness inteligince
Business inteligince
 
06 equations différentielles
06 equations différentielles06 equations différentielles
06 equations différentielles
 
01 fonctions convexes
01 fonctions convexes01 fonctions convexes
01 fonctions convexes
 
10 courbes paramétrées planes
10 courbes paramétrées planes10 courbes paramétrées planes
10 courbes paramétrées planes
 
02
0202
02
 
Documento tecnico norme_di_convivenza
Documento tecnico norme_di_convivenzaDocumento tecnico norme_di_convivenza
Documento tecnico norme_di_convivenza
 

Dernier

How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
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
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
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
 
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.pptxKatpro Technologies
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Dernier (20)

How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
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
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
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
 
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
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

The Post Office Problem

  • 1. The Post Office Problem k-d trees, k-nn search, and the Johnson- Lindenstrauss lemma
  • 2. Who am I?  Jeremy Holland  Senior lead developer at Centresource  Math and algorithms nerd  @awebneck, github.com/awebneck, freenode: awebneck, (you get the idea)
  • 3. If you like the talk...  I like scotch. Just putting it out there.
  • 4. What is the Post Office Problem?  Don Knuth, professional CS badass.  TAOCP, vol. 3  Otherwise known as ”Nearest Neighbor search”  Let's say you've...
  • 5. Just moved to Denmark!
  • 6. But you need to mail a letter! Which post office do you go to?
  • 7. Finding free images of post offices is hard, so... We'll just reduce it to this: q
  • 8. Naive implementation Calculate distance to all points, find smallest min = INFINITY P = <points to be searched> K = <dimensionality of points, e.g. 2> q = <query point> best = nil for p in P do dimDistSum = 0 for k in K do dimDistSum += (q[k]-p[k])**2 dist = dimDistSum.sqrt if dist < min min = dist best = p return best
  • 9. With a little preprocessing...  But that takes time! - can we do better?  You bet!  k-d tree  Binary tree (each node has at most two children)  Each node represents a single point in the set to be searched
  • 10. Each node looks like...  Domain: the vector describing the point (i.e. [p[0], p[1], … p[k-1]])  Range: Some identifying characteristic (e.g. PK in a database)  Split: A chosen dimension from 0 ≤ split < k  Left: The left child (left.domain[split] < self.domain[split])  Right: The right child (right.domain[split] ≥ self.domain[split])
  • 11. Let's build a k-d tree! Point 1: [20,10]
  • 12. Let's build a k-d tree! Let's split on the x axis
  • 13. Let's build a k-d tree! Add a new point: [10,5]
  • 14. Let's build a k-d tree! The new point is the Left Child of the first point
  • 15. Let's build a k-d tree! Let's split him on the y axis
  • 16. Let's build a k-d tree! And add a 3rd point: [25,3]
  • 17. Let's build a k-d tree! The new point is the Right Child of the first point
  • 18. Let's build a k-d tree! So on and so forth...
  • 19. Let's build a k-d tree! Giving you a tree:
  • 20. How do we search it? Step 1: Find the best bin (where the query point would otherwise be inserted) q root
  • 21. How do we search it? NOTE: There is no node for this bin – just the space a node would be if existed! q root
  • 22. How do we search it? Step 2: Make the current leaf node the current ”best guess” Best guess
  • 23. How do we search it? … and set the ”best guess radius” to be the distance between the query and that point Best guess radius
  • 24. How do we search it? Step 3: Back up the tree 1 node Current node
  • 25. How do we search it? If the distance between the query and the new node is less than the best guess radius...
  • 26. How do we search it? Then set the best guess radius to the new distance, and make the current node the best
  • 27. How do we search it? Step 4: If the hypersphere described by the best guess radius crosses the current split... Oh nooooh!
  • 28. How do we search it? And the current node has a child on the other side... Oh snap!
  • 29. How do we search it? … then make that node the current node, and repeat:
  • 30. How do we search it? Here, the distance is not less than the best guess radius...
  • 31. How do we search it? … and the hypersphere neither crosses the split ... Whew, missed it!
  • 32. How do we search it? … nor does the current node have any children ... Whew, missed it!
  • 33. How do we search it? So we can eliminate it and back up the tree again!
  • 34. How do we search it? We've already compared this node, so let's keep going back up the tree
  • 35. How do we search it? Again, the radius is bigger than the best guess, and there is no crossing – back up again!
  • 36. How do we search it? ...and again...
  • 37. How do we search it? All the way back to the root!
  • 38. How do we search it? And you have your nearest neighbor, with a good case of running time! I'm the answer!
  • 39. But that was a pretty good case...  We barely had to backtrack at all – best case is  Worst case (lots of backtracking – examining almost every node) can get up to  Amount of backtracking is directly proportional to k!  If k is small (say 2, as in this example) and n is large, we see a huge improvement over linear search  As k becomes large, the benefits of this over a naive implementation virtually disappear!
  • 40. The Curse of Dimensionality  Curse you, dimensionality!  High-dimensional vector spaces are darned hard to search!  Why? Too many dimensions! Why are there so many dimensions!?!  What can we do about it?  Get rid of the extra weight!  Enter Mssrs. Johnson and Lindenstrauss
  • 41. It turns out...  Your vectors have a high dimension  Absolute distance and precise location versus relative distance between points  Relative distance can be largely preserved by a lower dimensional space  Reduce k dimensions to kproj dimensions, kproj << k
  • 42. Example: 2d to 1d 11.180 5.0 00 8.246 7.28 17. 464 0 7. 6 0 .29 71 10 3.16 13.34 2 2 14.000
  • 43. Example: 2d to 1d, 1st attempt 11.180 Projection Plane 5.0 00 8.246 7.28 17. 464 0 7. 6 0 .29 71 10 3.16 13.34 2 2 14.000
  • 44. Example: 2d to 1d, 1st attempt 11.180 5.0 00 8.246 7.28 17. 464 0 7. 6 0 .29 71 10 3.16 13.34 2 2 14.000 Finished 1-d Projection
  • 45. Example: 2d to 1d, 2nd attempt 11.180 Projection Plane 5.0 00 8.246 7.28 17. 464 0 7. 6 0 .29 71 10 3.16 13.34 2 2 14.000
  • 46. Example: 2d to 1d, 2nd attempt 11.180 5.0 00 8.246 7.28 17. 464 0 7. 6 0 .29 71 10 3.16 13.34 2 2 14.000 Finished 1-d Projection
  • 47. Example: 2d to 1d, 3rd attempt 11.180 Projection Plane 5.0 00 8.246 7.28 17. 464 0 7. 6 0 .29 71 10 3.16 13.34 2 2 14.000
  • 48. Example: 2d to 1d, 3rd attempt 11.180 Projection Plane 5.0 00 8.246 7.28 17. 464 0 7. 6 0 .29 71 10 3.16 13.34 2 2 14.000 Finished 1-d Projection
  • 49. It turns out...  Relative distance can be largely but not completely preserved by a lower dimensional space  Every projection will have errors  How do you choose one with the fewest?  Trick question: Let fate decide!
  • 50. Multiple random projection  Choose the projections radomly  Multiple projections  Exchange cost in resources for cost in accuracy  More projections = greater resource cost = greater accuracy  Fewer projections = lesser resource cost = lesser accuracy  Trivially parallelizable  Learn to be happy with ”good enough”
  • 51. Multiple random projections Get the nearest from each projection, then run a naive nearest on the results thereof. Nns = [] P = <projections> q = <query point> for p in P do pq = <project q to the same plane as p> nns << <nearest neighbor to pq from projection> <execute naive nearest on nns to find nearest of result> return nn Et voilá!
  • 52. Multiple random projection  Experiments yield > 98% accuracy when multiple nearest neighbors are selected from each projection and d is reduced from 256 to 15, with approximately 30% of the calculation. (see credits)  Additional experiments yielded similar results, as did my own  That's pretty darn-tootin' good
  • 53. Stuff to watch out for  Balancing is vitally important (assuming uniform distribution of points): careful attention must be paid to selection of nodes (node with median coordinate for split axis)  Cycle through axes for each level of the tree – root should split on 0, lvl 1 on 1, lvl 2 on 2, etc.
  • 54. Stuff to watch out for  Building the trees still takes some time  Building the projections is effectively matrix multiplication, time in (Strassen's algorithm)  Building the (balanced) trees from the projections takes time in approximately  Solution: build the trees ahead of time and store them for later querying (i.e. index those bad boys!)
  • 55. Thanks!  Credits:  Based in large part on research conducted by Yousuf Ahmed, NYU: http://bit.ly/NZ7ZHo  K-d trees: J. L. Bentley, Stanford U.: http://bit.ly/Mpy05p  Dimensionality reduction: W. B. Johnson and J. Lindenstrauss: http://bit.ly/m9SGPN  Research Fuel: Ardbeg Uigeadail: http://bit.ly/fcag0E