-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
90 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
query: > | ||
CALL kmeans.get_clusters(2, "embedding", "k-means++", 10, 10, 0.0001, "auto", 1) YIELD node, cluster_id | ||
CALL kmeans.get_clusters(2, "embedding", "k-means++", 10, 10, 0.0001, "lloyd", 1) YIELD node, cluster_id | ||
RETURN node.id as node_id, cluster_id | ||
ORDER BY node_id ASC; | ||
output: | ||
- node_id: 0 | ||
cluster_id: 1 | ||
cluster_id: 0 | ||
- node_id: 1 | ||
cluster_id: 1 | ||
cluster_id: 0 | ||
- node_id: 2 | ||
cluster_id: 1 | ||
cluster_id: 0 | ||
- node_id: 4 | ||
cluster_id: 1 | ||
- node_id: 5 | ||
cluster_id: 0 | ||
- node_id: 5 | ||
cluster_id: 1 | ||
- node_id: 6 | ||
cluster_id: 0 | ||
cluster_id: 1 | ||
- node_id: 7 | ||
cluster_id: 0 | ||
cluster_id: 1 | ||
- node_id: 8 | ||
cluster_id: 0 | ||
cluster_id: 1 | ||
- node_id: 9 | ||
cluster_id: 0 | ||
cluster_id: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
gekko==0.2.8 | ||
networkx==2.6.2 | ||
python-Levenshtein==0.12.1 | ||
elasticsearch==8.4.3 | ||
gensim==4.3.3 | ||
torch==1.12.0 | ||
six==1.16.0 | ||
torchmetrics==0.9.3 | ||
igraph==0.10.2 | ||
scikit-learn==0.24.2 | ||
gqlalchemy==1.4.1 | ||
mysql-connector-python==8.0.32 | ||
oracledb==1.2.2 | ||
pyodbc==4.0.35 | ||
psycopg2-binary==2.9.9 | ||
defusedxml==0.7.1 | ||
scipy==1.12.0 | ||
elasticsearch==8.17.0 | ||
gekko==1.2.1 | ||
gensim==4.3.3 | ||
gqlalchemy==1.6.0 | ||
igraph==0.11.8 | ||
mysql-connector-python==9.1.0 | ||
networkx==2.8.8 | ||
oracledb==2.5.1 | ||
psycopg2-binary==2.9.10 | ||
pyodbc==5.2.0 | ||
python-Levenshtein==0.26.1 | ||
scikit-learn==1.5.2 | ||
scipy==1.13.1 | ||
six==1.17.0 | ||
torch==2.3.0 | ||
torchmetrics==0.10.0 # current implementation of node_classification module depends on version <= 0.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
gekko==0.2.8 | ||
networkx==2.6.2 | ||
python-Levenshtein==0.12.1 | ||
elasticsearch==8.4.3 | ||
gensim==4.0.0 | ||
six==1.16.0 | ||
igraph==0.10.2 | ||
scikit-learn==0.24.2 | ||
gqlalchemy==1.4.1 | ||
mysql-connector-python==8.0.32 | ||
oracledb==1.2.2 | ||
pyodbc==4.0.35 | ||
psycopg2-binary==2.9.9 | ||
cython==3.0.11 | ||
numpy==1.26.0 # gekko 1.2.1 depends on numpy>=1.8.0 and gensim 4.3.3 depends on numpy<2.0 and >=1.18.5 | ||
defusedxml==0.7.1 | ||
scipy==1.12.0 | ||
elasticsearch==8.17.0 | ||
gekko==1.2.1 | ||
gensim==4.3.3 | ||
gqlalchemy==1.6.0 | ||
igraph==0.11.8 | ||
mysql-connector-python==9.1.0 | ||
networkx==2.8.8 # gqlalchemy 1.6.0 depends on networkx<3.0.0 and >=2.5.1 | ||
oracledb==2.5.1 | ||
psycopg2-binary==2.9.10 | ||
pyodbc==5.2.0 | ||
python-Levenshtein==0.26.1 | ||
scikit-learn==1.6.1 | ||
scipy==1.13.1 # gensim 4.3.3 depends on scipy<1.14.0 and >=1.7.0 | ||
six==1.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
pytest==7.0 | ||
PyYAML==5.4.1 | ||
black==22.3.0 | ||
flake8==3.9.2 | ||
pytest==8.3.4 | ||
PyYAML==6.0.2 | ||
black==24.10.0 | ||
flake8==7.1.1 | ||
pymgclient==1.3.1 | ||
pytest-pylint==0.21.0 | ||
pytest-timeout==1.4.2 | ||
pytest-cov==2.12.1 | ||
pytest-benchmark==3.4.1 | ||
pytest-flake8==1.0.7 | ||
pytest-black==0.3.12 | ||
gqlalchemy==1.4.1 | ||
pytest-timeout==2.3.1 | ||
pytest-cov==6.0.0 | ||
pytest-benchmark==5.1.0 | ||
pytest-flake8==1.3.0 | ||
pytest-black==0.6.0 | ||
gqlalchemy==1.6.0 |