Mining the geometry of embedding spaces #2
Replies: 3 comments
relational vector miningThe Question: What other relation vectors can be mined out of a fixed given embedding space? I can think of two immediate unsupervised versions of inquiring into this question: One where it's a word-to-word relationship (like king and queen), and another is a words-to-words relation ship (like the set one-to-one relationshipsThe brute force solution is scalable up to a certain point. Just take the matrix of all embeddings of a given list of The the brute force works, we probably still want to find ways to shave off a lot of the computation (and memory!) to make it more scalable. many-to-many relationshipsIn linguistics, when two sets of words are semantically opposed as groups but not individually (e.g., "royalty words" versus "commoner words"), this relationship is often referred to as contrastive lexical fields or oppositional semantic fields. This phenomenon aligns with Lexical Field Theory, which suggests that fields form closed sets with no overlaps or gaps between lexemes. Additionally, it can be described as a form of binary opposition or contrastive opposition, depending on the context. Of course, a brute force would work here too, but here the limits of scalability are quickly reached, since it's exponential (iterating over sets of sets).
|
Dealing with Homonymy in High-Dimensional Embedding SpacesThe Problem: Homonymy and Polysemy in NLPIn natural language, the same word can have multiple meanings depending on context. This phenomenon falls under two main linguistic categories:
These ambiguities exist within a single language but also across languages (e.g., How Embeddings Solve This ProblemTraditional NLP models, such as Word2Vec or GloVe, assigned a single vector per word, meaning However, modern contextual embeddings (from transformers like BERT, GPT, T5) solve this problem by dynamically adjusting word representations based on context. High-Dimensionality and Multiple MeaningsEmbeddings exist in thousands of dimensions (e.g., 1,536 or 3,072 for OpenAI models). This allows:
In low-dimensional spaces, forcing Research Tasks: Investigating Homonymy in Embeddings
By exploring these areas, we can better understand how deep learning models handle homonymy and improve their ability to disambiguate meaning in both monolingual and multilingual settings. 🚀 |
The (counterintuitive) properties of high-dimensional spacesIn high-dimensional spaces, many intuitive properties of geometry—such as distances, angles, and volume distribution—behave in unexpected ways. These effects influence how machine learning models, especially NLP embeddings, represent and compare words. The table below summarizes key high-dimensional phenomena, their mathematical effects, and their impact on NLP tasks like similarity search and clustering.
Links |

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Possible R&D projects for teasing out the relationship between embeddings space geometry and linguistic properties.
All reactions