Imagine, based on some criteria, we have three vectors (vec1, vec2, vec3) for the word king, and we call these three vectors as local vectors for the king. Which way is sufficient to generate a global (single, or unique) vector for the word king from these three local vectors (vec1, vec2, vec3) that can be used in downstream task. There are three possible options:
Concat(vec1, vec2, vec3)
average(vec1, vec2, vec3)
sum(vec1, vec2, vec3)
are they sufficient? WHY? any reference?