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
*_new feature_: can create graphs from a Python iterator in addition to tsv files
29
+
*_new feature_: seamless integration with _NumPy_
30
+
*_new feature_: item attributes support via custom embeddings initialization
31
+
*_new feature_: adjustable vector projection / normalization after each propagation step
32
+
33
+
**Breaking changes:**
34
+
*_transient_ modifier not supported any more - creating _complex::reflexive_ columns for hypergraph embeddings, grouped by the transient entity gives better results.
35
+
36
+
37
+
**Example usage:**
38
+
39
+
```
40
+
import pycleora
41
+
import numpy as np
42
+
import pandas as pd
43
+
import random
44
+
45
+
# Generate example data
46
+
customers = [f"Customer_{i}" for i in range(1, 20)]
for entity, embedding in zip(mat.entity_ids, embeddings):
90
+
print(entity, embedding)
91
+
92
+
# We can now compare our embeddings with dot product (since they are L2 normalized)
93
+
94
+
print(np.dot(embeddings[0], embeddings[1]))
95
+
print(np.dot(embeddings[0], embeddings[2]))
96
+
print(np.dot(embeddings[0], embeddings[3]))
97
+
```
98
+
24
99
**Read the whitepaper ["Cleora: A Simple, Strong and Scalable Graph Embedding Scheme"](https://arxiv.org/abs/2102.02302)**
25
100
26
101
Cleora embeds entities in *n-dimensional spherical spaces* utilizing extremely fast stable, iterative random projections, which allows for unparalleled performance and scalability.
@@ -166,14 +241,6 @@ The technical properties described above imply good production-readiness of Cleo
166
241
167
242
More information can be found in [the full documentation](https://cleora.readthedocs.io/).
168
243
169
-
## Cleora Enterprise
170
-
**Cleora Enterprise** is now available for selected customers. Key improvements in addition to this open-source version:
171
-
*_performance optimizations_: 10x faster embedding times
0 commit comments