I'm aware of the concept of cosine similarity to measure the similarity of two non-zero vectors:
$$\text{sim}(\mathbf{v}, \mathbf{w}) = \frac{\mathbf{v} \cdot \mathbf{w}}{\Vert \mathbf{v} \Vert \Vert \mathbf{w} \Vert}$$
However, is there a similarity metric using the cross product? That is:
$$\text{sim}(\mathbf{v}, \mathbf{w}) = \frac{\mathbf{v} \times \mathbf{w}}{\Vert \mathbf{v} \Vert \Vert \mathbf{w} \Vert}$$
This may be a bit of TMI, but for anyone who's curious about the context of this question, I was reading a research paper titled Visualizing and Understanding the Effectiveness of BERT (Hao et al., 2019 EMNLP-IJCNLP) and they claim to have used the cross product in the process of computing cosine similarity.
First of all, note that the cross product is only defined for vectors in $\mathbb{R}^3$, which makes it quite limiting as a similarity measure.
Second, as Randall pointed out in the comments, $\mathbf{v}\times \mathbf{w}$ is a vector in $\mathbb{R}^3$, so you need to decide how to interpret a vector as a similarity.
Finally, recall that the formula for the cross product is $\mathbf{v}\times\mathbf{w}=\|\mathbf{v}\|\|\mathbf{w}\|\sin(\theta)\mathbf{n}$ where $\theta$ is the angle between $\mathbf{v}$ and $\mathbf{w}$, and $\mathbf{n}$ is the unit normal vector to the plane containing $\mathbf{v}$ and $\mathbf{w}$ in the direction given by the right-hand rule. Thus the magnitude of the cross product is $\|\mathbf{v}\times\mathbf{w}\|=\|\mathbf{v}\|\|\mathbf{w}\||\sin(\theta)|$, which is greatest when $\mathbf{v}$ and $\mathbf{w}$ are perpendicular, and smallest when they are parallel. This property seems rather strange for a similarity measure. For instance, this would imply $(1,0,0)$ is similar to $(0,1,0)$, which is similar to $(0,0,1)$, which is similar to $(1,0,0)$. Yet $(1,0,0)$ is not similar to itself.