I am learning to assess text similarity in between documents. Going through the text2vec tutorial (http://text2vec.org/similarity.html) on the topic, I noticed that the code returns two values for similarity. Here is the tail end of the code in the tutorial from Dmitriy Selivanov:
d1_d2_cos_sim = sim2(dtm1, dtm2, method = "cosine", norm = "l2")
dim(d1_d2_cos_sim)
[1] 300 200
Which returned value (300 or 200) describes text similarity/difference?