I'm trying to test 'Node similarity' on a bipartite database having this form:
keyword -[APPEARS_IN]-> article
I would like to get a relationship 'SIMILAR' between articles with a score. I tried the following code, using the node property title:
CALL gds.nodeSimilarity.stream('test')
YIELD node1, node2, similarity
RETURN gds.util.asNode(node1).title AS Article1, gds.util.asNode(node2).title AS Article2, similarity
ORDER BY similarity DESCENDING, Article1, Article2
Here are the results:

But the results are not good, I'm having 'None' everywhere... is it because of the length of the strings in 'title'? Titles in my database are sometimes very long, for example:
What should I do?
I also tried to do it by 'id' propertie but the articles that have a score of '1' (the highest possible) do not seem to have a real similarity between them when I check (they are not similar at all).