Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook.

## Upcoming
- Updated `create-graph` CLI commands in Neptune Analytics samples ([Link to PR](https://github.com/aws/graph-notebook/pull/565))

## Release 4.1.0 (February 1, 2024)
- New Neptune Analytics notebook - Vector Similarity Algorithms ([Link to PR](https://github.com/aws/graph-notebook/pull/555))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"This can be done using a command similar to the one below, which can be run from a client that has the AWS CLI configured and appropriate permissions. Please refer to the [documentation](https://docs.aws.amazon.com/neptune-analytics/latest/userguide/vector-similarity.html) for the details on setting up a vector search enabled graph.\n",
"\n",
"```\n",
"aws neptune-graph create-graph --graph-name 'air-routes-embeddings' --provisioned-memory 128 --allow-from-public --replica-count 0 --vector-search '{\"dimension\": 1536}'\n",
"aws neptune-graph create-graph --graph-name 'air-routes-embeddings' --provisioned-memory 128 --public-connectivity --replica-count 0 --vector-search-configuration '{\"dimension\": 1536}'\n",
"```\n",
" \n",
"## Loading Data\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"This can be done using a command similar to the one below, which can be run from a client that has the AWS CLI configured and appropriate permissions. Please refer to the [documentation](https://docs.aws.amazon.com/neptune/) for the details on setting up a vector search enabled graph.\n",
"\n",
"```\n",
"aws neptune-graph create-graph --graph-name 'edgar' --provisioned-memory 128 --allow-from-public --replica-count 0 --vector-search '{\"dimension\": 384}'\n",
"aws neptune-graph create-graph --graph-name 'edgar' --provisioned-memory 128 --public-connectivity --replica-count 0 --vector-search-configuration '{\"dimension\": 384}'\n",
"```\n",
"\n",
"<div class=\"alert alert-block alert-info\"> \n",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/notebooks/test_validate_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_no_extra_notebooks(self):
f'{NOTEBOOK_BASE_DIR}/02-Neptune-Analytics/02-Graph-Algorithms/06-Vector-Similarity-Algorithms.ipynb',
f'{NOTEBOOK_BASE_DIR}/02-Neptune-Analytics/03-Sample-Use-Cases/Overview.ipynb',
f'{NOTEBOOK_BASE_DIR}/02-Neptune-Analytics/03-Sample-Use-Cases/01-FinTech/01-Fraud-Ring-Identifcation.ipynb',
f'{NOTEBOOK_BASE_DIR}/02-Neptune-Analytics/03-Sample-Use-Cases/02-Investment-Analysis/01-EDGAR-Competitior-Analysis-using-Knowledge-Graph-Graph-Algorithms-and-Vector-Search.ipynb',
f'{NOTEBOOK_BASE_DIR}/02-Neptune-Analytics/03-Sample-Use-Cases/02-Investment-Analysis/01-EDGAR-Competitor-Analysis-using-Knowledge-Graph-Graph-Algorithms-and-Vector-Search.ipynb',
f'{NOTEBOOK_BASE_DIR}/03-Neptune-ML/01-Gremlin/01-Getting-Started-with-Neptune-ML-Gremlin.ipynb',
f'{NOTEBOOK_BASE_DIR}/03-Neptune-ML/01-Gremlin/02-Introduction-to-Node-Classification-Gremlin.ipynb',
f'{NOTEBOOK_BASE_DIR}/03-Neptune-ML/01-Gremlin/03-Introduction-to-Node-Regression-Gremlin.ipynb',
Expand Down