David Mount

From Wikipedia, the free encyclopedia
David Mount
NationalityAmerican
Alma materPurdue University
Known forComputational Geometry
Scientific career
FieldsComputer Science
InstitutionsUniversity of Maryland, College Park
Doctoral advisorChristoph Hoffmann
Websitewww.cs.umd.edu/users/mount/

David Mount is a professor at the University of Maryland, College Park department of computer science whose research is in computational geometry.

Biography[edit]

Mount received a B.S. in Computer Science at Purdue University in 1977 and received his Ph.D. in Computer Science at Purdue University in 1983 under the advisement of Christoph Hoffmann.

He began teaching at the University of Maryland in 1984 and is Professor in the department of Computer Science there.[1]

As a teacher, he has won the University of Maryland, College of Computer Mathematical and Physical Sciences Dean's Award for Excellence in Teaching in 2005 and 1997 as well as other teaching awards including the Hong Kong Science and Technology, School of Engineering Award for Teaching Excellence Appreciation in 2001.

Research[edit]

Mounts's main area of research is computational geometry, which is the branch of algorithms devoted to solving problems of a geometric nature. This field includes problems from classic geometry, like the closest pair of points problem, as well as more recent applied problems, such as computer representation and modeling of curves and surfaces. In particular, Mount has worked on the k-means clustering problem, nearest neighbor search, and point location problem.

Mount has worked on developing practical algorithms for k-means clustering, a problem known to be NP-hard. The most common algorithm used is Lloyd's algorithm, which is heuristic in nature but performs well in practice. He and others later showed [2] how k-d trees could be used to speed up Lloyd's algorithm. They have implemented this algorithm, along with some additional improvements, in the software library Kmeans.

Mount has worked on the nearest neighbor and approximate nearest neighbor search problems. By allowing the algorithm to return an approximate solution to the nearest neighbor query, a significant speedup in space and time complexity can be obtained. One class of approximate algorithms takes as input the error distance, , and forms a data structure that can be stored efficiently (low space complexity) and that returns the -approximate nearest neighbor quickly (low time complexity). In co-authored work with Arya, Netanyahu, R. Silverman and A. Wu,[3] Mount showed that the approximate nearest neighbor problem could be solved efficiently in spaces of low dimension. The data structure described in that paper formed the basis of the ANN open-source library for approximate nearest neighbor searching.[4] In subsequent work, he investigated the computational complexity of approximate nearest neighbor searching. Together with co-authors Arya and Malamatos, he provided efficient space–time tradeoffs for approximate nearest neighbor searching,[5] based on a data structure called the AVD (or approximate Voronoi diagram).

Mount has also worked on point location, which involves preprocessing a planar polygonal subdivision S of size to determine the cell of a subdivision that a query point is in.[6] The paper gives an time to construct a data structure of space that when asked what cell a query point lies in, takes expected time where is the entropy of the probability distribution of which cells the query points lie in.

In addition to the design and analysis of algorithms in computational geometry, Mount has worked on the implementation of efficient algorithms in software libraries such as:

  • ANN - approximate nearest neighbor searching
  • ISODATA - efficient implementation of a popular clustering algorithm
  • KMeans - k-means clustering

Most cited works[edit]

As of December 8, 2009, here is a list of his most cited works (according to Google Scholar) and their main contributions, listed in decreasing order of citations:

  1. An Optimal Algorithm for Approximate Nearest Neighbor Searching in Fixed Dimensions[3] - In this paper they give a n algorithm (where depends on both the number of dimensions and the approximate error ) to find a neighbor that is at most a factor distance from the nearest neighbor.
  2. An Efficient k-Means Clustering Algorithm: Analysis and Implementation[2] - In this paper they provide a simpler and more efficient implementation of Lloyd's algorithm, which is used in k-means clustering. The algorithm is called the filtering algorithm.
  3. The Discrete Geodesic Problem[7] - In this paper they compute the shortest path from a source to a destination constrained to having to travel on the surface of a given (possibly nonconvex) polyhedron. Their algorithm takes time to find the first shortest path to the first destination and the shortest path to any additional destination (from the same source) can be computed in time. Here, is the number of vertices.

Recognition[edit]

Mount was named to the 2022 class of ACM Fellows, "for contributions to algorithms and data structures for geometric data analysis and retrieval".[8]

References[edit]

  1. ^ D. Mount. Curriculum Vitae Archived 2009-11-27 at the Wayback Machine
  2. ^ a b T. Kanungo, D. M. Mount, N. S. Netanyahu, C. D. Piatko, R. Silverman and A. Wu. An Efficient k-Means Clustering Algorithm: Analysis and Implementation. IEEE Transactions on Pattern Analysis and Machine Intelligence 24(7):881-–892, 2002.
  3. ^ a b S. Arya, D. M. Mount, N. S. Netanyahu, R. Silverman and A. Wu, '"n Optimal Algorithm for Approximate Nearest Neighbor Searching in Fixed Dimensions", Journal of the ACM, 45(6):891-923, 1998.
  4. ^ D. M. Mount and S. Arya, ANN: A Library for Approximate Nearest Neighbor Searching
  5. ^ S. Arya, S., T. Malamatos, and D. M. Mount. Space-time Tradeoffs for Approximate Nearest Neighbor Searching. Journal of the ACM, 57(1): 1-54, 2009
  6. ^ S. Arya, T. Malamatos, D. M. Mount and K. C. Wong. Optimal Expected-Case Planar Point Location. SIAM Journal on Computing, 37(2):584-610, 2007.
  7. ^ J. S. B. Mitchell, D. M. Mount and C. H. Papadimitriou. The Discrete Geodesic Problem. SIAM Journal of Computing, 16(4):647-668, 1987
  8. ^ "Global computing association names 57 fellows for outstanding contributions that propel technology today". Association for Computing Machinery. January 18, 2023. Retrieved 2023-01-18.

External links[edit]