Skip to content

Commit

Permalink
fix variable names in clip client notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1504 committed Jun 20, 2022
1 parent 299cdd5 commit b1128c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notebook/clip-client-query-api.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,8 @@
],
"source": [
"red_tshirt_text_emb = get_text_emb(\"red tshirt\")\n",
"cat_results = client.query(embedding_input=red_tshirt_text_emb.tolist())\n",
"log_result(cat_results[0])"
"red_tshirt_results = client.query(embedding_input=red_tshirt_text_emb.tolist())\n",
"log_result(red_tshirt_results[0])"
]
},
{
Expand Down Expand Up @@ -357,7 +357,7 @@
"source": [
"blue_dress_image_emb = get_image_emb(\"https://rukminim1.flixcart.com/image/612/612/kv8fbm80/dress/b/5/n/xs-b165-royal-blue-babiva-fashion-original-imag86psku5pbx2g.jpeg?q=70\")\n",
"blue_dress_results = client.query(embedding_input=blue_dress_image_emb.tolist())\n",
"log_result(beach_results[0])"
"log_result(blue_dress_results[0])"
]
},
{
Expand Down

0 comments on commit b1128c5

Please sign in to comment.