You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2020. It is now read-only.
* jaccard - source and target ids
* remove unnecessary fields
* same explanation of topK as in the earlier example
* Cosine - added source and target ids, splitting functions and procedures
* overlap and euclidean
* overlap source and target ids
* add sourceIds and targetIds to the Syntax section
* add sourceIds and targetIds for pearson
* put cypher projection last
* edit similarity doc
* fix include
| `writeBatchSize` | int | 10000 | yes | The batch size to use when storing results.
298
342
| `writeRelationshipType` | string | SIMILAR | yes | The relationship type to use when storing results.
299
343
| `writeProperty` | string | score | yes | The property to use when storing results.
344
+
| `sourceIds` | long[] | null | yes | The ids of items from which we need to compute similarities. Defaults to all the items provided in the `data` parameter.
345
+
| `targetIds` | long[] | null | yes | The ids of items to which we need to compute similarities. Defaults to all the items provided in the `data` parameter.
| `skipValue` | double | null | yes | Value to skip when executing similarity computation. A value of `null` means that skipping is disabled.
345
391
| `concurrency` | int | available CPUs | yes | The number of concurrent threads.
346
392
| `graph` | string | dense | yes | The graph name ('dense' or 'cypher').
393
+
| `sourceIds` | long[] | null | yes | The ids of items from which we need to compute similarities. Defaults to all the items provided in the `data` parameter.
394
+
| `targetIds` | long[] | null | yes | The ids of items to which we need to compute similarities. Defaults to all the items provided in the `data` parameter.
0 commit comments