Skip to content
Merged
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
4 changes: 2 additions & 2 deletions notebooks/vector-search-lab.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
"metadata": {},
"outputs": [],
"source": [
"image_url = \"https://images.isbndb.com/covers/77/44/9780789467744.jpg\"\n",
"image_url = \"https://images.isbndb.com/covers/4318463482198.jpg\"\n",
"# Load the image from the URL above\n",
"image = Image.open(requests.get(image_url, stream=True).raw)\n",
"# Embed the `image` using the `embedding_model` instantiated above and return the embedding as a list\n",
Expand Down Expand Up @@ -454,7 +454,7 @@
"outputs": [],
"source": [
"# Test the vector search with an image query\n",
"vector_search(\"https://images.isbndb.com/covers/26/12/9780385412612.jpg\", \"image\")\n",
"vector_search(\"https://images.isbndb.com/covers/10835953482746.jpg\", \"image\")\n",
"\n",
"# Also try these image queries:\n",
"# - https://mongodb-developer.github.io/vector-search-lab/img/query-sample/1.png\n",
Expand Down