Geometric Models and Multidimensional Scaling
-
Core Concept: In geometric models, concepts are represented as individual points situated within a multidimensional coordinate space.
-
Similarity between concepts is inversely proportional to the spatial distance between them; meaning, the closer two points are to one another, the more similar they are considered to be.
-
Multidimensional Scaling (MDS): This statistical tool is used to visualize these similarity levels by processing a proximity matrix (dissimilarity scores) and outputting a spatial map.
-
The primary goal of MDS is to uncover the hidden dimensions that shape how humans judge similarity.
-
The lecture illustrates this with two examples: plotting European cities based on geographic distances, and mapping bird vocalizations (like the Canary or Raven) in a 3D acoustic space defined by features like average pitch, duration, and complexity.
-
MDS uses a "Stress" value to measure the mismatch between the original dissimilarity data and the generated spatial distances.
More on "Stress" here
Distance Metrics and Spatial Recovery
- Minkowski Metrics: Geometric similarity is frequently calculated using the Minkowski metric:
.
- When
, this represents the standard Euclidean distance (straight-line distance), and when , it represents the City-block or Manhattan distance.
- Geometric Axioms: For these models to hold true, they must satisfy three mathematical rules:
- Minimality (
), - Symmetry (
), - and the Triangle Inequality (
).
- Minimality (
- An example of spatial recovery is shown by positioning a Dog at
and a Cat at , and using distance equations like to deduce that a Fish belongs at , placing it further away from the mammal cluster.
The Flaws of Geometric Models
- Cognitive psychologist Amos Tversky pointed out that human perception frequently violates the strict rules of geometric axioms.
- Violation 1 - Minimality: Humans tend to rate complex objects as being more similar to themselves compared to simpler objects, which violates the geometric assumption that all identical objects have a distance of exactly zero.
- Violation 2 - Asymmetry (The Prototype Effect): Human similarity is directional, breaking the symmetry rule. We often focus on a prototype; for example, saying "North Korea is like China" feels more natural than the reverse, making
.
- Violation 3 - Triangle Inequality: Human logic allows for relational chains that don't translate to geometry. We might agree that Jamaica is similar to Cuba, and Cuba is similar to Russia, without concluding that Jamaica is similar to Russia.
- Context Sensitivity: Geometric distances are fixed, but human cognitive similarity fluctuates based on the context or comparison set. For instance, the "Hungary Effect" shows that Austria and Germany seem very similar until Hungary is introduced to the comparison set, which suddenly highlights specific geopolitical differences.
The Contrast Model of Similarity
- Introduced by Tversky in 1977, this feature-based model rejects the idea of spatial distance and instead defines objects purely by their sets of discrete features.
- Similarity is calculated by weighing the features that objects share against the features that are distinct to each.
- The mathematical representation is:
.
- In this equation,
represents the shared features, while and represent the features unique to subjects A and B, respectively.
- This model perfectly explains cognitive asymmetry: if the weights
and are not equal, then the similarity judgments will shift depending on which object is the subject and which is the referent.
Structured Models
- Both vectors (spaces) and lists (features) are considered "flat" and struggle to capture deep relations like "part-of" or "caused-by".
- Hierarchies and Trees: These organize data into levels of abstraction where lower nodes inherit properties from the nodes above them, heavily used in biological taxonomies.
- Graphs and Networks: These map knowledge using nodes for entities and edges for relations, allowing for complex semantic networks like defining that a "Robin" is a "Bird" that can "Fly".
- These structural constraints actually enable learning by acting as a roadmap. If an agent learns a dog has a spleen, the hierarchical structure implies other mammals likely do too, drastically reducing the data needed to understand biology.
Case Study: Kinship Systems
- Kinship, studied extensively by Claude Lévi-Strauss, relies entirely on structured paths rather than visual features.
- A "Grandparent" relation is a composition defined as a Parent of a Parent (
), and an "Uncle/Aunt" is the Sibling of a Parent ( ).
- To logically define a "Cousin," one must traverse the relational graph starting from the "Ego" (self) node, move up to the "Grandparent" node, and trace back down a completely different branch.
Summary and Conclusion
- Geometric Models: Define similarity as distance and excel with perceptual data.
- Feature-Based Models: Rely on set-theory to explain cognitive asymmetries.
- Structured Models: Are fundamentally relational and are required for reasoning within complex domains.
- Ultimately, the specific knowledge representation chosen directly dictates how powerful a learning algorithm can be.