diff --git a/.gitignore b/.gitignore index d4d696fc0..77f894031 100644 --- a/.gitignore +++ b/.gitignore @@ -110,3 +110,5 @@ venv.bak/ */node_modules solutions/text_search_engine/quick_deploy/client/node_modules + +bootcamp/tutorials/quickstart/apps/image_search_with_milvus/reverse_image_search* diff --git a/bootcamp/tutorials/quickstart/apps/image_search_with_milvus/README.md b/bootcamp/tutorials/quickstart/apps/image_search_with_milvus/README.md index 1aab48349..2a18cd464 100644 --- a/bootcamp/tutorials/quickstart/apps/image_search_with_milvus/README.md +++ b/bootcamp/tutorials/quickstart/apps/image_search_with_milvus/README.md @@ -24,7 +24,7 @@ Follow these steps to quickly deploy the application locally: **1. Download Codes** ```bash -$ git clone +$ git clone https://github.com/milvus-io/bootcamp.git $ cd bootcamp/bootcamp/tutorials/quickstart/app/image_search_with_milvus ``` diff --git a/bootcamp/tutorials/quickstart/apps/image_search_with_milvus/app.py b/bootcamp/tutorials/quickstart/apps/image_search_with_milvus/app.py index 47a74230b..51f384a43 100644 --- a/bootcamp/tutorials/quickstart/apps/image_search_with_milvus/app.py +++ b/bootcamp/tutorials/quickstart/apps/image_search_with_milvus/app.py @@ -93,6 +93,6 @@ def get_image_embedding(image: Image): imgName = img_info["filename"] score = info["distance"] img = Image.open(imgName) - cols[i % 5].image(img, use_column_width=True) + cols[i % 5].image(img, use_container_width=True) if show_distance: cols[i % 5].write(f"Score: {score:.3f}")