diff --git a/examples/ClothingCLI/README.md b/examples/ClothingCLI/README.md deleted file mode 100644 index 37e6d1f78..000000000 --- a/examples/ClothingCLI/README.md +++ /dev/null @@ -1,41 +0,0 @@ -# Marqo Simple CLI Demo - -### Prerequisites - -What things you need to install the software and how to install them. - -``` -Python 3.8 -``` - -### Getting Started - -1. Download the Dataset from - [Clothing Dataset](https://github.com/alexeygrigorev/clothing-dataset) into the directory where the `simple_marqo_demo.py` script is found. - -2. Run this command inside the script directory to setup an HTTP server: - ``` - python3 -m http.server 8222 - ``` - This is for the marqo docker container to read files from local os. - For more info on this please visit [this link](https://github.com/marqo-ai/marqo/issues/35). - -3. Make sure to run the Marqo docker container via the following command: - ``` - docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest - ``` - -4. Install Marqo - ``` - pip install marqo - ``` - -5. Run the `simple_marqo_demo.py` script via the following command: - ``` - python3 simple_marqo_demo.py - ``` - -For more information on Marqo's functions and features, please visit the [Marqo Documentation Page](https://marqo.pages.dev/). - -## Usage -Feel free to checkout the code in order to have a better understanding on how Marqo functions are used :). diff --git a/examples/ClothingCLI/simple_marqo_demo.py b/examples/ClothingCLI/simple_marqo_demo.py deleted file mode 100644 index 7f4756360..000000000 --- a/examples/ClothingCLI/simple_marqo_demo.py +++ /dev/null @@ -1,137 +0,0 @@ -import marqo -import pprint -import pandas as pd - -mq = marqo.Client(url='http://localhost:8882') # Connection to Marqo Docker Container - -dataset_path = "http://localhost:8222/" # Place your file path here (directory where http server is setup) - -def load_index(index_name: str, number_data: int) -> None: - try: - shirt_data = pd.read_csv('clothing-dataset/images.csv').head(number_data)[['image','label','kids']].to_dict('records') - - # dataset came from this link: https://github.com/alexeygrigorev/clothing-dataset-small - # the .csv file has the following headers: - # image, sender_id, label, kids - # (image name, id of the sender who sent the pictures from sender_id, what kind of clothing it is, whether or not the clothing is for kids) - # Dataset Example:. - # 4285fab0-751a-4b74-8e9b-43af05deee22,124,Not sure,False - # 70045b01-b350-4918-be74-2f627290ad7a,95,Skirt,False - - - for data in shirt_data: - path = "http://host.docker.internal:8222/clothing-dataset/images/" + data['image'] + ".jpg" - data['image'] = path - - settings = { - "treat_urls_and_pointers_as_images":True, # allows us to find an image file and index it - "model":"ViT-B/16" - } - - mq.create_index(index_name, **settings) - - mq.index(index_name).add_documents(shirt_data, tensor_fields=['image','label','kids']) - - print("Index successfully created.") - - except Exception as e: - print("Index already exists.") - -def delete_index(index_name: str): - try: - mq.index(index_name).delete() - print("Index successfully deleted.") - except Exception as e: - print("Index does not exist.") - - -def delete_doc_from_index(index_name:str, doc_ids:list[str]): - results = mq.index(index_name).delete_documents(ids=doc_ids) - return results - -def search_index_text(index_name:str, query_text: str, search_method: str): - results = mq.index(index_name).search( - q=query_text, - search_method=search_method, - ) - - # Marqo also has other features such as searhcing based on a specific attribute field and query fitlering - # refer to the documentation on how these features work (https://marqo.pages.dev/) - return results - -def search_index_image(index_name:str, image_name: str): - # make sure the image is located inside the directory in which the python http server is running - - image_path = "http://host.docker.internal:8222/" + image_name - - results = mq.index(index_name).search(image_path) - - return results - -def get_index_stats(index_name: str) -> dict: - results = mq.index(index_name).get_stats() - return results - - - -def main(): - print("Welcome to Marqo Demo!") - while True: - action = int(input(''' -What would you like to do? -1) Create an Index -2) Delete an Index -3) Search from an Index -4) Show Index Stats -5) Delete a document from an Index -6) Quit - -Action: ''')) - - if action == 1: - index_name = input("Index name: ") - no_of_items = int(input("No. of items in dataset: ")) - - load_index(index_name, no_of_items) - elif action == 2: - index_name = input("Index name: ") - - delete_index(index_name) - elif action == 3: - index_name = input("Index name: ") - search_type = input("Search Type (Text, Image): ") - - if search_type == 'Text': - search_mode = str(input("Search Mode: (Lexical, Tensor)")) - query_text = str(input("Query Text: ")) - - results = search_index_text(index_name, query_text, search_mode.upper()) - - pprint.pprint(results) - elif search_type == 'Image': - image_name = str(input("Image name (include MIME type .jpg or .png): ")) - - results = search_index_image(index_name, image_name) - - pprint.pprint(results) - - elif action == 4: - index_name = input("Index name: ") - get_index_stats(index_name) - - elif action == 5: - index_name = input("Index name: ") - no_of_docs = int(input("No. of documents to delete: ")) - doc_ids = [] - - for i in range(no_of_docs): - doc_id = input("Document ID: ") - doc_ids.append(doc_id) - - delete_doc_from_index(index_name, doc_ids) - - else: - print("Goodbye") - break - -main() diff --git a/examples/ClothingStreamlit/README.md b/examples/ClothingStreamlit/README.md deleted file mode 100644 index 983dff7c6..000000000 --- a/examples/ClothingStreamlit/README.md +++ /dev/null @@ -1,47 +0,0 @@ -# Marqo Streamlit Demo Application - -### Prerequisites - -What things you need to install the software and how to install them. - -``` -Python 3.8 -``` - -### Getting Started - -1. Download the Dataset from - [Clothing Dataset](https://github.com/alexeygrigorev/clothing-dataset) into the directory where the `streamlit_marqo_demo.py` script is found. - -2. Run this command inside the script directory to setup an HTTP server: - ``` - python3 -m http.server 8222 - ``` - This is for the marqo docker container to read files from local os. - For more info on this please visit [this link](https://github.com/marqo-ai/marqo/issues/35). - -3. Make sure to run the Marqo docker container via the following command: - ``` - docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest - ``` - -4. Install Streamlit. This can be done by via the following [link](https://docs.streamlit.io/library/get-started/installation). - -5. Install Marqo - ``` - pip install marqo - ``` - Note: if you are using Anaconda, make sure to install marqo in the anaconda environment. - -6. Once Streamlit is installed, we can start the Streamlit application by running the following command inside the directory where the `streamlit_marqo_demo.py` script is located: - ``` - streamlit run streamlit_marqo_demo.py - ``` - -For more information on: -- Marqo's functions and features, please visit the [Marqo Documentation Page](https://marqo.pages.dev/). - -- Streamlit's functions and features, please visit the [Streamlit Documentation Page](https://docs.streamlit.io/). - -## Usage -Feel free to checkout the code in order to have a better understanding on how Marqo functions are used :). diff --git a/examples/ClothingStreamlit/favicon.png b/examples/ClothingStreamlit/favicon.png deleted file mode 100644 index 541edf414..000000000 Binary files a/examples/ClothingStreamlit/favicon.png and /dev/null differ diff --git a/examples/ClothingStreamlit/marqo-logo.jpg b/examples/ClothingStreamlit/marqo-logo.jpg deleted file mode 100644 index ad1239e4e..000000000 Binary files a/examples/ClothingStreamlit/marqo-logo.jpg and /dev/null differ diff --git a/examples/ClothingStreamlit/streamlit_marqo_demo.py b/examples/ClothingStreamlit/streamlit_marqo_demo.py deleted file mode 100644 index 3bd12a944..000000000 --- a/examples/ClothingStreamlit/streamlit_marqo_demo.py +++ /dev/null @@ -1,217 +0,0 @@ -import os -import requests -import streamlit as st -import pandas as pd -from PIL import Image -import pprint -import marqo - -# Streamlit configuration settings -st.set_page_config( - page_title="Marqo Demo App", - page_icon="favicon.png", - layout="centered", - initial_sidebar_state="collapsed", - menu_items={} -) - -mq = marqo.Client(url='http://localhost:8882') # Connection to Marqo Docker Container -cwd = os.getcwd() # Get current working directory - -def load_index(number_data): - try: - shirt_data = pd.read_csv('clothing-dataset/images.csv').head(number_data)[['image','label','kids']].to_dict('records') - - for data in shirt_data: - path = "http://host.docker.internal:8222/clothing-dataset/images/" + data['image'] + ".jpg" - data['image'] = path - - settings = { - "treat_urls_and_pointers_as_images":True, # allows us to find an image file and index it - "model":"ViT-B/16" - } - - mq.create_index("demo-search-index", **settings) - - with st.spinner("Creating Index..."): - mq.index("demo-search-index").add_documents(shirt_data, tensor_fields=['image', 'label', 'kids']) - - st.success("Index successfully created.") - except: - st.error("Index already exists.") - -def delete_index(): - try: - mq.index("demo-search-index").delete() - st.success("Index successfully deleted.") - except: - st.error("Index does not exist.") - -def save_uploadedfile(uploadedfile): - with open(os.path.join(cwd, uploadedfile.name), "wb") as f: - f.write(uploadedfile.getbuffer()) - return uploadedfile.name - -def reset_state(): - st.session_state['results'] = {} - st.session_state['page'] = -1 - -def create_filter_str(filter_list): - filter_string = "" - - if 'Kids' in filter_list: - filter_string += 'kids:true' - filter_list.remove('Kids') - else: - filter_string += 'kids:false' - - for field in filter_list: - filter_string += f" AND label:({field})" - - print(filter_string) - return filter_string - -def main(): - # Streamlit state variables (this is to save the state of the session for pagination of Marqo query results) - if 'results' not in st.session_state: - st.session_state['results'] = {} - - if 'page' not in st.session_state: - st.session_state['page'] = -1 - - # Index Settings Frontend - with st.sidebar: - st.write("Index Settings:") - values = st.slider( - label='Select a range of values', - min_value=10.0, - max_value=2000.0, - value=1000.0, - step=10.0) - - create_col, _, delete_col = st.columns([1,1,1]) - - with create_col: - create_btn = st.button('Create Index') - if create_btn: - load_index(int(values)) - with delete_col: - delete_btn = st.button('Delete Index') - if delete_btn: - delete_index() - - # Main application frontend - logo = Image.open("{}\marqo-logo.jpg".format(cwd)) - st.image(logo) - - search_text, search_image_url, search_image = None, None, None - search_mode = st.radio("",("Text", "Image"), horizontal=True, on_change=reset_state) - if search_mode == "Text": - box_col, search_mode_col = st.columns([6,1]) - with box_col: - search_text = st.text_input("Text Search") - - with search_mode_col: - search_text_mode = st.radio("Search mode", ("Tensor", "Lexical")) - else: - image_input_col, image_type_col = st.columns([6,1]) - - with image_type_col: - image_type = st.radio("Image type", ("Web", "Local")) - - with image_input_col: - if image_type=="Web": - search_image_url = st.text_input("Provide an Image URL") - - else: - search_image = st.file_uploader('Upload an Image', type=['jpg']) - - with st.expander("Search Settings"): - attr_col, filter_col = st.columns(2) - with attr_col: - searchable_attr = st.multiselect('Searchable Attributes', ['Image', 'Label'], default=['Label']) - - with filter_col: - filtering = st.multiselect('Pre-filtering Options', ['Dress', 'Hat', 'Longsleeve', 'Outwear', 'Pants', 'Shirt', 'Shoes', 'Shorts', 'Skirt', 'T-Shirt', 'Kids'], default=None) - - - search_btn = st.button('Search') - - # Marqo Results logic - if ((search_image is not None) or (search_image_url) or (search_text)) and search_btn: - if search_text != "" and search_text != None: - results = mq.index("demo-search-index").search( - search_text, - filter_string=create_filter_str(filtering), - search_method=search_text_mode.upper(), - searchable_attributes=[i.lower() for i in searchable_attr], - limit=30 - ) - - elif search_image_url != "" and search_image_url != None: - results = mq.index("demo-search-index").search( - search_image_url, - filter_string=create_filter_str(filtering), - searchable_attributes=[i.lower() for i in searchable_attr], - limit=30 - ) - - else: - uploaded_img_name = save_uploadedfile(search_image) - - uploaded_img_path = f"http://host.docker.internal:8222/{uploaded_img_name}" - print(uploaded_img_path) - - results = mq.index("demo-search-index").search( - uploaded_img_path, - filter_string=create_filter_str(filtering), - searchable_attributes=[i.lower() for i in searchable_attr], - limit=30 - ) - - pprint.pprint(results) - - st.session_state['results'] = results - - if st.session_state['results']['hits']: - st.session_state['page'] = 0 - else: - st.session_state['page'] = -1 - - - - # Results Pagination Logic - if st.session_state['page'] > -1: - prev_col, page_col, next_col = st.columns([1,9,1]) - with prev_col: - prev_btn = st.button("Prev") - if prev_btn and (st.session_state['page'] > 0): - st.session_state['page']-=1 - - with next_col: - next_btn = st.button("Next") - if next_btn and (st.session_state['page'] < 2): - st.session_state['page'] += 1 - - with page_col: - st.markdown('
- -
- -## 1. Product Q & A - "Iron Manual" - -- -
- -## 2. NPC/chat agent with editable history - "Ironman" - -- -
- -## Introduction - -LLM’s can be used for many tasks with little (few-shot) to no (zero-shot) training data. A single LLM can be used for tasks like summarization, translation, question and answering, and classification. Despite LLM’s recent success there are still some limitations. For example, after the models are trained they are not easily updatable with new information. They also have a fixed input length. This places restrictions on the amount of context they can have inserted when being prompted. To overcome these limitations, we show how an external knowledge base can be used as part of the LLM to provide a fast and editable memory (i.e. document store) for it to draw from. - -- -
- -## Use case 1 - Product Q&A - -For the first use case, GPT is paired with Marqo to create a powerful search function for product documentation. This allows question and answering of its features. It is also able to provide a nice compact answer that is easy to read. - -### 1.1 The product documents - -To test the question answering capabilities, an “in the wild” use case was desired. A paper manual for a recently purchased clothes iron was selected. If already digitized text is available, this step can be skipped. - -- -
- -The manual is a particularly dry read. It consists of 7-pages of information related to the iron. Including information regarding its safe operation and maintenance. - -### 1.2 Preparing the documents - -Since the manual was on some paper, it needs to be digitized. AWS Textract was used to perform optical character recognition (OCR). The pages were two-columned which provided a challenge as the OCR output is left-to-right, causing the text to be intermingled. Bounding boxes are provided from the OCR output which would allow conceptual grouping of the text, however this was going to take too long. Instead, the OCR was performed again but with half the text blocked off by another piece of paper. - -- -
- -After scanning, there were seven documents, each representing a column of text from the manual. Below is an example of the text after OCR. - -```python -""" -Your iron has an Anti-Drip system, Anti-Scales system -and Auto-Off function. -Anti-Drip system: This is to prevent water from escaping -from the soleplate when the iron is cold. During use, the -anti-drip system may emit a loud 'clicking' sound, -particularly when heating up or cooling down. This is -normal and indicates that the system is functioning -correctly. -Anti-Scale system: The built-in anti-scale cartridge is -designed to reduce the build-up of lime scale which -occurs during steam ironing and will prolong the -working life of your iron. The anti-calc cartridge is an -integral part of the water tank and does not need to be -replaced. -Auto-Off function: This feature automatically switches -off the steam iron if it has not been moved for a while. -""" -``` - -## 1.3 Indexing the documents -After creating a digital copy of the product manual, the next step is to index them into Marqo. Marqo embeds the documents using an encoder and allows for fast and efficient retrieval of relevant documents. Marqo provides both embedding based and lexical based retrieval. These retrieved documents are then going to be passed into a prompt for GPT. GPT is then asked to answer the query with respect to the retrieved documents (the “sources”). - -## 1.3.1 Installing Marqo -We first install Marqo and the Marqo python client, - -```bash -docker pull marqoai/marqo:0.0.12; -docker rm -f marqo; -docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:0.0.12 -pip install marqo -``` - -## 1.3.2 Indexing documents -We then need to index the pages we have for the product. They need to be formatted as a python dictionary for ingestion. - -```python -document1 = {"text":"Auto-Off function: This feature automatically switches - off the steam iron if it has not been moved for a while.", - "source":"page 1"} -# other document content left out for clarity -documents = [document1, document2, document3, document4, document5] -``` - -Once the documents are prepared, we can start indexing them using the python client. If no index settings are present, the default encoder is used. - -```python -from marqo import Client -mq = Client() -index_name = "iron-docs" -mq.create_index(index_name) -``` - -## 1.3.3 Searching documents -At this point, Marqo can be used to search over the document embeddings using an approximate nearest neighbor algorithm (HNSW). -```python -results = mq.index(index_name).search("what is the loud clicking sound?") -``` -or using lexical search which uses BM25. -```python -results = mq.index(index_name).search("what is the loud clicking sound?", - search_method="LEXICAL") -``` -## 1.4 Connecting Marqo to GPT -The documents (product manual) can now be searched. Searching and retrieving relevant documents will provide the context for GPT to create a final answer. GPT requires an API key and can be obtained from the OpenAI website. The key then needs to be set as an environment variable. - -```bash -export OPENAI_API_KEY="..." -``` - -## 1.4.1 Prompt creation -The first thing that needs to be done is to create a prompt. There are a plethora of examples to draw from here but something like the following will get good results. - -```python -template = """ -Given the following extracted parts of a long document ("SOURCES") and a question ("QUESTION"), create a final answer one paragraph long. -Don't try to make up an answer and use the text in the SOURCES only for the answer. If you don't know the answer, just say that you don't know. -QUESTION: {question} -========= -SOURCES: -{summaries} -========= -ANSWER: -""" -``` -Here we instruct GPT to answer based on the context and not make anything up (this may not be perfect though). The question and answer is then inserted along with the context (“summaries”). - -To save time, we will use Langchain to help with the communication with GPT. Langchain can make it easy to setup interactions with LLM’s and removes a lot of the boiler plate code that would otherwise be required. -```python -pip install langchain -from langchain.prompts import PromptTemplate -prompt = PromptTemplate(template=template, input_variables=["summaries", "question"]) -``` - -## 1.4.2 Preparing the context -In order to connect GPT to Marqo, we need to format the results so they can be easily inserted into the prompt that was just created. - -```python -from langchain.docstore.document import Document -results = client.index(index_name).search(question) -text = [res['_highlights']['text'] for res in results['hits']] -docs = [Document(page_content=f"Source [{ind}]:"+t) for ind,t in enumerate(texts)] -``` -To start with, we take just the highlights from Marqo. This is convenient because they are small pieces of text. They fit within the prompt and do not occupy too many tokens. Token limits matter because GPT (and LLM’s in general) will have a context length and often charge by token. This is the maximum number of tokens that can be used for the input. The more context, the larger the text (and background) that GPT can use. The drawback here is that the highlights might be too short to accurately answer the question. - -## 1.4.3 Token aware context truncating (optional) -- -
- -To help with token limits while also having control over the input context length - a "dilation" procedure around the highlight can be performed to allow for more context. This means that some text before and after the highlight is included to allow for greater context for GPT. This is also very helpful as the pricing models for these models can be per token. - -```python -highlights, texts = extract_text_from_highlights(results, token_limit=150) -docs = [Document(page_content=f"Source [{ind}]:"+t) for ind,t in enumerate(texts)] -``` -The next step is to provide the prompt with formatted context. - -## 1.4.4 GPT inference -Now we have the prepared documents and prompt, we can call GPT using Langchain. We initiate an OpenAI class which communicates with the GPT API. - -```python -from langchain.chains import LLMChain -llm = OpenAI(temperature=0.9, model_name = "text-davinci-003") -chain_qa = LLMChain(llm=llm, prompt=prompt) -llm_results = chain_qa({"summaries": docs, "question": results['query']}, return_only_outputs=True) -``` - -The result is a dictionary with the text output from GPT. This essentially completes the required steps to augment GPT with an external knowledge base. However, we can add another feature to include and score sources of information that were used in the answer. This can be useful since LLM’s are known to hallucinate details. Providing the original sources can be used to check the output of the LLM’s results. In the next section we show how a re-ranker from two-stage retrieval can be repurposed to check which sources were used and provide a score. - -## 1.4.5 Rating sources -After we have received a response in from the LLM, we can score the sources with respect to the LLM's response. This is in contrast to other methods that get the LLM themselves to cite the sources. From the experience here, that method was sometimes unreliable. - -- -
- -For the proposed method, we take a re-ranker (sentence-transformers cross-encoder) which would normally score each (query, document) pair to re-rank search results. Instead here, we score each (llm_result, document) pair. This provides a score for the "relevency" of the LLM's response with the provided sources. The idea being, the ones that were used will be most similar to the response. - -```python -scores = predict_ce(llm_results['text'], texts) -``` -and we can see scores for each piece of context with the LLM response. - -- -
- -The model is a classification model. A score of 1 is exact match and 0 is not a match. This method is not perfect though so some care should be taken. For example, GPT can be quite verbose when it does not know an answer. This response can include the original question and will cause false positives when scoring. Fine-tuning the re-ranker would probably reduce the false positives considerably. - -# Use case 2 - conversational agents with a story -The second use case deals with a conversational agent that can draw on history (or background) as context to answer questions. This could be used for creating NPC's with a backstory or other chat agents that may need past context. - -- -
- -## 2.1 Indexing NPC data -Now we have indexed the documents, we can search over them. In this case the documents are the backstories and the search is used context for the conversation. This search and retrieve step will provide the context for GPT to create a final answer. - -## 2.1.1 NPC data -Here is an example of what the documents look like for the NPC's: -```python -document1 = {"name":"Sara Lee", "text":"my name is Sara Lee"} -document2 = {"name":"Jack Smith", "text":"my name is Jack Smith"} -document3 = {"name":"Sara Lee", "text":"Sara worked as a research assistant for a university before becoming a park ranger."} -documents = [document1, document2, document3] -``` - -## 2.1.2 Indexing the data -Now we can index the data. We need to get the Marqo client and create an index name. -```python -from marqo import Client -mq = Client() -index_name = "iron-docs" -mq.create_index(index_name) -``` -Now we index the documents -```python -results = mq.index(index_name).add_documents(documents, tensor_fields = ["name", "text"]) -``` - -We can search and see what comes back. -```python -results = mq.index(index_name).search("sara lee") -``` - -Which gives the desired output -```python -In [32]: res['hits'][0]['_highlights'] -Out[32]: {'name': 'Sara Lee'} -``` - -Different characters can be easily selected (filtered). This means only their background can be searched. -```python -persona = "Jack Smith" -results = mq.index(index_name).search('what is your hobby', filter_string=f'name:({persona})') -``` - -## 2.2 Connecting Marqo to GPT -Now we have indexed the documents, we can search over them. In this case the documents are the backstories and the search is used context for the conversation. This search and retrieve step will provide the context for GPT to create a final answer. - -## 2.2.1 Prompt creation -We use a prompt that contains some context and sets the stage for the LLM conversationalist. -```python -template = """ -The following is a conversation with a fictional superhero in a movie. -BACKGROUND is provided which describes some of the history and powers of the superhero. -The conversation should always be consistent with this BACKGROUND. -Continue the conversation as the superhero in the movie. -You are very funny and talkative and **always** talk about your superhero skills in relation to your BACKGROUND. -BACKGROUND: -========= -{summaries} -========= -Conversation: -{conversation} -""" -``` -Here we instruct GPT to answer for the character based on the background and to reference it where possible. Langchain is then used to create the prompt, - -```python -pip install langchain -from langchain.prompts import PromptTemplate -prompt = PromptTemplate(template=template, input_variables=["summaries", "conversation"]) -``` - -## 2.2.2 Preparing the context -Here we truncate the context around the highlight from the previous search using Marqo. We use the token aware truncation which adds context from before and after the highlight. - -```python -highlights, texts = extract_text_from_highlights(results, token_limit=150) -docs = [Document(page_content=f"Source [{ind}]:"+t) for ind,t in enumerate(texts)] -``` -The next step is to provide the prompt with formatted context. - -## 2.2.3 GPT inference -Now we have the prepared documents and prompt, we can call GPT using Langchain. We initiate an OpenAI class which communicates with the GPT API, - -```python -from langchain.chains import LLMChain -lm = OpenAI(temperature=0.9, model_name = "text-davinci-003") -chain_qa = LLMChain(llm=llm, prompt=prompt) -llm_results = chain_qa({"summaries": docs, "conversation": "wow, what are some of your favorite things to do?", return_only_outputs=True) -``` -The result is a dictionary with the text output from GPT. For example this is the response after the first text from the human, - -```python - {'conversation': 'HUMAN:wow, what are some of your favorite things to do?', - 'text': "SUPERHERO:I really enjoy working on cars, fishing, and playing video games. Those are some of the things that I like to do in my free time. I'm also really into maintaining and fixing stuff - I guess you could say it's one of my superhero powers! I have a lot of experience as an auto mechanic, so I'm really good at diagnosing and fixing problems with cars."} - ``` - -which aligns well with the background which was, - -```python -['my hobbies is Working on cars, fishing, and playing video games', - 'my favorite food is Steak', - 'my favorite color is Blue'] -``` - -## 2.3 Making it conversational -The next step is to do some iterative prompting and inference to create a chat. We do this by iteratively updating the prompt with the question, searching across the background, formatting the context, calling the LLM and appending the result to the chat sequence (full code [here](https://github.com/marqo-ai/marqo/tree/mainline/examples/GPT-examples)). - -```python -# how many background pieces of information to use -n_background = 2 -# we keep track of the human and superhero responses -history.append(f"\nHUMAN:{question}") -# search for background related to the question -results = mq.index(index_name).search(question, filter_string=f"name:({persona})", searchable_attributes=['text'], limit=20) -# optionally crop the text to the highlighted region to fit within the context window -highlights, texts = extract_text_from_highlights(results, token_limit=150) -# add the truncated/cropped text to the data structure for langchain -summaries = [Document(page_content=f"Source [{ind}]:"+t) for ind,t in enumerate(texts[:n_background])] -# inference with the LLM -chain_qa = LLMChain(llm=llm, prompt=prompt) -llm_results = chain_qa({"summaries": summaries, "conversation": "\n".join(history)}, return_only_outputs=False) -# add to the conversation history -history.append(llm_results['text']) -``` -We can now see the conversation and the agent drawing on its retrieved background. - -- -
- -This fits nicely with the background we gave the character, -```python -{'name': 'Evelyn Parker', 'text': 'my name is Evelyn Parker'}, -{'name': 'Evelyn Parker', 'text': 'my location is The city'}, -{'name': 'Evelyn Parker', 'text': 'my work_history is Evelyn worked as a line cook at several restaurants before attending culinary school and becoming a head chef.'}, -{'name': 'Evelyn Parker', - 'text': 'my hobbies is Cooking, gardening, and reading'}, -{'name': 'Evelyn Parker', 'text': 'my favorite_food is Seafood'}, -{'name': 'Evelyn Parker', 'text': 'my dislikes is Cilantro'} -``` - -## 2.4 Editing the characters background -We can patch, delete or add documents for the agents background with Marqo. Lets add something from the previous example, -```python -from iron_data import get_extra_data -extra_docs = [{"text":text, "name":persona} for text in get_extra_data()] -res = mq.index(index_name).add_documents(extra_docs, tensor_fields = ["name", "text"]) -``` -This adds some of the safety information from the iron manual. We will also take the bottom ranked results (i.e least relevant) to make it interesting. The following is the conversation - we can see it weaving its new background into the story nicely! - -- -
- - -## Conclusion -We have shown how it is easy to make product question and answering and chat agents with an editable background using LLM’s like GPT and [Marqo](https://github.com/marqo-ai/marqo). We also showed how the limits of context length can be overcome by judicious truncation of the text. Reference scoring can be used to help verify the output. Although the results are really encouraging some care should still be made. GPT still has a habit of hallucinating results even with strong instructions and reference checks. If you are interested in combining GPT (or LLM’s in general) with Marqo — check out the [github](https://github.com/marqo-ai/marqo). Finally, if you are interested in running this in production, sign up for our [cloud](https://q78175g1wwa.typeform.com/to/d0PEuRPC). diff --git a/examples/GPT-examples/article/assets/1 2lK1Q99fpKke6vPFwqPzEA.png b/examples/GPT-examples/article/assets/1 2lK1Q99fpKke6vPFwqPzEA.png deleted file mode 100644 index c9ccb485f..000000000 Binary files a/examples/GPT-examples/article/assets/1 2lK1Q99fpKke6vPFwqPzEA.png and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 7sgXp44TwyV9PgEHlrdNNw.png b/examples/GPT-examples/article/assets/1 7sgXp44TwyV9PgEHlrdNNw.png deleted file mode 100644 index 6aac74196..000000000 Binary files a/examples/GPT-examples/article/assets/1 7sgXp44TwyV9PgEHlrdNNw.png and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 BTmMOgmzwuYhFw-Uzn65SQ.png b/examples/GPT-examples/article/assets/1 BTmMOgmzwuYhFw-Uzn65SQ.png deleted file mode 100644 index 2f953bc32..000000000 Binary files a/examples/GPT-examples/article/assets/1 BTmMOgmzwuYhFw-Uzn65SQ.png and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 FcXqgXdF3nQQi2gexNCrdw.gif b/examples/GPT-examples/article/assets/1 FcXqgXdF3nQQi2gexNCrdw.gif deleted file mode 100644 index 1a6a6d00d..000000000 Binary files a/examples/GPT-examples/article/assets/1 FcXqgXdF3nQQi2gexNCrdw.gif and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 VwVrPVOcdN7BeMUrT2bNAQ.png b/examples/GPT-examples/article/assets/1 VwVrPVOcdN7BeMUrT2bNAQ.png deleted file mode 100644 index 67fdb0797..000000000 Binary files a/examples/GPT-examples/article/assets/1 VwVrPVOcdN7BeMUrT2bNAQ.png and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 WAa1eHpMekmkOG04ZxdAKA.png b/examples/GPT-examples/article/assets/1 WAa1eHpMekmkOG04ZxdAKA.png deleted file mode 100644 index cdf5571ab..000000000 Binary files a/examples/GPT-examples/article/assets/1 WAa1eHpMekmkOG04ZxdAKA.png and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 cntJoKdSHk0zGzrlLW9tYw.gif b/examples/GPT-examples/article/assets/1 cntJoKdSHk0zGzrlLW9tYw.gif deleted file mode 100644 index 62221eeed..000000000 Binary files a/examples/GPT-examples/article/assets/1 cntJoKdSHk0zGzrlLW9tYw.gif and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 cuLqghO8BeEs_wj7ZhDt3Q.png b/examples/GPT-examples/article/assets/1 cuLqghO8BeEs_wj7ZhDt3Q.png deleted file mode 100644 index 933e3e739..000000000 Binary files a/examples/GPT-examples/article/assets/1 cuLqghO8BeEs_wj7ZhDt3Q.png and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 e1JdfEgAngObm_TxwKBYeQ.gif b/examples/GPT-examples/article/assets/1 e1JdfEgAngObm_TxwKBYeQ.gif deleted file mode 100644 index cf17e8721..000000000 Binary files a/examples/GPT-examples/article/assets/1 e1JdfEgAngObm_TxwKBYeQ.gif and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 e9aMy1npv-O8Gy87RMivWw.png b/examples/GPT-examples/article/assets/1 e9aMy1npv-O8Gy87RMivWw.png deleted file mode 100644 index 18c9ba876..000000000 Binary files a/examples/GPT-examples/article/assets/1 e9aMy1npv-O8Gy87RMivWw.png and /dev/null differ diff --git a/examples/GPT-examples/article/assets/1 hyVjvO2E_zADn1829W4oXw.png b/examples/GPT-examples/article/assets/1 hyVjvO2E_zADn1829W4oXw.png deleted file mode 100644 index a9e5a331a..000000000 Binary files a/examples/GPT-examples/article/assets/1 hyVjvO2E_zADn1829W4oXw.png and /dev/null differ diff --git a/examples/GPT-examples/article/assets/readme.md b/examples/GPT-examples/article/assets/readme.md deleted file mode 100644 index 674c7ca07..000000000 --- a/examples/GPT-examples/article/assets/readme.md +++ /dev/null @@ -1 +0,0 @@ -The assets for the article diff --git a/examples/GPT-examples/data/p1.txt b/examples/GPT-examples/data/p1.txt deleted file mode 100644 index 66bdc30ac..000000000 --- a/examples/GPT-examples/data/p1.txt +++ /dev/null @@ -1,33 +0,0 @@ - -IMPORTANT SAFETY INSTRUCTIONS -Read this user manual carefully before first use and -save it for future reference. -This appliance is not intended for use by persons -(including children) with reduced physical, sensory -or mental capabilities or lack of experience and -knowledge, unless they have been given supervision -or instructions concerning use of the appliance by a -person responsible for their safety. -Children should be supervised to ensure that they do -not play with the appliance. -Cleaning and user maintenance shall not be made by -children without supervision. -This product has been designed for domestic use -only. In case of any commercial use, inappropriate -use or failure to comply with the instructions, the -will not apply. -manufacturer is not responsible, and the guarantee -Before connecting your appliance, check if the mains -voltage is the same as the voltage indicated on your -appliance and that the power outlet has an earth -connection. If unsure check with an electrician. -Ensure before each use that the supply cord or any -other parts are not damaged. -Keep the iron and its cord out of reach of children -when connected to mains power or cooling down. -Never direct the steam towards persons or animals. -Never direct the steam jet towards any other -electrical or/and electronic appliances. -DO NOT use the iron if it has been dropped, if there -are visible signs of damage, malfunction or if it is -leaking water. \ No newline at end of file diff --git a/examples/GPT-examples/data/p2.txt b/examples/GPT-examples/data/p2.txt deleted file mode 100644 index f320b5df3..000000000 --- a/examples/GPT-examples/data/p2.txt +++ /dev/null @@ -1,32 +0,0 @@ - -unplugged and cooled any -Always down before doing -make sure the appliance is switched off, -maintenance work. -IMPORTANT! This iron must not be left unattended -while it is connected to mains power and before it -has cooled down. The soleplate of the iron can -become extremely hot and may cause burns if -touched. -Do not unplug the appliance by pulling on the cord -or on the appliance. -Never immerse the iron, the stand, the power cord -or the plug in water. Never hold them under a water -tap. -Do not allow the supply cord to come in contact with -the soleplate when the iron is hot. -If the supply cord is damaged, it must be replaced by -qualified electrical person only or the product must -be disposed. -Disconnect from mains power when filling the -reservoir in the iron with water. -The iron must be used and rested on a flat, stable -surface. -Always place and operate the iron on a flat, solid, -clean and dry surface. When placing the iron on its -stand, ensure that the surface on which the stand is -placed is stable. -For additional protection, this appliance should be -connected to a household residual current device -(safety switch) with a rating of no more than 30mA. -If unsure consult an electrician for advice. \ No newline at end of file diff --git a/examples/GPT-examples/data/p3.txt b/examples/GPT-examples/data/p3.txt deleted file mode 100644 index f996f405c..000000000 --- a/examples/GPT-examples/data/p3.txt +++ /dev/null @@ -1,32 +0,0 @@ - -BEFORE FIRST USE -Unpack the appliance and check if all parts are there -and undamaged. Should this not be the case, return the -product to Kmart for replacement. -The packaging contains: -One steam iron -One filler cup -Clean all parts before first use. See Cleaning and -Maintenance -Heat up the iron to its maximum temperature and iron -over a piece of damp cloth for several minutes. This will -burn-off any manufacturing residue from the iron. -Smoke and odour may occur for a short period during -this process, which is normal. -FEATURES -Your iron has an Anti-Drip system, Anti-Scales system -and Auto-Off function. -Anti-Drip system: This is to prevent water from escaping -from the soleplate when the iron is cold. During use, the -anti-drip system may emit a loud 'clicking' sound, -particularly when heating up or cooling down. This is -normal and indicates that the system is functioning -correctly. -Anti-Scale system: The built-in anti-scale cartridge is -designed to reduce the build-up of lime scale which -occurs during steam ironing and will prolong the -working life of your iron. The anti-calc cartridge is an -integral part of the water tank and does not need to be -replaced. -Auto-Off function: This feature automatically switches -off the steam iron if it has not been moved for a while. \ No newline at end of file diff --git a/examples/GPT-examples/data/p4.txt b/examples/GPT-examples/data/p4.txt deleted file mode 100644 index f360ada5e..000000000 --- a/examples/GPT-examples/data/p4.txt +++ /dev/null @@ -1,53 +0,0 @@ - -PARTS -D -C -B -A -A -Soleplate -E -Spray button -B -Spray nozzle -F -Steam shot button -C -Water filling inlet -G -Cord bushing -D -Variable steam -H -Indicator lamp -button -I -Temperature dial - -OPERATION -Filling the water tank -Ensure that the iron is cold and not connected to a -power supply. -Open the water filling cover (C). Hold the iron in a -tilted position and fill the tank with plain water, -using the filler cup. -DO NOT exceed the max level on the tank. -Close the water filling cover (C) by pressing down the -cap until you hear a 'click'. To avoid water spillage, -ensure that the water tank is properly closed. -NOTES: -To avoid calcium deposits, we recommend you use -distilled water for your steam iron. -To avoid damage or blockage of your steam iron, do not -use any scented water or additives. -Steam Ironing -Your steam iron is equipped with the Eco Steam System. -This function offers 3 steam levels for optimal ironing: -ECO: Reduced amount of steam for energy saving, -suitable for most fabric types -Normal steam :suitable for most fabric types -Power steam :increased steam output for remove -stubborn creases -Fill the water tank with plain water. -Position the iron vertically on its stand on a suitable -flat stable surface. \ No newline at end of file diff --git a/examples/GPT-examples/data/p5.txt b/examples/GPT-examples/data/p5.txt deleted file mode 100644 index 038b9d93a..000000000 --- a/examples/GPT-examples/data/p5.txt +++ /dev/null @@ -1,47 +0,0 @@ - -CLEANING AND MAINTENANCE -Unplug the iron from mains power and allow it to cool -completely before cleaning and storing. -down -Cleaning -Clean the upper part of iron with a damp cloth. If -necessary, use a mild detergent. -Do not use alcohol, acetone, benzene, scourging -cleaning agents, etc., to clean the iron. Do not use -hard brushes or metallic objects. -Remove any deposits on the soleplate with a damp -cloth. To avoid scratching the finishing, never use -metallic pad to clean the soleplate, and never place -the iron on a rough surface. -To remove synthetic residue from the soleplate, iron -over an old cotton rag in high setting. -Always store the emptied iron horizontally on a -stable surface with a cloth protecting the soleplate. -Self-clean function -The self-cleaning function should be used on a regular -basis, depending on usage and the hardness of water -used. -WARNING: Never pour white vinegar or any liquid -cleaners into the water tank! -Fill the water tank. Refer to OPERATION: Filling the -water tank. -Position the iron vertically on its stand on a suitable -surface. -Ensure that the steam control (D) is in OFF position. -Connect the plug to a suitable mains power outlet. -Set to maximum ironing temperature. -Once the soleplate temperature is reached, unplug -the iron from mains power. -Hold the iron over a sink (away from your body), -pressand hold the steam control (D) at "CALC CLEAN" -position. Boiling water and steam will now emit from -the holes in soleplate. -Carefully shake the iron forwards and backwards to -allow any scale and other deposits being expelled -with the boiling water and the steam. -Release the CALC CLEAN button when the water tank -is empty. -Plug the appliance into a mains power outlet socket, -set a temperature and leave in operation for at least -two minutes to dry the soleplate. -Unplug the iron and let the iron cool down fully. \ No newline at end of file diff --git a/examples/GPT-examples/data/p6.txt b/examples/GPT-examples/data/p6.txt deleted file mode 100644 index 88e819b20..000000000 --- a/examples/GPT-examples/data/p6.txt +++ /dev/null @@ -1,39 +0,0 @@ - -IRONING TIPS -IMPORTANT! always check whether a label with ironing instructions is attached to the garment. Always -follow the ironing instructions attached to the garment. -The iron heats up quicker than it cools down, therefore, you should start ironing the articles requiring the -lowest temperature such as those made of synthetic fibre. -If the fabric consists of various kinds of fibres, you must always select the lowest ironing temperature to -iron the composition of those fibres. -Silk and other fabrics that are likely to become shiny should always be ironed on the inner side. To prevent -staining, do not spray water straight on silk or other delicate fabrics. -To prevent staining, do not spray water straight on silk or other delicate fabrics. -Velvet and other textures that rapidly become shiny should be ironed in one direction with light pressure -applied. Always keep the iron moving at any moment. -Pure wool fabrics (100% wool) may be ironed with the iron set to steam position. Preferably set steam -button to the maximum position and use a dry cloth between the garment and the iron for protection. -Do not touch plastic buttons with a hot iron because they may melt. -Be careful around zippers and similar items to prevent the soleplate from scratching. -Symbol -Temperature setting -Variable steam -Steam shot -Spray -Fabric -MIN -x -x -Synthetic fiber -x -x -Wool, Silk -Cotton, Linen -MAX -possible -x -Attention! This symbol indicates: DO NOT IRON! -not possible -TECHNICAL DATA -Rated voltage: 220-240V~ 50-60Hz -Rate power: 2000-2400W \ No newline at end of file diff --git a/examples/GPT-examples/data/p7.txt b/examples/GPT-examples/data/p7.txt deleted file mode 100644 index df412bf41..000000000 --- a/examples/GPT-examples/data/p7.txt +++ /dev/null @@ -1,21 +0,0 @@ - -12 Month Warranty -Thank you for your purchase. -Warrants your new product to be free from defects in materials and workmanship for the -period stated above, from the date of purchase, provided that the product is used in accordance with -accompanying recommendations or instructions where provided. This warranty is in addition to your rights -under the Australian Consumer Law. -Will provide you with your choice of a refund, repair or exchange (where possible) for this product if it -becomes defective within the warranty period. Will bear the reasonable expense of claiming the -warranty. This warranty will no longer apply where the defect is a result of alteration, accident, misuse, abuse -or neglect. -Please retain your receipt as proof of purchase and contact our Customer Service Centre on 1800 124 125 -(Australia) or 0800 945 995 (New Zealand) or alternatively, via Customer Help at com.au for any -difficulties with your product. Warranty claims and claims for expense incurred in returning this product can -be addressed to our Customer Service Centre at 690 Springvale Rd, Mulgrave Vic 3170. -Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are -entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable -loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of -acceptable quality and the failure does not amount to a major failure. -For New Zealand customers, this warranty is in addition to statutory rights observed under New Zealand -legislation. \ No newline at end of file diff --git a/examples/GPT-examples/ironman.py b/examples/GPT-examples/ironman.py deleted file mode 100644 index 026f9a91d..000000000 --- a/examples/GPT-examples/ironman.py +++ /dev/null @@ -1,202 +0,0 @@ -import pandas as pd -from utilities import ( - marqo_prompt, - extract_text_from_highlights, - marqo_template, - get_extra_data, - reformat_npcs -) -from dotenv import load_dotenv -from langchain.llms import OpenAI -from langchain.docstore.document import Document -from langchain.chains import LLMChain - -load_dotenv() - -if __name__ == "__main__": - - ############################################################# - # 0. Install Marqo - ############################################################# - - # run the following docker commands from the terminal to start marqo - # docker rm -f marqo - # docker pull marqoai/marqo:latest - # docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest - - ############################################################# - # 1. Create some data - ############################################################# - - NPCs = [{ - "name": "Sara Lee", - "backstory": "Sara was born in a small village in the mountains. She was always fascinated with nature and as soon as she was old enough, she left her village to study environmental science at a university. She now works as a park ranger.", - "location": "The mountains", - "occupation": "Park ranger", - "family_history": "Sara is an only child and her parents were both farmers. Growing up close to nature instilled in her a deep respect and appreciation for the environment.", - "work_history": "Sara worked as a research assistant for a university before becoming a park ranger.", - "favorite_color": "Yellow", - "hobbies": "Hiking, bird watching, and photography", - "favorite_food": "Fruits and vegetables", - "dislikes": "Loud noises", - }, - { - "name": "Jack Smith", - "backstory": "Jack was born and raised in the city. He has always had a love for cars and as soon as he could he began working on them. He now runs his own successful auto repair shop.", - "location": "The city", - "occupation": "Auto mechanic", - "family_history": "Jack has a younger sister and his father was also a mechanic who ran his own shop.", - "work_history": "Jack worked as a mechanic at several auto repair shops before opening his own business.", - "favorite_color": "Blue", - "hobbies": "Working on cars, fishing, and playing video games", - "favorite_food": "Steak", - "dislikes": "Celery", - }, - { - "name": "Evelyn Parker", - "backstory": "Evelyn grew up in a small town in the countryside. She always had a passion for cooking and eventually moved to the city to attend culinary school. She now works as a chef at a popular restaurant.", - "location": "The city", - "occupation": "Chef", - "family_history": "Evelyn is the youngest of three siblings. Her parents were farmers and instilled in her a love for cooking with fresh ingredients.", - "work_history": "Evelyn worked as a line cook at several restaurants before attending culinary school and becoming a head chef.", - "favorite_color": "Green", - "hobbies": "Cooking, gardening, and reading", - "favorite_food": "Seafood", - "dislikes": "Cilantro", - }] - - df = pd.DataFrame(reformat_npcs(NPCs)) - print(df.head()) - - # make the data python dicts - documents = df.to_dict(orient='records') - - ############################################################# - # 2. Setup Marqo - ############################################################# - - import marqo - from marqo import Client - - marqo.set_log_level('WARN') - - mq = Client() - - index_name = "npc-chat" - - try: - mq.index(index_name).delete() - except: - pass - - index_settings = { - "index_defaults": { - "normalize_embeddings": True, - "text_preprocessing": { - "split_length": 5, - "split_overlap": 1, - "split_method": "sentence" - }, - } - } - - # create the index - if no settings are present then sensible defaults are used - mq.create_index(index_name, settings_dict=index_settings) - res = mq.index(index_name).add_documents(documents, tensor_fields = ["name", "backstory", "location", "occupation", - "family_history", "work_history", "favorite_color", - "hobbies", "favorite_food", "dislikes"]) - - ############################################################# - # 3. Regular NPC superhero - ############################################################# - - # select a character - persona = "Evelyn Parker" - - # we pre-opulate them here to complete a conversation but it can easily be made interactive - human_questions = [ "hi, what is your name?", - "wow, what are some of your favorite things to do?", - "are you scared of anything?", - "where did you grow up?", - "what do you dislike?"] - - history = [] - template = marqo_template() - prompt = marqo_prompt(template) - - # how many pieces of context to use - n_history = 2 - - # setup the LLM API call - llm = OpenAI(temperature=0.9) - - for question in human_questions: - - history.append(f"\nHUMAN:{question}") - print(history[-1]) - - # search for background related to the question - results = mq.index(index_name).search(question, filter_string=f"name:({persona})", searchable_attributes=['text'], limit=20) - - # optionally crop the text to the highlighted region to fit within the context window - highlights, texts = extract_text_from_highlights(results, token_limit=150) - - # add the truncated/cropped text to the data structure for langchain - summaries = [Document(page_content=f"Source [{ind}]:"+t) for ind,t in enumerate(texts[:n_history])] - - # get the conversation history - chain_qa = LLMChain(llm=llm, prompt=prompt) - - llm_results = chain_qa({"summaries": summaries, "conversation": "\n".join(history)}, return_only_outputs=False) - - history.append(llm_results['text']) - print(history[-1]) - - ############################################################# - # 3. IRONMAN - ############################################################# - - persona = "Evelyn Parker" - - # add some more info - extra_docs = [{"text":text, "name":persona} for text in get_extra_data()] - res = mq.index(index_name).add_documents(extra_docs, tensor_fields = ["name", "backstory", "location", "occupation", - "family_history", "work_history", "favorite_color", - "hobbies", "favorite_food", "dislikes"]) - - # we pre-opulate them here to complete a conversation but it can easily be made interactive - human_questions = [ "hi, what is your name?", - "wow, what are some of your favorite things to do?", - "are you scared of anything?", - "where did you grow up?", - "what do you dislike?"] - - history = [] - template = marqo_template() - prompt = marqo_prompt(template) - - # how many pieces of context to use - n_history = 2 - - for question in human_questions: - - history.append(f"\nHUMAN:{question}") - print(history[-1]) - - # search for background related to the question - results = mq.index(index_name).search(question, filter_string=f"name:({persona})", searchable_attributes=['text'], limit=20) - - # optionally crop the text to the highlighted region to fit within the context window - highlights, texts = extract_text_from_highlights(results, token_limit=150) - - # add the truncated/cropped text to the data structure for langchain - summaries = [Document(page_content=f"Source [{ind}]:"+t) for ind,t in enumerate(texts[-n_history:])] - - # get the conversation history - chain_qa = LLMChain(llm=llm, prompt=prompt) - - llm_results = chain_qa({"summaries": summaries, "conversation": "\n".join(history)}, return_only_outputs=False) - - history.append(llm_results['text']) - print(history[-1]) - diff --git a/examples/GPT-examples/product_q_n_a.py b/examples/GPT-examples/product_q_n_a.py deleted file mode 100644 index 72ae2b13c..000000000 --- a/examples/GPT-examples/product_q_n_a.py +++ /dev/null @@ -1,113 +0,0 @@ -from marqo import Client -import pandas as pd -import numpy as np - -from langchain.llms import OpenAI -from langchain.docstore.document import Document -from langchain.chains import LLMChain - -from dotenv import load_dotenv - -from utilities import ( - load_data, - extract_text_from_highlights, - qna_prompt, - predict_ce, - get_sorted_inds -) - -load_dotenv() - -if __name__ == "__main__": - - ############################################################# - # 0. Install Marqo - ############################################################# - - # run the following docker commands from the terminal to start marqo - # docker rm -f marqo - # docker pull marqoai/marqo:latest - # docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest - - - ############################################################# - # 1. Setup Marqo - ############################################################# - - - mq = Client() - index_name = "iron-docs" - - # (optinally) delete if it already exists - try: - mq.index(index_name).delete() - except: - pass - - # we can set some specific settings for the index. if they are not provided, sensible defaults are used - index_settings = { - "index_defaults": { - "model": "flax-sentence-embeddings/all_datasets_v4_MiniLM-L6", - "normalize_embeddings": True, - "text_preprocessing": { - "split_length": 3, - "split_overlap": 1, - "split_method": "sentence" - }, - }, - } - - # create the index with custom settings - mq.create_index(index_name, settings_dict=index_settings) - - - ############################################################# - # 2. Load the data - ############################################################# - - df = load_data() - - # turn the data into a dict for indexing - documents = df.to_dict(orient='records') - - ############################################################# - # 3. Index the data - ############################################################# - - # index the documents - indexing = mq.index(index_name).add_documents(documents, tensor_fields=["cleaned_text"]) - - ############################################################# - # 4. Search the data - ############################################################# - - # try a generic search - q = "what is the rated voltage" - - results = mq.index(index_name).search(q) - print(results['hits'][0]) - - ############################################################# - # 5. Make it chatty - ############################################################# - - highlights, texts = extract_text_from_highlights(results, token_limit=150) - docs = [Document(page_content=f"Source [{ind}]:"+t) for ind,t in enumerate(texts)] - llm = OpenAI(temperature=0.9) - chain_qa = LLMChain(llm=llm, prompt=qna_prompt()) - llm_results = chain_qa({"summaries": docs, "question": results['query']}, return_only_outputs=True) - print(llm_results['text']) - - ############################################################# - # 6. Score the references - ############################################################# - - score_threshold = 0.20 - top_k = 3 - scores = predict_ce(llm_results['text'], texts) - inds = get_sorted_inds(scores) - scores = scores.cpu().numpy() - scores = [np.round(s[0],2) for s in scores] - references = [(str(np.round(scores[i],2)),texts[i]) for i in inds[:top_k] if scores[i] > score_threshold] - df_ref = pd.DataFrame(references, columns=['score','sources']) - print(df_ref) diff --git a/examples/GPT-examples/readme.md b/examples/GPT-examples/readme.md deleted file mode 100644 index 8ca29013f..000000000 --- a/examples/GPT-examples/readme.md +++ /dev/null @@ -1,30 +0,0 @@ -Original article [here](https://www.marqo.ai/blog/from-iron-manual-to-ironman-augmenting-gpt-with-marqo-for-fast-editable-memory-to-enable-context-aware-question-answering). - -# Prerequisites -1. You will need an OpenAI API key. -``` -export OPENAI_API_KEY="..." -``` - -2. Install marqo -```bash -docker pull marqoai/marqo:0.0.12; -docker rm -f marqo; -docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:0.0.12 -pip install marqo -``` - -3. Install other dependencies -``` -pip install -r requirements.txt -``` - -# 1. Product question and answering -```python -python product_q_n_a.py -``` - -# 2. Chat agent with history/NPC -```python -python ironman.py -``` diff --git a/examples/GPT-examples/requirements.txt b/examples/GPT-examples/requirements.txt deleted file mode 100644 index 8bf555a63..000000000 --- a/examples/GPT-examples/requirements.txt +++ /dev/null @@ -1,10 +0,0 @@ -langchain==0.0.141 -marqo -more_itertools==9.1.0 -nltk==3.8.1 -numpy==1.24.2 -pandas==2.0.0 -python-dotenv==1.0.0 -torch==2.0.0 -transformers==4.28.1 -openai==0.27.4 \ No newline at end of file diff --git a/examples/GPT-examples/text.py b/examples/GPT-examples/text.py deleted file mode 100644 index 6ada240ba..000000000 --- a/examples/GPT-examples/text.py +++ /dev/null @@ -1,141 +0,0 @@ -from typing import Any, Dict, List, Optional, Union -from types import FunctionType - -from functools import partial -from more_itertools import windowed - -from nltk.tokenize import sent_tokenize, word_tokenize -import nltk - - -def _splitting_functions(split_by: str, language: str='english') -> FunctionType: - """_summary_ - selects a text splitting function based on the method provided by 'split_by' - Args: - split_by (str): method to split the text by, 'character', 'word', 'sentence', 'passage' - if not one of those allows for custom characters to split on - language (str, optional): _description_. Defaults to 'english'. - Raises: - TypeError: _description_ - Returns: - _type_: function for splitting text based on the method provided - """ - if not isinstance(split_by, str): - raise TypeError(f"expected str received {type(split_by)}") - - try: - nltk.data.find("tokenizers/punkt") - except LookupError: - nltk.download("punkt") - - MAPPING = { - 'character':list, - 'word': partial(word_tokenize, language=language), - 'sentence':partial(sent_tokenize, language=language), - 'passage':lambda x:x.split("\n\n") - } - - if split_by in MAPPING: - return MAPPING[split_by] - - # can also have a custom split but leave that for now - raise KeyError(f"unexpected split_by type of {split_by}") - -def _reconstruct_single_list(segmented_text: List[str], seperator: str = " ") -> str: - """_summary_ - Args: - segmented_text (List[str]): List of strings that were segmented - seperator (str, optional): what to use as a seperator between tokens when re-joining into text. Defaults to " ". - Returns: - str: string of text that was re-joined - """ - return seperator.join([t for t in segmented_text if t is not None]) - -def _reconstruct_multi_list(segmented_text_list: List[List[str]], seperator: str = " ") -> List[str]: - """_summary_ - Args: - segmented_text_list (List[List[str]]): _description_ - seperator (str, optional): _description_. Defaults to " ". - Returns: - List[str]: _description_ - """ - - results = [] - for seg in segmented_text_list: - txt = _reconstruct_single_list(seg, seperator) - if len(txt) > 0: - results.append(txt) - - return results - -def check_make_string_valid(text: str, coerce: bool = True) -> str: - """ does some simple validation and coercsion for empty strings - Args: - text (str): text of type str - coerce (bool, optional): if an empty or None string is passed, return an empty string?. Defaults to True. - Raises: - TypeError: _description_ - Returns: - _type_: something that is a string - """ - empty_string = " " - - if text in [[], None, '', "", empty_string] and coerce: - return empty_string - - if set(text) == set(" "): - return empty_string - - if not isinstance(text, str): - raise TypeError(f"text had type {type(text)} but expected str") - - return text - -def split_text(text: str, split_by: str = 'sentence', split_length: int = 2, split_overlap: int = 1, - language: str = 'english', custom_seperator: str = None) -> List[str]: - """ splits a single piece of text into smaller sub-texts based on splitting method (split_by). - for example, the text can can be split at the character, word, sentence or passage level. - optionally it can be split with a custom splitting string - Args: - text (str): _description_ - split_by (str, optional): _description_. Defaults to 'character'. - split_length (int, optional): _description_. Defaults to 128. - split_overlap (int, optional): _description_. Defaults to 16. - language (str, optional): _description_. Defaults to 'english'. - seperator (str, optional): _description_. Defaults to " ". - Raises: - TypeError: _description_ - Returns: - List[str]: _description_ - """ - - if split_length == 0: - raise ValueError("split length must be > 0") - - # simple validation and correction - text = check_make_string_valid(text, coerce=True) - - # don't split if it is not worth splitting - if len(text) <= 1: - return [text] - - # we need to treat character splitting differently - if custom_seperator is None: - seperator = '' if split_by == 'character' else ' ' - else: - seperator = custom_seperator - - # determine how we want to split - _func = _splitting_functions(split_by, language=language) - - # do the splitting - split_text = _func(text) - - # concatenate individual elements based on split_length & split_stride - segments = list(windowed(split_text, n=split_length, step=split_length - split_overlap)) - - # reconstruct the segments. there is potential for a lossy process here as we - # assume a uniform seperator when reconstructing the sentences - text_splits = _reconstruct_multi_list(segments, seperator) - - return text_splits \ No newline at end of file diff --git a/examples/GPT-examples/utilities.py b/examples/GPT-examples/utilities.py deleted file mode 100644 index 1a31d97b4..000000000 --- a/examples/GPT-examples/utilities.py +++ /dev/null @@ -1,710 +0,0 @@ -import glob -import pandas as pd -from langchain.prompts import PromptTemplate -import re -from text import split_text -from typing import List, Literal -import numpy as np -import torch - -from transformers import ( - AutoTokenizer, - AutoModelForSequenceClassification, - GPT2TokenizerFast -) - -def reformat_npcs(npcs): - """ - helper function to make the data tidy - """ - new_npcs = [] - for npc in npcs: - - # include a name field in each for filtering - name = npc['name'] - - for key,value in npc.items(): - doc = {"name":name, "text":f"my {key} is {value}"} - new_npcs.append(doc) - return new_npcs - -def marqo_template(): - """ - holds the prompt template - """ - template = """The following is a conversation with a fictional superhero in a movie. - BACKGROUND is provided which describes some the history and powers of the superhero. - The conversation should always be consistent with this BACKGROUND. - Continue the conversation as the superhero in the movie and **always** use something from the BACKGROUND. - You are very funny and talkative and **always** talk about your superhero skills in relation to your BACKGROUND. - BACKGROUND: - ========= - {summaries} - ========= - Conversation: - {conversation} - """ - return template - -def marqo_prompt(template = marqo_template()): - """ - thin wrapper for prompt creation - """ - PROMPT = PromptTemplate(template=template, input_variables=["summaries", "conversation"]) - return PROMPT - -def read_md_file(filename): - """ - generic md/txt file reader - """ - with open(filename, 'r') as f: - return f.read() - -def clean_md_text(text): - # Remove code blocks - text = re.sub(r'```.*?```', '', text, flags=re.DOTALL) - - # Remove inline code - text = re.sub(r'`.*?`', '', text) - - # Remove headings - text = re.sub(r'#+.*?\n', '', text) - - # Remove horizontal lines - text = re.sub(r'---*', '', text) - - # Remove links - text = re.sub(r'\[.*?\]\(.*?\)', '', text) - - # Remove emphasis - text = re.sub(r'\*\*.*?\*\*', '', text) - text = re.sub(r'\*.*?\*', '', text) - - # Remove images - text = re.sub(r'!\[.*?\]\(.*?\)', '', text) - - return text - - -def load_all_files(files): - """ - wrapper to load and clean text files - """ - - results = [] - for f in files: - text = read_md_file(f) - splitted_text = split_text(text, split_length=10, split_overlap=3) - cleaned_text = [clean_md_text(_text) for _text in splitted_text] - _files = [f]*(len(cleaned_text)) - - results += list(zip(_files, splitted_text, cleaned_text)) - - return pd.DataFrame(results, columns=['filename', 'text', 'cleaned_text']) - -def load_data(): - """ - wrapper to load all the data files - """ - marqo_docs_directory = 'data/' - files = glob.glob(marqo_docs_directory + 'p*.txt', recursive=True) - files = [f for f in files if not f.startswith('_')] - return load_all_files(files) - -def qna_prompt(): - """ - prompt template for q and a type answering - """ - - template = """Given the following extracted parts of a long document ("SOURCES") and a question ("QUESTION"), create a final answer one paragraph long. - Don't try to make up an answer and use the text in the SOURCES only for the answer. If you don't know the answer, just say that you don't know. - QUESTION: {question} - ========= - SOURCES: - {summaries} - ========= - ANSWER:""" - PROMPT = PromptTemplate(template=template, input_variables=["summaries", "question"]) - return PROMPT - -model_cache = dict() -def load_ce(model_name='cross-encoder/ms-marco-MiniLM-L-6-v2'): - """ - loads the sbert cross-encoder model - """ - - model = AutoModelForSequenceClassification.from_pretrained(model_name) - tokenizer = AutoTokenizer.from_pretrained(model_name) - - return model, tokenizer - -def predict_ce(query, texts, model=None, key='ce'): - """ - score all the queries with respect to the texts - """ - - if model is None: - if key not in model_cache: - model, tokenizer = load_ce() - model_cache[key] = (model, tokenizer) - else: - (model, tokenizer) = model_cache[key] - - # create pairs - softmax = torch.nn.Softmax(dim=0) - N = len(texts) - queries = [query]*N - pairs = list(zip(queries, texts)) - features = tokenizer(pairs, padding=True, truncation=True, return_tensors="pt") - - model.eval() - with torch.no_grad(): - scores = model(**features).logits - - return softmax(scores) - -def get_sorted_inds(scores): - """ - return indexes based on sorted scores - """ - return scores.argsort(0, descending=True) - -def extract_text_from_highlights(res, token_limit=256, truncate=True): - - highlights = [] - texts = [] - for ind,hit in enumerate(res[ResultsFields.hits]): - highlight_dict = hit[ResultsFields.highlights] - highlight_key = list(highlight_dict.keys())[0] - highlight_text = list(highlight_dict.values())[0] - text = hit[highlight_key] - - if truncate: - text = " ".join(text.split()) - highlight_text = " ".join(highlight_text.split()) - text = truncate_text(text, token_limit, highlight_text) - - texts.append(text) - highlights.append(highlight_text) - - return highlights, texts - - -class ResultsFields: - hits = 'hits' - highlights = '_highlights' - -cached_tokenizers = dict() - -def _lies_between(offset_tuple, offset): - """ - given a tuple of ints, determine if offset lies between them - """ - return offset >= offset_tuple[0] and offset < offset_tuple[1] - - -def _find_end_character_mapping(offset_mapping, offset): - """assumes sorted offset_mapping. unless this was modified - this will be the default from the tokenizer - """ - # if the max length is bigger we just return the last index - if offset >= max(offset_mapping[-1]): - return [offset_mapping[-1]] - return [ind for ind in offset_mapping if _lies_between(ind, offset)] - -def find_highlight_index_in_text(text, highlight): - """ - return start and end character indices for the sub-string (highlight) - """ - if highlight not in text: - return (None, None) - - # returns left right - left_ind = text.index(highlight) - right_ind = left_ind + len(highlight) - - return (left_ind, right_ind) - - -def get_token_indices(text: str, token_limit: int, - method: Literal['start', 'end', 'center','offset'] = 'start', - tokenizer = None, - offset: int = None): - - # leave it here instead of a paramter - default_tokenizer = 'gpt2' - - if tokenizer is None: - if default_tokenizer not in cached_tokenizers: - tokenizer = GPT2TokenizerFast.from_pretrained(default_tokenizer) - cached_tokenizers[default_tokenizer] = tokenizer - else: - tokenizer = cached_tokenizers[default_tokenizer] - - tokenized_text = tokenizer(text, return_offsets_mapping=True) - token_ids = tokenized_text['input_ids'] - character_offsets = tokenized_text['offset_mapping'] - text_token_len = len(token_ids) - - # need to get the offset from the start to hit the full size - delta = text_token_len - token_limit - - # nothing to do if it fits already - if delta <= 0: - return [character_offsets[0], character_offsets[-1]] - - # convert offset into token space - character_offset_tuple = _find_end_character_mapping(character_offsets, offset) - token_offset = character_offsets.index(character_offset_tuple[0]) - - is_odd_offset = 1 - if token_limit % 2 == 1: is_odd_offset = 0 - - if method == 'start': - ind_start = character_offsets[0] - ind_end = character_offsets[token_limit-1] - - elif method == 'end': - ind_start = character_offsets[delta] - ind_end = character_offsets[-1] - - elif method == 'center': - center_token = text_token_len//2 - left_ind = max(center_token - token_limit//2, 0) - right_ind = min(center_token + token_limit//2, text_token_len) - ind_start = character_offsets[left_ind] - ind_end = character_offsets[right_ind-is_odd_offset] - - elif method == 'offset': - center_token = token_offset - left_ind = max(center_token - token_limit//2, 0) - right_ind = min(center_token + token_limit//2, text_token_len) - ind_start = character_offsets[left_ind] - ind_end = character_offsets[right_ind-is_odd_offset] - - else: - raise RuntimeError("incorrect method specified") - - return ind_start, ind_end - -def truncate_text(text, token_limit, highlight=None): - """ - truncates text to a token limit centered on the highlight text - """ - - if highlight is None: - method = 'start' - center_ind = 0 # this will not be used for this start method - else: - # TODO the full context may ot get used if the highlight is not centered - # we would need to add the excess to the end/start - - method = 'offset' - # get indices of highlight - inds = find_highlight_index_in_text(text, highlight) - # get the center of the highlight in chars - center_ind = (max(inds) - min(inds))//2 + min(inds) - # now map this to tokens and get the left/right char indices to achieve token limit - - ind_left, ind_right = get_token_indices(text, token_limit, method=method, offset=center_ind) - trunc_text = text[min(ind_left):max(ind_right)] - - return trunc_text - -def check_highlights_field(hit, highlight=ResultsFields.highlights): - """ - check the validity of the highlights in the hit - """ - - if highlight in hit: - if len(hit[highlight]) == 0: - return False - elif isinstance(hit[highlight], dict): - if hit[highlight].values() == 0: - return False - else: - return True - else: - raise RuntimeError("invalid hits and highlights") - else: - return False - - -def test_truncate(): - import random - import string - tokenizer = GPT2TokenizerFast.from_pretrained("gpt2") - - text_en = ['hello this is a test sentence. this is another one? i think so. maybe throw in some more letteryz....xo'] - text_rm = [''.join(random.choices(string.ascii_uppercase + string.digits, k=10000)) for _ in range(10)] - ks = [1, 32, 128, 1024, 2048] - texts = text_en + text_rm - methods = ['offset', 'start', 'end', 'center'] - for text in texts: - k_gt = len(tokenizer(text)['input_ids']) - for k in ks: - for method in methods: - ind_left, ind_right = get_token_indices(text, k, method=method, offset=2) - trunc_text = text[min(ind_left):max(ind_right)] - k_fn = len(tokenizer(trunc_text)['input_ids']) - - assert k_fn <= min(k,k_gt) - - -def test_find_highlight_in_text(): - - n_highlights = 5 - - texts = [ - 'hello how are you', - "I assume you only want to find the first occurrence of word in phrase. If that's the case, just use str.index to get the position of the first character. Then, add len(word) - 1 to it to get the position of the last character.", - ] - - for text in texts: - for _ in range(n_highlights): - highlight_ind = sorted(np.random.choice(list(range(len(text))),2, replace=False)) - highlight = text[highlight_ind[0]:highlight_ind[1]] - inds = find_highlight_index_in_text(text, highlight) - assert text[inds[0]:inds[1]] == highlight - - -def test_check_highlights_field(): - results_lexical = { - 'hits': [ - { - 'Title': 'Extravehicular Mobility Unit (EMU)', - 'Description': 'The EMU is a spacesuit that provides environmental protection, mobility, life support, and' - 'communications for astronauts', - '_highlights': [], - '_id': 'article_591', - '_score': 0.61938936 - }, - { - 'Title': 'The Travels of Marco Polo', - 'Description': "A 13th-century travelogue describing Polo's travels", - '_highlights': [], - '_id': 'e00d1a8d-894c-41a1-8e3b-d8b2a8fce12a', - '_score': 0.60237324 - } - ], - 'limit': 10, - 'processingTimeMs': 49, - 'query': 'What is the best outfit to wear on the moon?' - } - - assert all(not check_highlights_field(hit, highlight=ResultsFields.highlights) for hit in results_lexical[ResultsFields.hits]) - - results_tensor = { - 'hits': [ - { - 'Title': 'Extravehicular Mobility Unit (EMU)', - 'Description': 'The EMU is a spacesuit that provides environmental protection, mobility, life support, and' - 'communications for astronauts', - '_highlights': { - 'Description': 'The EMU is a spacesuit that provides environmental protection, ' - 'mobility, life support, and communications for astronauts' - }, - '_id': 'article_591', - '_score': 0.61938936 - }, - { - 'Title': 'The Travels of Marco Polo', - 'Description': "A 13th-century travelogue describing Polo's travels", - '_highlights': {'Title': 'The Travels of Marco Polo'}, - '_id': 'e00d1a8d-894c-41a1-8e3b-d8b2a8fce12a', - '_score': 0.60237324 - } - ], - 'limit': 10, - 'processingTimeMs': 49, - 'query': 'What is the best outfit to wear on the moon?' - } - - assert all(check_highlights_field(hit, highlight=ResultsFields.highlights) for hit in results_tensor[ResultsFields.hits]) - - -def get_extra_data(): - """ - the extra data for the NPC's - """ - text1 = """ - - IMPORTANT SAFETY INSTRUCTIONS - Read this user manual carefully before first use and - save it for future reference. - This appliance is not intended for use by persons - (including children) with reduced physical, sensory - or mental capabilities or lack of experience and - knowledge, unless they have been given supervision - or instructions concerning use of the appliance by a - person responsible for their safety. - Children should be supervised to ensure that they do - not play with the appliance. - Cleaning and user maintenance shall not be made by - children without supervision. - This product has been designed for domestic use - only. In case of any commercial use, inappropriate - use or failure to comply with the instructions, the - will not apply. - manufacturer is not responsible, and the guarantee - Before connecting your appliance, check if the mains - voltage is the same as the voltage indicated on your - appliance and that the power outlet has an earth - connection. If unsure check with an electrician. - Ensure before each use that the supply cord or any - other parts are not damaged. - Keep the iron and its cord out of reach of children - when connected to mains power or cooling down. - Never direct the steam towards persons or animals. - Never direct the steam jet towards any other - electrical or/and electronic appliances. - DO NOT use the iron if it has been dropped, if there - are visible signs of damage, malfunction or if it is - leaking water. - """ - - text2 = """ - - unplugged and cooled any - Always down before doing - make sure the appliance is switched off, - maintenance work. - IMPORTANT! This iron must not be left unattended - while it is connected to mains power and before it - has cooled down. The soleplate of the iron can - become extremely hot and may cause burns if - touched. - Do not unplug the appliance by pulling on the cord - or on the appliance. - Never immerse the iron, the stand, the power cord - or the plug in water. Never hold them under a water - tap. - Do not allow the supply cord to come in contact with - the soleplate when the iron is hot. - If the supply cord is damaged, it must be replaced by - qualified electrical person only or the product must - be disposed. - Disconnect from mains power when filling the - reservoir in the iron with water. - The iron must be used and rested on a flat, stable - surface. - Always place and operate the iron on a flat, solid, - clean and dry surface. When placing the iron on its - stand, ensure that the surface on which the stand is - placed is stable. - For additional protection, this appliance should be - connected to a household residual current device - (safety switch) with a rating of no more than 30mA. - If unsure consult an electrician for advice. - - """ - - text3 = """ - BEFORE FIRST USE - Unpack the appliance and check if all parts are there - and undamaged. Should this not be the case, return the - product to Kmart for replacement. - The packaging contains: - One steam iron - One filler cup - Clean all parts before first use. See Cleaning and - Maintenance - Heat up the iron to its maximum temperature and iron - over a piece of damp cloth for several minutes. This will - burn-off any manufacturing residue from the iron. - Smoke and odour may occur for a short period during - this process, which is normal. - FEATURES - Your iron has an Anti-Drip system, Anti-Scales system - and Auto-Off function. - Anti-Drip system: This is to prevent water from escaping - from the soleplate when the iron is cold. During use, the - anti-drip system may emit a loud 'clicking' sound, - particularly when heating up or cooling down. This is - normal and indicates that the system is functioning - correctly. - Anti-Scale system: The built-in anti-scale cartridge is - designed to reduce the build-up of lime scale which - occurs during steam ironing and will prolong the - working life of your iron. The anti-calc cartridge is an - integral part of the water tank and does not need to be - replaced. - Auto-Off function: This feature automatically switches - off the steam iron if it has not been moved for a while. - """ - - text4 = """ - - PARTS - D - C - B - A - A - Soleplate - E - Spray button - B - Spray nozzle - F - Steam shot button - C - Water filling inlet - G - Cord bushing - D - Variable steam - H - Indicator lamp - button - I - Temperature dial - - OPERATION - Filling the water tank - Ensure that the iron is cold and not connected to a - power supply. - Open the water filling cover (C). Hold the iron in a - tilted position and fill the tank with plain water, - using the filler cup. - DO NOT exceed the max level on the tank. - Close the water filling cover (C) by pressing down the - cap until you hear a 'click'. To avoid water spillage, - ensure that the water tank is properly closed. - NOTES: - To avoid calcium deposits, we recommend you use - distilled water for your steam iron. - To avoid damage or blockage of your steam iron, do not - use any scented water or additives. - Steam Ironing - Your steam iron is equipped with the Eco Steam System. - This function offers 3 steam levels for optimal ironing: - ECO: Reduced amount of steam for energy saving, - suitable for most fabric types - Normal steam :suitable for most fabric types - Power steam :increased steam output for remove - stubborn creases - Fill the water tank with plain water. - Position the iron vertically on its stand on a suitable - flat stable surface. - - """ - - text5 = """ - - CLEANING AND MAINTENANCE - Unplug the iron from mains power and allow it to cool - completely before cleaning and storing. - down - Cleaning - Clean the upper part of iron with a damp cloth. If - necessary, use a mild detergent. - Do not use alcohol, acetone, benzene, scourging - cleaning agents, etc., to clean the iron. Do not use - hard brushes or metallic objects. - Remove any deposits on the soleplate with a damp - cloth. To avoid scratching the finishing, never use - metallic pad to clean the soleplate, and never place - the iron on a rough surface. - To remove synthetic residue from the soleplate, iron - over an old cotton rag in high setting. - Always store the emptied iron horizontally on a - stable surface with a cloth protecting the soleplate. - Self-clean function - The self-cleaning function should be used on a regular - basis, depending on usage and the hardness of water - used. - WARNING: Never pour white vinegar or any liquid - cleaners into the water tank! - Fill the water tank. Refer to OPERATION: Filling the - water tank. - Position the iron vertically on its stand on a suitable - surface. - Ensure that the steam control (D) is in OFF position. - Connect the plug to a suitable mains power outlet. - Set to maximum ironing temperature. - Once the soleplate temperature is reached, unplug - the iron from mains power. - Hold the iron over a sink (away from your body), - pressand hold the steam control (D) at "CALC CLEAN" - position. Boiling water and steam will now emit from - the holes in soleplate. - Carefully shake the iron forwards and backwards to - allow any scale and other deposits being expelled - with the boiling water and the steam. - Release the CALC CLEAN button when the water tank - is empty. - Plug the appliance into a mains power outlet socket, - set a temperature and leave in operation for at least - two minutes to dry the soleplate. - Unplug the iron and let the iron cool down fully. - """ - - text6 = """ - - - IRONING TIPS - IMPORTANT! always check whether a label with ironing instructions is attached to the garment. Always - follow the ironing instructions attached to the garment. - The iron heats up quicker than it cools down, therefore, you should start ironing the articles requiring the - lowest temperature such as those made of synthetic fibre. - If the fabric consists of various kinds of fibres, you must always select the lowest ironing temperature to - iron the composition of those fibres. - Silk and other fabrics that are likely to become shiny should always be ironed on the inner side. To prevent - staining, do not spray water straight on silk or other delicate fabrics. - To prevent staining, do not spray water straight on silk or other delicate fabrics. - Velvet and other textures that rapidly become shiny should be ironed in one direction with light pressure - applied. Always keep the iron moving at any moment. - Pure wool fabrics (100% wool) may be ironed with the iron set to steam position. Preferably set steam - button to the maximum position and use a dry cloth between the garment and the iron for protection. - Do not touch plastic buttons with a hot iron because they may melt. - Be careful around zippers and similar items to prevent the soleplate from scratching. - Symbol - Temperature setting - Variable steam - Steam shot - Spray - Fabric - MIN - x - x - Synthetic fiber - x - x - Wool, Silk - Cotton, Linen - MAX - possible - x - Attention! This symbol indicates: DO NOT IRON! - not possible - TECHNICAL DATA - Rated voltage: 220-240V~ 50-60Hz - Rate power: 2000-2400W - """ - - text7 = """ - - 12 Month Warranty - Thank you for your purchase from Kmart. - Kmart Australia Ltd warrants your new product to be free from defects in materials and workmanship for the - period stated above, from the date of purchase, provided that the product is used in accordance with - accompanying recommendations or instructions where provided. This warranty is in addition to your rights - under the Australian Consumer Law. - Kmart will provide you with your choice of a refund, repair or exchange (where possible) for this product if it - becomes defective within the warranty period. Kmart will bear the reasonable expense of claiming the - warranty. This warranty will no longer apply where the defect is a result of alteration, accident, misuse, abuse - or neglect. - Please retain your receipt as proof of purchase and contact our Customer Service Centre on 1800 124 125 - (Australia) or 0800 945 995 (New Zealand) or alternatively, via Customer Help at Kmart.com.au for any - difficulties with your product. Warranty claims and claims for expense incurred in returning this product can - be addressed to our Customer Service Centre at 690 Springvale Rd, Mulgrave Vic 3170. - Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are - entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable - loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of - acceptable quality and the failure does not amount to a major failure. - For New Zealand customers, this warranty is in addition to statutory rights observed under New Zealand - legislation. - """ - - return [text1, text2, text3, text4, text5, text6, text7] \ No newline at end of file diff --git a/examples/GPT3NewsSummary/.gitignore b/examples/GPT3NewsSummary/.gitignore deleted file mode 100644 index 96194bb2a..000000000 --- a/examples/GPT3NewsSummary/.gitignore +++ /dev/null @@ -1,132 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -pip-wheel-metadata/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -.python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -.idea -data/* \ No newline at end of file diff --git a/examples/GPT3NewsSummary/README.md b/examples/GPT3NewsSummary/README.md deleted file mode 100644 index 039e9b342..000000000 --- a/examples/GPT3NewsSummary/README.md +++ /dev/null @@ -1,123 +0,0 @@ -# Using Marqo to power topical news summarisation - -## Who am I? - -My name is Iain Mackie and I lead NLP investments at Creator Fund and previously worked in Quant trading. I am currently finishing my PhD in neural search systems at the University of Glasgow and recently won the $500k grand prize at the Alexa TaskBot Challenge.🤖 - -Given my passion for startups and NLP...I could not be happier to announce that Creator Fund has led a £660,000 Pre-Seed investment into Marqo. Marqo allows search engines to think like humans through neural search. The Melbourne-based company is led by two senior engineers from Amazon Robotics and Australia. - -## What is neural search? - -Search, or information retrieval, is the study of retrieving relevant information given a user query. The most obvious example is Google, where a user inputs a query and Google will return a ranked list of web documents. Search is complex because: -- - -Marqo's open-source Github Github has reached 1.1k+ 🌟 in 6 weeks (top 10 trending libraries!). They have also launched the cloud beta that allows customers to pay-per-query and reduces costs due to pooled resources (join waiting list). Lastly, they are building a community of search enthusiasts tackling different problems (Slack). - -## Topical news summarisation - -Now for the fun bit... - -I wanted to build a fun search application within minutes to show the ease and power of Marqo. I decided to build a news summarisation application, i.e. answer questions like "What is happening in business today?" that synthesises example news corpus (link). - -The plan is to use Marqo's search to provide useful context for a generation algorithm; we use OpenAI's GPT3 API (link). This is more formally called "retrieval-augmented generation" and helps with generation tasks that require specific knowledge that the model has not seen during training. For example, company-specific documents and news data that's "in the future". Overview of what we're planning: - -
- - -Thus, we can see the problem when we solely ask GPT3, "What is happening in business today?" It does not know and thus generates a generic response: -``` -Question: What is happening in business today? - -Answer: -There is a lot happening in business today. The economy is slowly recovering from the recession, and businesses are starting to invest again... -``` -In fact, anyone following the financial markets knows 'the "economy is slowly recovering" and "businesses are starting to invest again" is completely wrong!! - -To solve this, we need to start our Marqo docker container, which creates a Python API we'll interact with during this demo: -``` -docker pull marqoai/marqo:latest; -docker rm -f marqo; -docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest -``` - -Next, let's look at our example news documents corpus, which contains BBC and Reuters news content from 8th and 9th of November. We use "_id" as Marqo document identifier, the "date" the article was written, "website" indicating the web domain, "Title" for the headline, and "Description" for the article body: -``` -[ -{ - '_id': '2', - 'date': '2022-11-09', - 'website': 'www.bbc.co.uk', - 'Title': 'COP27: Time to pay the climate bill - vulnerable nations', - 'Description': 'Leaders of countries flooded or parched due to climate change are pleading at the COP27 summit...' -},... -] -``` - -We then index our news documents that manage both the lexical and neural embeddings. By default, Marqo uses SBERT from neural text embeding and has complete OpenSearch lexical and metadata functionality natively. -``` -from news import MARQO_DOCUMENTS - -DOC_INDEX_NAME = ''news-index' - -print('Establishing connection to marqo client.') -mq = marqo.Client(url='http://localhost:8882') - -print('creating a Marqo index') -mq.create_index(DOC_INDEX_NAME) - -print('Indexing documents') -mq.index(DOC_INDEX_NAME).add_documents(MARQO_DOCUMENTS, tensor_fields= ["Title", "Description"]) -``` - -Now we have indexed our news documents, we can simply use Marqo Python search API to return relevant context for our GPT3 generation. For query "q", we use the question and want to match news context based on the "Title" and "Description" text. We also want to filter our documents for "today", which was '2022-11-09'. -``` -question = 'What is happening in business today?' -date = '2022-11-09' -results = mq.index(DOC_INDEX_NAME).search( - q=question, - searchable_attributes=['Title', 'Description'], - filter_string=f"date:{date}" - limit=5) -``` - -Next, we insert Marqo's search results into GPT3 prompt as context, and we try generating an answer again:: -``` -Background: -Source 0) M&S warns of 'gathering storm' as shoppers squeezed || Marks and Spencer has warned of a "gathering storm" of higher costs for retailers and pressure on household budgets as it reported a fall in profits for the first half of the year. The High Street giant said trading would become "more challenging" after it revealed its profits dropped by 24%. It said "all parts" of retail would be affected... -Source 1) Facebook-owner Meta to cut 11,000 staff || Meta, which owns Facebook, Instagram and WhatsApp, has announced that it will cut 13% of its workforce. The first mass lay-offs in the firm's history will result in 11,000 employees, from a worldwide headcount of 87,000, losing their jobs. Meta chief executive Mark Zuckerberg said the cuts were "the most difficult changes we've made in Meta's history". The news follows... -Source 2) Allianz beats quarterly profit expectations, posts rosier 2022 outlook || German insurer Allianz on Wednesday posted a better-than-expected 17% rise in third-quarter net profit, helped by strength at its property and casualty division, and gave a more optimistic full-year outlook.... -Source 3) Georgia race goes to run-off as fight for US Senate neck-and-neck || Results are being declared in the US midterm elections, with control of Congress hanging in the balance. Republicans are likely to take control of the House of Representatives but the Senate fight is on a knife-edge. The race for the Senate seat in Georgia, which could determine the outcome, will not be decided until a runoff election on 6 December.... -Source 4) Tesla stock hits 2-year low after Musk sells $4 bln worth of shares || Tesla Inc (TSLA.O) shares slid to their lowest level in nearly two years on Wednesday after Chief Executive Elon Musk sold $3.95 billion worth of shares in the electric-vehicle maker. The shares were down 6.1% at $179.66 in afternoon trading. Musk's latest share sale fueled jitters about the fallout of his Twitter buy on the world's most valuable automaker, analysts... - - -Question: What is happening in business today? - -Answer: -There are a few major stories happening in business today. Firstly, Marks and Spencer has warned of a "gathering storm" of higher costs for retailers and pressure on household budgets. Secondly, Facebook-owner Meta is cutting 11,000 staff in its first mass lay-offs. And finally, Tesla stock has hit a 2-year low after CEO Elon Musk sold $4 billion worth of shares. -``` - -Sucess! You'll notice that using Marqo to add relevant and temporally correct context means we can build a news summarisation application with ease. So instead of wrong and vague answers, we get factually-grounded summaries based on retrieved facts such as: -
- -
- -[Marqo](https://www.marqo.ai/) is an open-source tensor-based search engine that supports multi-modal search. In this article, we will -introduce how to set up your own text-to-image search engine using marqo. The full code is available on Marqo's github [Github](imagesearchguide.ipynb). - -## Set up - -### Install marqo -In this article, we select 5 images from the [coco dataset](https://cocodataset.org/#home) as examples. -- - - - - -
- -First, we need to run marqo in Docker using the following command. This test is done on a x64 linux machine, for Mac users with M-series chips -please check [here](https://github.com/marqo-ai/marqo#m-series-mac-users). - -``` -docker rm -f marqo -docker pull marqoai/marqo:0.0.10 -docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:0.0.10 -``` - -Now, we can create a new environment and install the Marqo client by: -``` -conda create -n marqo-client python=3.8 -conda activate marqo-client - -pip install marqo matplotlib -``` -Open Python and check the installation is successful by: -```python -import marqo -mq = marqo.Client("http://localhost:8882") - -mq.get_marqo() -``` -and you should have the output as: -```python -{'message': 'Welcome to Marqo', 'version': '0.0.10'} -``` -At the time this article is written, we are using marqo with version 0.0.10. - -### Download images - -Now, you can download our examples images from [Github](./data). You should have the following directory diagram: - -- -
- - -Done, you have finished all the set-up, let's do the real search! - -## Search with marqo - -### Create index - -First, we need to create a marqo index that provides you the access to all the necessary operations, e.g., indexing, searching. You can choose different models and parameters here. -In this case, we just use a very basic setting by specifying the model ,enabling image search, and leaving others as default. - -```python -index_name = 'image-search-guide' - -settings = { - "model": "ViT-L/14", - "treat_urls_and_pointers_as_images": True, - } - -mq.create_index(index_name, **settings) -``` -__Note__: To accomplish this multi-modal search task, we __MUST__ set `"treat_urls_and_pointers_as_imges": True` to enable the multi-modal search feature. As for the `model`, we need to -select a model from [__CLIP families__](https://docs.marqo.ai/0.0.10/Models-Reference/dense_retrieval/) (`"ViT-L/14"` in this case). - -### Access local images -Now, we need to add the images to the created index, which is a little tricky. Marqo is running in the docker, so it will not be able to access -the local images. -One solution is to upload all the images to Github and access them through urls. This is OK in this case as we only have 5 images. However, if we think big, -are you really going to upload and download 1 million images with a larger dataset? I guess the answer is __NO__, so here is the solution. - -We can put the local images in a docker server for easier access from marqo in dock by -```python -import subprocess -local_dir = "./data" -pid = subprocess.Popen(['python3', '-m', 'http.server', '8222', '--directory', local_dir], stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT) -``` - -With this step, marqo can access you image easily using http request, we just need to tell marqo where the image is: -```python -import glob -import os - -# Find all the local images -locators = glob.glob(local_dir + '*.jpg') - -# Generate docker path for local images -docker_path = "http://host.docker.internal:8222/" -image_docker = [docker_path + os.path.basename(f) for f in locators] - -print(image_docker) -``` -```python -output: -['http://host.docker.internal:8222/image4.jpg', - 'http://host.docker.internal:8222/image1.jpg', - 'http://host.docker.internal:8222/image3.jpg', - 'http://host.docker.internal:8222/image0.jpg', - 'http://host.docker.internal:8222/image2.jpg'] -``` - -All the local image are on a docker server for marqo to access now. - -### Add images to index - -Marqo requires the input (which we call `documents`) as a `list` of `dictionary`, we can convert the images into the required format - -```python -documents = [{"image_docker" : image, "_id" : idx} for idx, image in enumerate(image_docker)] - -print(documents) -``` -```python -output: -[{'image_docker': 'http://host.docker.internal:8222/image4.jpg', '_id': '0'}, - {'image_docker': 'http://host.docker.internal:8222/image1.jpg', '_id': '1'}, - {'image_docker': 'http://host.docker.internal:8222/image3.jpg', '_id': '2'}, - {'image_docker': 'http://host.docker.internal:8222/image0.jpg', '_id': '3'}, - {'image_docker': 'http://host.docker.internal:8222/image2.jpg', '_id': '4'}] -``` - -Add the documents into the previously created index using function `add_documents()` -```python -mq.index(index_name).add_documents(documents, tensor_fields=["image_docker"], device="cpu", client_batch_size= 1) -``` -```python -outputs: -2022-12-30 04:27:45,846 logger:'marqo' INFO add_documents pre-processing: took 0.000s for 5 docs, for an average of 0.000s per doc. -2022-12-30 04:27:45,848 logger:'marqo' INFO starting batch ingestion with batch size 1 -2022-12-30 04:27:47,130 logger:'marqo' INFO add_documents batch 0 roundtrip: took 1.281s to add 1 docs, for an average of 1.281s per doc. -2022-12-30 04:27:47,131 logger:'marqo' INFO add_documents batch 0 Marqo processing: took 1.275s for Marqo to process & index 1 docs (server unbatched), for an average of 1.275s per doc. -2022-12-30 04:27:48,182 logger:'marqo' INFO add_documents batch 1 roundtrip: took 1.050s to add 1 docs, for an average of 1.050s per doc. -2022-12-30 04:27:48,183 logger:'marqo' INFO add_documents batch 1 Marqo processing: took 1.045s for Marqo to process & index 1 docs (server unbatched), for an average of 1.045s per doc. -2022-12-30 04:27:49,255 logger:'marqo' INFO add_documents batch 2 roundtrip: took 1.070s to add 1 docs, for an average of 1.070s per doc. -2022-12-30 04:27:49,256 logger:'marqo' INFO add_documents batch 2 Marqo processing: took 1.064s for Marqo to process & index 1 docs (server unbatched), for an average of 1.064s per doc. -2022-12-30 04:27:50,386 logger:'marqo' INFO add_documents batch 3 roundtrip: took 1.129s to add 1 docs, for an average of 1.129s per doc. -2022-12-30 04:27:50,388 logger:'marqo' INFO add_documents batch 3 Marqo processing: took 1.117s for Marqo to process & index 1 docs (server unbatched), for an average of 1.117s per doc. -2022-12-30 04:27:51,462 logger:'marqo' INFO add_documents batch 4 roundtrip: took 1.073s to add 1 docs, for an average of 1.073s per doc. -2022-12-30 04:27:51,463 logger:'marqo' INFO add_documents batch 4 Marqo processing: took 1.067s for Marqo to process & index 1 docs (server unbatched), for an average of 1.067s per doc. -2022-12-30 04:27:51,573 logger:'marqo' INFO completed batch ingestion. -2022-12-30 04:27:51,575 logger:'marqo' INFO add_documents completed. total time taken: 5.729s. -``` -Yes, it is just this simple one line of code. And you can check the outputs for the indexing time. If you have CUDA GPU available, and want to speed up indexing, follow [this guide](https://docs.marqo.ai/0.0.10/using_marqo_with_a_gpu/) to enable CUDA on Marqo, and set `device="cuda"` in the `add_documents` call. - -Done, all the images are in Marqo and now we can search. - - -### Search -Finally, let us search and see the returned the results. - -Let's say we want to get the image "*A rider on a horse jumping over the barrier*". Here is the code. -```python -search_results = mq.index(index_name).search("A rider on a horse jumping over the barrier", - searchable_attributes=['image_docker'], limit = 1, - device='cpu') -``` -```python -output: -2022-12-30 04:28:56,472 logger:'marqo' INFO search (tensor): took 0.364s to send query and received 1 results from Marqo (roundtrip). Marqo itself took 0.358s to execute the search. -``` -Done, we get the result in just 0.36s without the help of GPU! So what do the results look like, then? -```python -print(search_results) -``` -```python -output: -{'hits': [{'image_docker': 'http://host.docker.internal:8222/image1.jpg', - '_id': '1', - '_highlights': {'image_docker': 'http://host.docker.internal:8222/image1.jpg'}, - '_score': 0.6133688}], - 'processingTimeMs': 358, - 'query': 'A rider on a horse jumping over the barrier', - 'limit': 1} -``` -Well, very hard to understand? Don't worry, let's plot it and verify it with your eyes: -```python -import requests -from PIL import Image - -fig_path = search_results["hits"][0]["image_docker"].replace(docker_path, local_dir) -display(Image.open(fig_path)) -``` -output: -- -
- -Isn't this the image you are look for, "*A rider on a horse jumping over the barrier*"? Searching image using text is just so simple. -You must be thinking this is 5 images. What will happen in a larger dataset? -Why not try it yourself, you can easily __change the parameters in the code__, __add more images into the directory__, and __test your searching results__. -You can also check other advanced usages in our [Github](https://github.com/marqo-ai/marqo). - -## Take aways - -It is really easy to use marqo to achieve multi-modal searching, e.g., image-to-text, text-to-image, image-to-image, with the following steps: - -1. Environment setup: `conda`, `pip` -2. Create index: `create_index()` -3. Add documents into the index: `add_documents()` -4. Search: `index().search()` - diff --git a/examples/ImageSearchGuide/asset/directory_diagram.png b/examples/ImageSearchGuide/asset/directory_diagram.png deleted file mode 100644 index 59562166c..000000000 Binary files a/examples/ImageSearchGuide/asset/directory_diagram.png and /dev/null differ diff --git a/examples/ImageSearchGuide/asset/example.png b/examples/ImageSearchGuide/asset/example.png deleted file mode 100644 index fa9aa96d1..000000000 Binary files a/examples/ImageSearchGuide/asset/example.png and /dev/null differ diff --git a/examples/ImageSearchGuide/asset/result.png b/examples/ImageSearchGuide/asset/result.png deleted file mode 100644 index 0f689d452..000000000 Binary files a/examples/ImageSearchGuide/asset/result.png and /dev/null differ diff --git a/examples/ImageSearchGuide/data/image0.jpg b/examples/ImageSearchGuide/data/image0.jpg deleted file mode 100644 index ac68a88e5..000000000 Binary files a/examples/ImageSearchGuide/data/image0.jpg and /dev/null differ diff --git a/examples/ImageSearchGuide/data/image1.jpg b/examples/ImageSearchGuide/data/image1.jpg deleted file mode 100644 index 9f4340235..000000000 Binary files a/examples/ImageSearchGuide/data/image1.jpg and /dev/null differ diff --git a/examples/ImageSearchGuide/data/image2.jpg b/examples/ImageSearchGuide/data/image2.jpg deleted file mode 100644 index 3d512b9a8..000000000 Binary files a/examples/ImageSearchGuide/data/image2.jpg and /dev/null differ diff --git a/examples/ImageSearchGuide/data/image3.jpg b/examples/ImageSearchGuide/data/image3.jpg deleted file mode 100644 index 6e87a5254..000000000 Binary files a/examples/ImageSearchGuide/data/image3.jpg and /dev/null differ diff --git a/examples/ImageSearchGuide/data/image4.jpg b/examples/ImageSearchGuide/data/image4.jpg deleted file mode 100644 index a01cd65ed..000000000 Binary files a/examples/ImageSearchGuide/data/image4.jpg and /dev/null differ diff --git a/examples/ImageSearchGuide/imagesearchguide.ipynb b/examples/ImageSearchGuide/imagesearchguide.ipynb deleted file mode 100644 index ff21cd8fc..000000000 --- a/examples/ImageSearchGuide/imagesearchguide.ipynb +++ /dev/null @@ -1,361 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "907d6f05", - "metadata": {}, - "source": [ - "# How to implement text-to-image search on Marqo - in 5 lines of code" - ] - }, - { - "cell_type": "markdown", - "id": "033a1024", - "metadata": {}, - "source": [ - "### Create index" - ] - }, - { - "cell_type": "code", - "execution_count": 79, - "id": "5dd4df74", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'message': 'Welcome to Marqo', 'version': '0.0.10'}" - ] - }, - "execution_count": 79, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import marqo\n", - "mq = marqo.Client(\"http://localhost:8882\")\n", - "\n", - "mq.get_marqo()" - ] - }, - { - "cell_type": "code", - "execution_count": 80, - "id": "8e169d5b", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'acknowledged': True,\n", - " 'shards_acknowledged': True,\n", - " 'index': 'image-search-guide'}" - ] - }, - "execution_count": 80, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "index_name = 'image-search-guide'\n", - "\n", - "settings = {\n", - " \"model\": \"ViT-L/14\",\n", - " \"treat_urls_and_pointers_as_images\": True,\n", - " }\n", - "\n", - "mq.create_index(index_name, **settings)" - ] - }, - { - "cell_type": "markdown", - "id": "7c8d9be2", - "metadata": {}, - "source": [ - "### Add image into index" - ] - }, - { - "cell_type": "code", - "execution_count": 81, - "id": "c434fd6a", - "metadata": {}, - "outputs": [], - "source": [ - "import subprocess\n", - "local_dir = \"./data/\"\n", - "pid = subprocess.Popen(['python3', '-m', 'http.server', '8222', '--directory', local_dir], stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)" - ] - }, - { - "cell_type": "code", - "execution_count": 108, - "id": "271c9531", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['http://host.docker.internal:8222/image4.jpg', 'http://host.docker.internal:8222/image1.jpg', 'http://host.docker.internal:8222/image3.jpg', 'http://host.docker.internal:8222/image0.jpg', 'http://host.docker.internal:8222/image2.jpg']\n" - ] - } - ], - "source": [ - "import glob\n", - "import os\n", - "\n", - "# Find all the local images\n", - "locators = glob.glob(local_dir + '*.jpg')\n", - "\n", - "# Generate docker path for local images\n", - "docker_path = \"http://host.docker.internal:8222/\"\n", - "image_docker = [docker_path + os.path.basename(f) for f in locators]\n", - "\n", - "print(image_docker)" - ] - }, - { - "cell_type": "code", - "execution_count": 109, - "id": "cc01ad0f", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['http://host.docker.internal:8222/image4.jpg',\n", - " 'http://host.docker.internal:8222/image1.jpg',\n", - " 'http://host.docker.internal:8222/image3.jpg',\n", - " 'http://host.docker.internal:8222/image0.jpg',\n", - " 'http://host.docker.internal:8222/image2.jpg']" - ] - }, - "execution_count": 109, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "image_docker" - ] - }, - { - "cell_type": "code", - "execution_count": 96, - "id": "6b718830", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[{'image_docker': 'http://host.docker.internal:8222/image4.jpg', '_id': '0'}, {'image_docker': 'http://host.docker.internal:8222/image1.jpg', '_id': '1'}, {'image_docker': 'http://host.docker.internal:8222/image3.jpg', '_id': '2'}, {'image_docker': 'http://host.docker.internal:8222/image0.jpg', '_id': '3'}, {'image_docker': 'http://host.docker.internal:8222/image2.jpg', '_id': '4'}]\n" - ] - } - ], - "source": [ - "documents = [{\"image_docker\" : image, \"_id\" : str(idx)} for idx, image in enumerate(image_docker)]\n", - "\n", - "print(documents)" - ] - }, - { - "cell_type": "code", - "execution_count": 97, - "id": "f8b4d6c4", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[{'image_docker': 'http://host.docker.internal:8222/image4.jpg', '_id': '0'},\n", - " {'image_docker': 'http://host.docker.internal:8222/image1.jpg', '_id': '1'},\n", - " {'image_docker': 'http://host.docker.internal:8222/image3.jpg', '_id': '2'},\n", - " {'image_docker': 'http://host.docker.internal:8222/image0.jpg', '_id': '3'},\n", - " {'image_docker': 'http://host.docker.internal:8222/image2.jpg', '_id': '4'}]" - ] - }, - "execution_count": 97, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "documents" - ] - }, - { - "cell_type": "code", - "execution_count": 98, - "id": "223002e7", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2022-12-30 04:27:45,846 logger:'marqo' INFO add_documents pre-processing: took 0.000s for 5 docs, for an average of 0.000s per doc.\n", - "2022-12-30 04:27:45,848 logger:'marqo' INFO starting batch ingestion with batch size 1\n", - "2022-12-30 04:27:47,130 logger:'marqo' INFO add_documents batch 0 roundtrip: took 1.281s to add 1 docs, for an average of 1.281s per doc.\n", - "2022-12-30 04:27:47,131 logger:'marqo' INFO add_documents batch 0 Marqo processing: took 1.275s for Marqo to process & index 1 docs (server unbatched), for an average of 1.275s per doc.\n", - "2022-12-30 04:27:48,182 logger:'marqo' INFO add_documents batch 1 roundtrip: took 1.050s to add 1 docs, for an average of 1.050s per doc.\n", - "2022-12-30 04:27:48,183 logger:'marqo' INFO add_documents batch 1 Marqo processing: took 1.045s for Marqo to process & index 1 docs (server unbatched), for an average of 1.045s per doc.\n", - "2022-12-30 04:27:49,255 logger:'marqo' INFO add_documents batch 2 roundtrip: took 1.070s to add 1 docs, for an average of 1.070s per doc.\n", - "2022-12-30 04:27:49,256 logger:'marqo' INFO add_documents batch 2 Marqo processing: took 1.064s for Marqo to process & index 1 docs (server unbatched), for an average of 1.064s per doc.\n", - "2022-12-30 04:27:50,386 logger:'marqo' INFO add_documents batch 3 roundtrip: took 1.129s to add 1 docs, for an average of 1.129s per doc.\n", - "2022-12-30 04:27:50,388 logger:'marqo' INFO add_documents batch 3 Marqo processing: took 1.117s for Marqo to process & index 1 docs (server unbatched), for an average of 1.117s per doc.\n", - "2022-12-30 04:27:51,462 logger:'marqo' INFO add_documents batch 4 roundtrip: took 1.073s to add 1 docs, for an average of 1.073s per doc.\n", - "2022-12-30 04:27:51,463 logger:'marqo' INFO add_documents batch 4 Marqo processing: took 1.067s for Marqo to process & index 1 docs (server unbatched), for an average of 1.067s per doc.\n", - "2022-12-30 04:27:51,573 logger:'marqo' INFO completed batch ingestion.\n", - "2022-12-30 04:27:51,575 logger:'marqo' INFO add_documents completed. total time taken: 5.729s.\n" - ] - }, - { - "data": { - "text/plain": [ - "[{'errors': False,\n", - " 'processingTimeMs': 1275.352,\n", - " 'index_name': 'image-search-guide',\n", - " 'items': [{'_id': '0', 'result': 'created', 'status': 201}]},\n", - " {'errors': False,\n", - " 'processingTimeMs': 1045.022,\n", - " 'index_name': 'image-search-guide',\n", - " 'items': [{'_id': '1', 'result': 'created', 'status': 201}]},\n", - " {'errors': False,\n", - " 'processingTimeMs': 1064.125,\n", - " 'index_name': 'image-search-guide',\n", - " 'items': [{'_id': '2', 'result': 'created', 'status': 201}]},\n", - " {'errors': False,\n", - " 'processingTimeMs': 1116.58,\n", - " 'index_name': 'image-search-guide',\n", - " 'items': [{'_id': '3', 'result': 'created', 'status': 201}]},\n", - " {'errors': False,\n", - " 'processingTimeMs': 1067.055,\n", - " 'index_name': 'image-search-guide',\n", - " 'items': [{'_id': '4', 'result': 'created', 'status': 201}]}]" - ] - }, - "execution_count": 98, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "mq.index(index_name).add_documents(documents, tensor_fields=[\"image_docker\"], device=\"cpu\", client_batch_size= 1)" - ] - }, - { - "cell_type": "markdown", - "id": "078e6114", - "metadata": {}, - "source": [ - "### Search" - ] - }, - { - "cell_type": "code", - "execution_count": 99, - "id": "f6b8d943", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2022-12-30 04:28:56,472 logger:'marqo' INFO search (tensor): took 0.364s to send query and received 1 results from Marqo (roundtrip). Marqo itself took 0.358s to execute the search.\n" - ] - } - ], - "source": [ - "search_results = mq.index(index_name).search(\"A rider on a horse jumping over the barrier\", \n", - " searchable_attributes=['image_docker'], limit = 1,\n", - " device='cpu')" - ] - }, - { - "cell_type": "code", - "execution_count": 103, - "id": "8c505794", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'hits': [{'image_docker': 'http://host.docker.internal:8222/image1.jpg',\n", - " '_id': '1',\n", - " '_highlights': {'image_docker': 'http://host.docker.internal:8222/image1.jpg'},\n", - " '_score': 0.6133688}],\n", - " 'processingTimeMs': 358,\n", - " 'query': 'A rider on a horse jumping over the barrier',\n", - " 'limit': 1}" - ] - }, - "execution_count": 103, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "search_results" - ] - }, - { - "cell_type": "code", - "execution_count": 107, - "id": "f95e588d", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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ZzTeYx454UY4A5YrErxskzj19bQj37x989ypI/sG7Oaof2r/4Tu3rwmja+uSqIVROhnXrNMwUoayAE6BWek9IXpqcmshAox5lmsfggiecR6ShHbmm9yQwEWVl14i5WxnrADnlk88NqqKK6+8eWIpuXp5/a3XX53LmsvLD0sL/Xq0sLxECTe6DkZzyiglo+leM8727VtRqhqM+s5YtKYYDjYftANp7tVmd9AHgtoa7SzzJAphaC0zIDCeTqbjnDa780Mz0lXNKdcIPriYs6o0wAQnqVYOEQOhwdFST6hwknetodZ4hsRbQgOxThMhW0i1rnUKl85fPX74kTsH+1dufP2Rh1brokDbSWlUNZOqNBcuvfTOW6eefOLP3rt07df+7H/z6MFjP/6TH//q5YvjS+vJ0sJ33zp//sH64v7VTnO5LCoUg6kisO0H+1086j/zgcePnd33ve/ePdpu+zK878n3g4b/+O//05kzZ4bDwYc+9iGH9v/zD//X//SffuvsubMHDxy7u/YdrSrhebvdztqtVqu1b98+ioRSKgTb2+mljWySj19+9VuvvDjW414jZtoow/Dm7fITP/tj7cgIcUpEi4Pic9vF94f3OpPJ/iee+elTD30EgpqMO1fuvI1sYbG4v9Kc77S7Vfn9YbnjRLSwMrJvFgNkb9xYu3znWvzYIqdOhW5Ot6/cL69fZMS5bsIP7Xu63TraaT/4nc/9i86rKzt727nbMd5SmhfjzmRv4z2Pf+T9T38SbWPl0JlD28+H8S5SB+lGQ+91ImS4rX3lrRnuqjjiVILSPJ2P7WhtMuxWk47yRbstGsncdOinYzLMt7qHW2LvrbnQnF9ebFJ6+c79wZVr++fhkceWqjopamXUULAqas4/+sRjnMub116+s3Y/Lukhf6gRnbTJXsDtjV4RbGt134nVFNcf3CrHPcoAiRUcVOlsNabxHHXBF01nurqGohLABnXEO62uQBXHLG3l94eXd7+6tTi37+Dqk7t3L5mil7bIj33y/YcOHOi2O0N7ROuxrjZbaW26O995/f+3M/5Op72AdHz88L7psNdttM+dORc3ZLO7evhYtzfcNV7JqDken7pz542V1bnxZLea3l6aTyNR7zxgQcN8vNROG4YHUgw7rcwQ2uTLL3391bdeup5P/P0dujcqTh5uLc2dcnaYT0HK9OkzACfZd1/b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LpklxugmWSwWV9M0DjRN0717cxE/kTfFQcJps91mjbCnT58+vnVveXIcCfp2F4L75nffK6ryz/70L/w0uHFSRHnZNwAws4uOHReljTEApLKyMYWysCnFoe2EUBQqcGkXSOjs7p0oQooTAiq+uHz5u7/zO5988tlr9+5/8vkXF1eXRycniNiHUDfF1UWPSRSSUXpou77vv/jiixhDwcXohiQujwkQRWLcb7ZWadYUfDl2bdmUpZsAUh6c5xl2roPruoaYIsL+Zq0rOh+TTxEUKkIVgwATKF3UzfGt20bz0WIxDl1QAhK1VqSpMhqUFhebqiKE6IOmg6zEYYEUMKXDOh9h9mIigTBNbkqhMjyNPlYRkdloXVg3tLayLkxaV2VZhq6tqkohNc3kXIhR+n4M47TdbofoJYHW1iqLQuPgFovVxeX18fGxhDiO41quHj58OE3+8vLyf/6/+J9tt1ttTD+qq83uh7/663/wh/96tTquitVmey0qOpkAZRw7q7U1ahgG58emqiGIT6mez9mYFEGQ+9ExoNYWg/fOC0RirZRZlaVSFNO02bVVVVGgOTRnZ2feBQCYz+fD2Ieos1ryZrMBAGt101SIzIBJpOt4v98LApLEADhPjFLXs6HrwuD3+81YDffu3C+rwm2Hsiy5tIDRTXHw0rkpiEUFIUwh9DGw88HFaHSxPF34GLqx2/XbfmpFUEaOikpHig0BIxNp5VIk5iBRaZ2tYxVqW9YoGEJw/cCFDilEF733iJBV3JkUIh92Vr0HSIAAmJI4U1gia3Tp/BjFLVZGa/7ss89+9N/61VvH9378b/7E9a1hs96tV80SU0RPppyfr/deEJQaw7hp+4u/ePoLoa9+/WtvlNUH739iSTQyKBNTCqH30SeBeXmExn758vn5+hwpXa0vYuorS88vLxHUerOrx36c+m98690R6Mnl092wG0Z3+9a9s9tnH3744YvPdvPVCYq8fudW2RSFtrvztbJcrcr97tyJl+CqeVPO9TiMp7fKt955+Ec//jcP32x+8zf//m//q5/97h/+9nvffjxN6ycX1+99//Hj1x7/7u/+65jUw3f98cnw4Gunzy6+qOYvSyb5ZXd0vEjiQBjBKMCD549SCkViCKWtsAn9OHbjkJs/leWiBX0MkgJJWszms6rutluttTEm84hSCsZopUlrHWPIWBPrg0yg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\n", - "text/plain": [ - "- -
- -## Introduction - -Image search has come a long way. Originally if you wanted to search a collection of images you would use keyword based search across manually curated meta-data. Vector representations followed and provided an avenue for more direct ways to query the image content. This has developed even more with the advent of cross-modal models like CLIP that allow searching images with natural language. Here we show it can be evolved further using a modern search stack that adds localization and the ability to re-rank. - -## Image Search -Popular modern image search (or image retrieval) is often based on embedding images into a latent space (e.g. by transforming images into vectors and tensors). A query is embedded into the same space while search results are found by finding the closest matching embedding and returning their corresponding images. - -- -
- -This single-stage retrieval based on embeddings is the same one that has been popular in many natural language processing applications like information retrieval, question and answering and chatbots. In many of these applications the matching documents are not just presented as part of the results but the part of the text that is the best match is also highlighted. This highlighting is what we can bring to image search via localization. - -- -
- -## Image Search + Localisation - -There are a number of ways to get localization in image search. There is a strong latency:relevancy trade off as more sophisticated methods take longer to process. However, there are two broad categories of localization - (1) heuristic - where a heuristic is used to obtain localization and, (2) model - where another ML model is used to provide the localization. The localization can also happen at the time of indexing ('index-time partitioning') or after an initial set of search results have been returned ("search-time localization"). The latter is akin to a second stage re-ranker from traditional two stage retrieval systems. - -### Index-time Partitioning - -- -
- -Here we will explain index-time partitioning for localization. In the indexing step, the image is partitioned into patches. Each of these patches and the original image are embedded and then stored in an index. This has the advantage that the time penalty is (mostly) paid off when indexing instead of searching. -In the retrieval step the query is embedded and compared not just to the original image but to all the patches as well. This now allows the location of the sub-image to also be returned. - -- -
- -Variations of this approach can also be used to do 'augment-time-indexing'. Instead of the image being broken into sub-patches it is augmented any number of times using any number of operations. Each of these augmented images are then stored in the same way the sub-patches were. - -### Heuristic partitioning methods -As explained above, one of the simplest ways to get localisation in image search is to partition the image into patches. This is done using a rule or heuristic to crop the image into other sub-images and store the embeddings for each of these patches. The simplest scheme for images is to split the image into an N x M equally sized patches and embed those. More sophisticated methods can be performed by other machine learning models like object detectors. - -- -
- -##S# Model based partitioning methods -For the model based approaches, ideally we want "important" or relevant parts of the image to be detected by a model and proposed as the sub-images. Different use cases will have different requirements but surprisingly we can do some pretty good stuff with pretty generic models. To achieve this we can exploit some properties of object detectors and attention (i.e. transformers) based models. - -- -
- -For example, in two-stage detectors like Faster-RCNN the first stage consists of a region-proposal netwrok (RPN). The RPN is used to propose regions of the image that contains objects of interest and happens before any fine-grained classification occurs. The RPN is trainable and can be used to propose possible interesting parts of an image. Alternatives are to simply use a fast lighter-weight detector like yolo and make the output boxes the proposed regions (ignoring class) or use "objectness" scores to rank the proposed (now class agnostic) boxes. Finally, other alternatives exist like models that output "saliency" maps which can be obtained from supervised learning or through self-supervised methods like DINO. DINO has the added benefit that since it is self-supervised, it makes fine-tuning on custom datasets simple and a way to provide domain specific localisation. - -## Re-ranking -An alternative approach to single-stage retrieval is two-stage retrieval. Two-stage retrieval consists of an initial retrieval of documents which are then reranked by a localization model or heuristic. The first stage is where the initial candidate documents are retrieved and the second stage can re-rank (i.e. re-order) the results based on another model or heuristic. - -- -
- -One of the reasons for this type of architecture is to strike a balance between speed and relevancy. For example, the first stage can trade off speed and relevancy to provide a fast initial selection while the re-ranker can then provide a better final ordering by using a different model. The re-ranker can be used to add additional diversity or context (e.g. personalisation) to the results ranking or to add other things like localization (for images or videos). The diagram above has an illustrated example of this - the first stage retrieval of images comes from dense embeddings (e.g. from CLIP) while the second-stage re-ranker re-orders them based on a second (different) model. - -### Search-time localization as re-ranking -As we saw earlier, localization can be introduced by dividing the images into patches at index-time and then searching across the image and child patches. An alternative approach is to defer the localization to the second stage via a reranker. - -- -
- -There are multiple ways to do this, for example, you could do what was done at indexing time and divide each image in the retrieved results. However, doing that on its own ignores the crucial thing that we have now - the query. If we blindly divide the images and try and then match the query to the patches the additional information from the query is not used as effectively as it could. Instead, the proposal mechanism can be conditioned on the query. From this the results can then be re-ordered, for example by using the score that comes from the proposed regions. - -- -
- -Conditioning the proposals based on the query has its roots in tasks like visual question and answering. The way this differs from other object detection problems is that the output is no longer restricted to a fixed vocabulary of objects but can take free form queries ('open vocabulary'). One good candidate model for this is OWL-ViT (Vision Transformer for Open-World Localization). OWL-ViT is a zero-shot text-conditioned object detection model. OWL-ViT uses CLIP as its backbone, while a vision transformer and a causal language model are used for the visual and text features respectively. Open-vocabulary classification is enabled by replacing the classification output with the class-name embeddings obtained from the text model. - -# Putting it all together - -In the previous section it was explained how image search works in general and how localization can be incorporated at both index and search time. In this section a full example with working code will be used to demonstrate each of these things in practice. - -## Image dataset -For this example we are using about 10,000 images of various everyday objects. Here are some example images: - -- -
- -We are going to index this dataset using a couple of different methods and then search with and without the localization based reranker. - -## Starting Marqo - -We will be using Marqo to do the image search with localization that was explained previously (full code is also here). To start Marqo run the following from your terminal (assuming a cuda compatible GPU): - -``` -docker run --name marqo -it --privileged -p 8882:8882 --gpus all --add-host host.docker.internal:host-gateway -e MARQO_MODELS_TO_PRELOAD='[]' marqoai/marqo:0.0.10 -``` - -If no GPU is available remove the --gpus all flag from the above command. - -## Preparing the documents - -We can either use the s3 urls directly or you can download the images and use them locally (see here for details). For now we will use the urls directly and create the documents for indexing. - -```python -import pandas as pd -import os - -df = pd.read_csv('files.csv') -documents = [{"image_location":s3_uri, '_id':os.path.basename(s3_uri)} for s3_uri in df['s3_uri']] -``` - -## Indexing with localization -Now we have the document we are going to index them using no index-time localization, using DINO and using yolox. We setup the client and the base settings. - -```python -from marqo import Client -client = Client() - -# setup the settings so we can comapre the different methods -patch_methods = [None, "dino-v2", "yolox"] - -settings = { - "index_defaults": { - "treat_urls_and_pointers_as_images": True, - "image_preprocessing": { - "patch_method": None - }, - "model":"ViT-B/32", - "normalize_embeddings":True, - }, -} -``` - -To use the different methods we change the method name. We will iterate through each method and index the images in a different index. - -```python -for patch_method in patch_methods: - - index_name = f"visual_search-{str(patch_method).lower()}" - - settings['index_defaults']['image_preprocessing']['patch_method'] = patch_method - - response = client.create_index(index_name, settings_dict=settings) - - # index the documents on the GPU - response = client.index(index_name).add_documents(documents, tensor_fields =["image_location"], device='cuda', client_batch_size=50) -``` - -If no GPU is available, set device='cpu'. - -## Searching with localization - -Now we will demonstrate how to use the two different methods to get localization in image search. - -### Search using index time localization -We can now perform some searches against our indexed data and see the localization. - -```python -response = client.index(index_name).search("brocolli", device="cuda") -print(response['hits'][0]) -``` - -We can see in the highlights field the coordinates of the bounding box that best matched the query. - -```python -bbox = response['hits']['_highlights']['image_location'] -print(bbox) -``` - -The top six results are shown below with their corresponding top bounding box highlight. - -- -
- -The method here uses a pre-trained yolox model to propose the bounding boxes at indexing time and each of the sub-images are indexed alongside the original. Some filtering and non-max suppression (NMS) is applied and the maximum number of proposals per image is capped at ten. The class agnostic scores are used for the NMS. We can see the results from another method which is named dino-v2. - -- -
- -Dino-v2 uses base transformer models from DINO which is a self supervised representation learning method. Apart from being used as a pre-training step the attention maps from these models tend to focus on object within the images. These attention maps can be used to determine the salient or important parts of the images. The nice thing about this method is it is self-supervised and does not require labels or bounding boxes. It is also amenable to fine-tuning on domain specific data to provide better localization for specific tasks. The difference between dino-v1 and dino-v2 is that the proposals for v2 are generated per attention map, while v1 uses a summed attention map. This means the v1 generates fewer proposals than v2 (and means less storage is required). - -## Search using search time localization -As described earlier, the alternative way to get localization is to have an object detector acting as a reranker and localizer. In Marqo we can specify the model here for re-ranking. The re-ranking model is OWL-ViT. OWL-ViT is an open vocabulary object detector that generates proposals after conditioning with a text prompt (or query). This conditional localisation is ideal to use as a reranker since we have the query to condition the model with for localisation. - -```python -response = client.index(index_name).search("brocolli", device="cuda", - searchable_attributes=['image_location'], reranker="owl/ViT-B/32") -print(response['hits'][0]) -``` - -The localisation provided by the reranker does not require any index time localisation. It can even be used with lexical search which does not use any embeddings for the first stage retrieval. -We can see in the highlights field the coordinates of the bounding box that best matched the query after reranking, - -```python -bbox = response['hits']['_highlights']['image_location'] -print(bbox) -``` - -and we can plot these results as well. The localisation is better here as the proposals are done in conjunction with the query. - -- -
- -# Conclusion -We have shown how using a two-stage retrieval system can enable multiple avenues for adding localisation to image search. We showed how yolox and DINO could be leveraged to provide index time localisation. OWL-ViT was shown as a second stage reranker that also provides localisation. The methods discussed allow for a variety of trade-offs, including speed and relevency. To see how many more applications like this can be built, check out Marqo! \ No newline at end of file diff --git a/examples/ImageSearchLocalization/article/1 466FOKNrrrzFnszM7qVZyQ.png b/examples/ImageSearchLocalization/article/1 466FOKNrrrzFnszM7qVZyQ.png deleted file mode 100644 index 684963157..000000000 Binary files a/examples/ImageSearchLocalization/article/1 466FOKNrrrzFnszM7qVZyQ.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 AZLGFdtTksvNFtnTGhpQ_Q.png b/examples/ImageSearchLocalization/article/1 AZLGFdtTksvNFtnTGhpQ_Q.png deleted file mode 100644 index 4ed8e67d0..000000000 Binary files a/examples/ImageSearchLocalization/article/1 AZLGFdtTksvNFtnTGhpQ_Q.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 B_0tNnrDERSdmPBGqrBUEw.png b/examples/ImageSearchLocalization/article/1 B_0tNnrDERSdmPBGqrBUEw.png deleted file mode 100644 index f75bebb69..000000000 Binary files a/examples/ImageSearchLocalization/article/1 B_0tNnrDERSdmPBGqrBUEw.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 FxTYCI7KBP0Zjjvcab0Azw.gif b/examples/ImageSearchLocalization/article/1 FxTYCI7KBP0Zjjvcab0Azw.gif deleted file mode 100644 index 0ce7393dc..000000000 Binary files a/examples/ImageSearchLocalization/article/1 FxTYCI7KBP0Zjjvcab0Azw.gif and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 GDZZbl072NLDV--5yC_UoQ.png b/examples/ImageSearchLocalization/article/1 GDZZbl072NLDV--5yC_UoQ.png deleted file mode 100644 index dfeb34d8a..000000000 Binary files a/examples/ImageSearchLocalization/article/1 GDZZbl072NLDV--5yC_UoQ.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 L2Aln_Wc6IyEmDqYdcKEvQ.png b/examples/ImageSearchLocalization/article/1 L2Aln_Wc6IyEmDqYdcKEvQ.png deleted file mode 100644 index 88ccf0d99..000000000 Binary files a/examples/ImageSearchLocalization/article/1 L2Aln_Wc6IyEmDqYdcKEvQ.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 VMk4UqhEcL0_47A6Yg48rw.png b/examples/ImageSearchLocalization/article/1 VMk4UqhEcL0_47A6Yg48rw.png deleted file mode 100644 index 0c128ce3b..000000000 Binary files a/examples/ImageSearchLocalization/article/1 VMk4UqhEcL0_47A6Yg48rw.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 XNf6OvML7_yQHWwPXMJV2w.png b/examples/ImageSearchLocalization/article/1 XNf6OvML7_yQHWwPXMJV2w.png deleted file mode 100644 index ddaa615af..000000000 Binary files a/examples/ImageSearchLocalization/article/1 XNf6OvML7_yQHWwPXMJV2w.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 YZ3i9BPKoH2YedCpWAi7BA.png b/examples/ImageSearchLocalization/article/1 YZ3i9BPKoH2YedCpWAi7BA.png deleted file mode 100644 index 7bc02ad68..000000000 Binary files a/examples/ImageSearchLocalization/article/1 YZ3i9BPKoH2YedCpWAi7BA.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 gqR9VyNJiK6Cpb57UYSmtw.gif b/examples/ImageSearchLocalization/article/1 gqR9VyNJiK6Cpb57UYSmtw.gif deleted file mode 100644 index 76cf6805d..000000000 Binary files a/examples/ImageSearchLocalization/article/1 gqR9VyNJiK6Cpb57UYSmtw.gif and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 i_cfOYloD77oKfN8Kl5LKw.gif b/examples/ImageSearchLocalization/article/1 i_cfOYloD77oKfN8Kl5LKw.gif deleted file mode 100644 index 9713dc355..000000000 Binary files a/examples/ImageSearchLocalization/article/1 i_cfOYloD77oKfN8Kl5LKw.gif and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 khwH2Qd9JUscD32PpU2oKw.png b/examples/ImageSearchLocalization/article/1 khwH2Qd9JUscD32PpU2oKw.png deleted file mode 100644 index 18f076f23..000000000 Binary files a/examples/ImageSearchLocalization/article/1 khwH2Qd9JUscD32PpU2oKw.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 nWO8ksPJ3sLZeY4EUiGUgQ.png b/examples/ImageSearchLocalization/article/1 nWO8ksPJ3sLZeY4EUiGUgQ.png deleted file mode 100644 index 1c12db7d4..000000000 Binary files a/examples/ImageSearchLocalization/article/1 nWO8ksPJ3sLZeY4EUiGUgQ.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/article/1 z8VEz9X_Ye2CJ4E-WEPqMg.png b/examples/ImageSearchLocalization/article/1 z8VEz9X_Ye2CJ4E-WEPqMg.png deleted file mode 100644 index 1a0a7c0fe..000000000 Binary files a/examples/ImageSearchLocalization/article/1 z8VEz9X_Ye2CJ4E-WEPqMg.png and /dev/null differ diff --git a/examples/ImageSearchLocalization/files.csv b/examples/ImageSearchLocalization/files.csv deleted file mode 100644 index fb6022a46..000000000 --- a/examples/ImageSearchLocalization/files.csv +++ /dev/null @@ -1,9825 +0,0 @@ -,s3_uri -0,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it12e408b9-f10a-41d7-8bd7-dd66cc816201.jpg -1,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it14cd3389-f7fa-4cb4-b8c6-c1e93fdd4d7a.jpg -2,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it23bf8080-b416-4a9d-945a-9a8a704c93f0.jpg -3,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it25753280-3feb-4d2f-8b60-9385dc7762e2.jpg -4,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it27312b6d-20bb-4e8a-afe1-d47269db28a7.jpg -5,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it31f3c650-28e7-44a9-8950-068548075385.jpg -6,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it3ea1b74e-bbdd-4b6f-a355-95e156ebf08d.jpg -7,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it3f06fd5b-9c18-49c9-9218-bb2d6a84de17.jpg -8,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it4c6f7613-c612-4cfe-bf73-cdf3b2a67752.jpg -9,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it6502b318-198b-4fa1-b233-9396a4770ce0.jpg -10,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it7468fa1c-51a2-4746-88ad-75c6dfddefb3.jpg -11,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it786b4b6a-bfb5-45a4-808e-bf1e9d359609.jpg -12,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it881a81f4-48f2-4355-80fc-5eb8a334f9a3.jpg -13,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it8e0c717e-2653-4d72-ad84-4ce452e8d426.jpg -14,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it9079434b-57cd-4b49-88ac-14b86e2f8f87.jpg -15,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_it934bafff-1f22-4385-8a5c-4a15b892490f.jpg -16,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_ita1be2e6c-b425-451f-a906-1a7ad2d64e65.jpg -17,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_ita8350925-5d5f-499f-8369-639979b12b3a.jpg -18,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_itaa2b4773-cb03-41c2-98bf-36a06da8ac7e.jpg -19,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_itb8df13f8-f77c-40c6-ab7d-12558ab8a1db.jpg -20,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_itcb4e1797-1617-4e91-b3c1-49b5afb3a170.jpg -21,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_ite9b12638-51fc-4898-a2e9-feb719454f16.jpg -22,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_airplane_in_itef4e09d4-2ae5-48a5-aaf9-625958168a9d.jpg -23,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it0c26442d-438a-41b2-9580-674abc0a04ca.jpg -24,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it16561a04-0ee8-4d37-839d-d7adbfe0ff92.jpg -25,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it23e8e686-ae2c-475c-b55b-6b3b675bd26b.jpg -26,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it60c4434e-5e02-41fb-b52b-27a202c3c556.jpg -27,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it6533c043-33e6-4e97-9c73-cec565743da2.jpg -28,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it68437550-6646-4ff3-86f0-419894eb9729.jpg -29,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it70b24850-52b0-484b-9b88-5045aab25481.jpg -30,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it7459b165-3add-434d-8b72-ade4529ad642.jpg -31,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it7ce15621-5be1-45f6-b337-0b609def9667.jpg -32,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it8a9c8238-9c34-48f8-a507-260a9cb30493.jpg -33,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it8c23e61d-f491-4549-beeb-e3e05574d5db.jpg -34,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it8c36b6d2-5ec8-4875-bea5-5fe61dcfb59b.jpg -35,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it94c64a2e-afb0-4960-b339-cf6a532e5da5.jpg -36,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it97c2a2b7-2b98-43d4-b87d-192ccb81d0c3.jpg -37,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it9a9d4e35-b071-4ede-a0db-1c2959ce3544.jpg -38,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_it9d7d4277-6f75-4fbb-8b0c-9e975331f0b2.jpg -39,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_ita86ddc5f-b809-4aa9-a464-d6a598ab5665.jpg -40,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_itc13f195e-f6dc-4196-a332-7a049800bde1.jpg -41,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_itcfc4f19e-0dc1-4e4a-bbff-1be2300be8ca.jpg -42,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_itddeeb5e6-41a2-4018-91a9-9f2b75ffc7c7.jpg -43,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_iteff69876-d512-49a6-8267-0d5d6db8ed57.jpg -44,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_apple_in_itf303b70d-e785-471d-a248-81d2bd2f5640.jpg -45,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it0251967e-400d-43fc-a9af-f189a514b061.jpg -46,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it0ea45607-6b27-41e3-ba7e-eff5aa66b39a.jpg -47,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it151fa49c-df93-4829-9f56-b46e43e81354.jpg -48,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it1a78d8e9-1c6e-4659-84f0-7632d2759348.jpg -49,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it25874252-3abf-406d-97a5-73cc1c1acd35.jpg -50,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it2c94ca06-e58e-4e5b-b42b-8c08959535f1.jpg -51,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it31a183c7-92cc-484d-a22e-e2e7a7f6c0be.jpg -52,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it33d4dac8-984f-494f-b6ea-4569f3036cb2.jpg -53,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it4c7f9289-eb0a-41df-b6ea-d803cd97c24b.jpg -54,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it737bd063-b10f-4e3f-a883-bc8daf694cd5.jpg -55,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it74a339e1-f32a-4e00-b256-d3245fb46e20.jpg -56,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it7cb5985b-ae3a-4aa7-b255-f1e1a112272f.jpg -57,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it7f320c42-bada-40ee-af4d-4263e68be7c9.jpg -58,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it83b2ef74-f18e-4a94-b0d4-bc1a2bab2f82.jpg -59,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it921dfdaf-0330-4dd6-b543-e4b289555039.jpg -60,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_it9a10c0b9-1951-4b32-b862-62617900fbbd.jpg -61,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_itac614849-5e00-4ed2-8bc1-70b6d5d4bb20.jpg -62,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_itae234147-04b1-474e-be40-420ab3843c80.jpg -63,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_itbecff7b2-3c52-4a67-be41-8f71f38aa166.jpg -64,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_itde809825-be40-45ac-8d2a-0c8faa63be46.jpg -65,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_itf4241022-19c6-4252-8479-274b6b5ddcb3.jpg -66,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_itf43f8538-463e-4509-b8e0-7fb305dbfa5c.jpg -67,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_backpack_in_itffb7664a-a46a-400e-9027-1703343f9809.jpg -68,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it007d919b-9f3f-40e9-9f04-6dfd24556b48.jpg -69,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it13401522-4de4-4af8-86e8-c09a2d6b65ec.jpg -70,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it149bef67-92e8-400b-9929-26a4bba07a95.jpg -71,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it183b04c1-69e9-4c74-93e6-fae4e7626228.jpg -72,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it3529ba98-913c-40c1-9de9-138a70551813.jpg -73,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it360be803-f4b1-42a1-9d23-a242206606ad.jpg -74,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it3f66b525-e19c-4d62-8930-5310c1995f8d.jpg -75,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it5b897cc5-a4d6-4d16-810a-4eee1261ae79.jpg -76,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it5d96f780-86fc-46f1-9e2c-f487354bfac9.jpg -77,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it8e27c832-66be-4b66-b463-cf4078068183.jpg -78,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it99558f46-5a88-4c08-af0a-0d702e87ce3f.jpg -79,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_it9c1df724-ec95-4d6f-aa2c-2808eb5f9871.jpg -80,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_ita5f7583f-b8c8-47e8-bfce-98891f8df2d7.jpg -81,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_itabefd7a2-2586-48e4-8ff6-0732aeb44e3d.jpg -82,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_itb78eec15-12db-42b0-b675-29b8d4e32335.jpg -83,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_itb8a522e0-ba9b-49d6-ad6a-ce99b41e6cd4.jpg -84,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_itba14ba7c-38a1-419e-a85f-62358f2aeb46.jpg -85,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_itba5bd77e-eda2-41fb-9fa0-e945d329accc.jpg -86,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_ite263bd4e-1345-4fdf-ac85-a9cd523d0c75.jpg -87,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_ite70c60b4-3e69-4c21-97c8-06da6704346f.jpg -88,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_itf584ca19-efeb-4ef5-a125-4d74860cf0d5.jpg -89,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_banana_in_itfee6f9a7-1cdc-4096-b560-5b83a8a410bd.jpg -90,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it060dd26c-d657-49c5-aa67-8f410d61911c.jpg -91,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it08438628-0156-4d13-935b-2c275cb32d6f.jpg -92,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it29a9ec40-2779-453e-b9a7-8e7c70b3f35b.jpg -93,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it2dfa142b-22e1-4592-a242-5305bb2d7766.jpg -94,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it341849de-caab-488f-af47-18d2021cf9cb.jpg -95,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it4152a8d9-e2e3-4b42-8de1-7f04f44f7790.jpg -96,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it57d8c3ed-114f-48dd-b4e8-b7d63fd45dfc.jpg -97,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it73c59a7c-575c-4a7a-8f99-69b3260755c6.jpg -98,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it75ff7193-53c5-4424-9487-f3e879e81279.jpg -99,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it78c35de0-22b9-4a11-8820-610fbeffe913.jpg -100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it7924d7f1-5d1f-4409-8d81-423b399a5117.jpg -101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it7f7d8995-3eed-4ada-bc66-b5bd73d474e3.jpg -102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it8049ba2b-7bd3-4810-8a79-25908d2a955d.jpg -103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_it849ce138-585e-4e21-87ed-2dea45304296.jpg -104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_ita17fc9ea-5cad-457a-93c7-3341e1fb54a8.jpg -105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_ita4608d4a-56af-4e6d-96a7-bd79c4afb18e.jpg -106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_itb1d66242-4540-45a9-825e-9c7af955ce07.jpg -107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_itba7f1b55-bf2d-4622-8683-c17f7b675d4e.jpg -108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_itbf7c6460-c5e6-4d30-a384-4f32258f43bc.jpg -109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_itc344c43c-c6f9-4a6f-b2b4-4fe0fa0d53ea.jpg -110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_itd37ea6cd-0b82-489b-a797-5b8ce7a1cbfb.jpg -111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_ite4ee7045-21a3-4afd-86b3-bb2c3a6f8c6d.jpg -112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_bat_in_itf7108dd8-6d7d-4bb7-9ed6-f1aaad49563c.jpg -113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it00286a35-b33f-4cd0-ab04-ba638b8b83fc.jpg -114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it161ae898-6498-4c72-b273-1d44053d3cd3.jpg -115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it1a304293-9415-4504-b8b1-f3ad8eac66c5.jpg -116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it1fe96edc-0140-44d8-997d-c16688c20e28.jpg -117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it212a50d9-cba3-4f60-af87-28fdca99f00a.jpg -118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it231b204f-f34d-42c2-b8ce-4b0fb7dcf880.jpg -119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it2fe0213d-3869-4616-8cf4-84e695573a82.jpg -120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it3f271654-9d18-4815-a5ea-1be373c9a02f.jpg -121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it68fa0f3a-2a03-4903-9f6f-fc5d9fc42743.jpg -122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it6a61ff8c-9e55-45b3-8413-887895c338c4.jpg -123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_it7193e574-fe67-492b-a082-a4771c843404.jpg -124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_ita5a634fd-8319-43a2-aee4-361f1629c100.jpg -125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itb4448797-549d-4da0-aae2-80ddf00a4d47.jpg -126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itb9ebbeb0-c044-4390-abd8-6f3f7c985db3.jpg -127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itc8d08ba4-761a-4475-b4c7-a2baacc4d253.jpg -128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itd3c626a1-b316-4bea-8efd-e0665b7bb208.jpg -129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itd5a8304f-d7d1-401a-9388-d9e8678cefb7.jpg -130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itddeedce6-eee6-414b-9264-a1706cdf192f.jpg -131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_ite179ae73-2a67-40b5-a51b-e66149e45b5d.jpg -132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_ite8ad34d6-fbc0-4a9a-88d7-6b2d959f3696.jpg -133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itec7a5631-5365-491e-ab5c-354ecd3d6847.jpg -134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itf359e1a6-5ecd-473c-a24c-39d1f5b25aea.jpg -135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_baseball_glove_in_itf96d0599-8c8d-4012-96f0-5267f7506688.jpg -136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_it16ec5110-9877-45a5-a8f1-a7d6d8a001f1.jpg -137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_it2aad23c6-2c31-490b-9458-01604048cf2c.jpg -138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_it2aceb30d-8a9b-4973-95ba-42ce3e9bdeb3.jpg -139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_it4fb3644d-32be-4c8e-a5a2-229274a2865d.jpg -140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_it5d5d00e5-a967-4d39-8cbf-8b343b648f02.jpg -141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_it784be959-2ba2-448f-8ba0-c58b059bb500.jpg -142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_it89ed29e9-ceaf-456b-8df3-f40773b63179.jpg -143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_ita5c5f7d3-a365-4944-bc57-235c1c4f7922.jpg -144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_ita6cdf2ec-58df-488c-aac6-2d6c716028c4.jpg -145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_ita70fd48b-f1c6-4487-9ab1-c20e6995f092.jpg -146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_ita770f072-f80e-446f-ba94-bd357b1899d5.jpg -147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_ita9938db9-0cf9-4010-8c5c-9ad46f4f422c.jpg -148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_ita9a6d21c-1f7c-4c86-bde5-f6259f1c171e.jpg -149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_ita9ed0a99-e088-4689-ad88-7391a85c4f69.jpg -150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itba5c0a47-df6e-4e8d-90b0-4b8da69be665.jpg -151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itca3a1d19-27f3-4c4d-850a-52df9bf15c08.jpg -152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itce7a77b1-37a9-4cee-8a4b-c26ed3662fb2.jpg -153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itd6e02c9e-bca9-4948-97a5-a5a08e21eb42.jpg -154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itf69d18d4-be7f-4158-87a2-05a7da65f0b0.jpg -155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itf7453b19-0c57-4027-b130-f95980909fe4.jpg -156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itf757f38d-270a-4ae3-ba53-ee3541ceb1f6.jpg -157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itf8ed0a35-1adf-4115-a5b7-7730c856f671.jpg -158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bear_in_itfb3749ce-51fc-4e81-b28d-e032ad5957e2.jpg -159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it01fb2e35-e3a5-48e8-84f6-7b4e04f60e7e.jpg -160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it0298cfeb-a6d3-4a0c-911f-9ee4f5754bf2.jpg -161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it0a0f3d44-0438-4b5d-98c4-58f80a98df6b.jpg -162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it0cf20889-10b8-4fa9-90f7-b4e5cd36650d.jpg -163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it0d8a6c8d-5f87-40c6-a03d-4a1b1ea91ec5.jpg -164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it0f217374-17fc-4b66-8a18-15ea605ac717.jpg -165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it17668e2c-6ca7-401f-8897-67bb134796a9.jpg -166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it1d141bcf-3b1f-49a1-a526-a2967b9e2d27.jpg -167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it1ddc453f-ac65-4e69-8461-fc5f13a97cf2.jpg -168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it1f41e3a2-b8ac-46c6-a113-898576431421.jpg -169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it40799d11-5511-4f4f-a08b-8c53c276cf09.jpg -170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it46ba342e-0213-4de8-a558-cab5eef16aaf.jpg -171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it5f13d2bb-61cf-433e-8910-d070ea3dba4c.jpg -172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it617fb336-261e-4652-98d5-fe57dbb4e01b.jpg -173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_it6d00ac70-5881-4647-9232-55148b7f36f6.jpg -174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_ita1d064e1-07b1-4aff-8561-e7b5d8f635e5.jpg -175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_ita9b4c439-0f5f-4d51-861e-2e12cc2ad85a.jpg -176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_itafd17dac-e3d6-4cb9-a7e3-9256736ffb50.jpg -177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_itbf6222b7-b3f2-41ee-abfb-ff96f7b93cb5.jpg -178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_itdef85c4d-7f4c-4ec5-93a1-8245b681a940.jpg -179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_itf1bf5556-eecb-4b04-b27c-19e50d05c090.jpg -180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bed_in_itfbfd20b8-8980-4f80-8574-15dcd5a9f1bd.jpg -181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it1d76e576-5ffb-4fdb-9b5f-dcdb02abca11.jpg -182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it330c6f66-4ce5-4120-bd3e-345682cf6b46.jpg -183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it36a5d28c-28b1-468e-99f4-9c25dae660ca.jpg -184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it3a5dc59c-51b1-4cf1-a647-3be4b3da6a2d.jpg -185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it46c89699-e201-454f-9826-3adac6369067.jpg -186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it4c2f5b67-7ce3-4e28-be75-752bb1477ef3.jpg -187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it52d448a3-c672-40c3-9a80-77994b65814d.jpg -188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it5788c660-2dbe-425f-93ad-b01d307a8f01.jpg -189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it5cc3ae73-70a3-4033-9fb3-0d7243b3bae0.jpg -190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it6108fbb8-e0ab-433e-9fe6-d05a1a5a2e95.jpg -191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it673363db-e03e-4435-aa4e-8fb4ddcdf354.jpg -192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it7460c802-0f89-4f26-8235-bd628ed872a7.jpg -193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it7af1ddb7-9f28-4e6a-854d-48be22c50187.jpg -194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it7c776d0b-0b4c-4bc2-a413-1e769b43ccf7.jpg -195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it940d8b0e-b3e4-48c0-ac46-8d5a540563bd.jpg -196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_it9e37fce5-5a9d-41b0-b036-cf5f250b6581.jpg -197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_ita6b2d5f2-b788-4ab9-b525-9343aa34d8d2.jpg -198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_ita71aaa26-961f-4e8c-bfd2-c174859016d1.jpg -199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_itab734747-45b8-47a6-b514-f3787479d4c1.jpg -200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_itb793dcbd-9977-47f8-8c0a-fa145fb0bf04.jpg -201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_itda566511-87a6-489d-b3b6-3ebf1c2a46b0.jpg -202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_itf24040ce-4da3-4811-9deb-c22a1e848163.jpg -203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bench_in_itfb1128a8-3d1a-4eb1-9235-fa5204e91e4d.jpg -204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it035e13ca-eb73-482b-bbe8-681c9433e141.jpg -205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it03cdbfae-0a23-45d0-8621-6792ca36196e.jpg -206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it08587620-8a6c-4233-898b-f57088b648d5.jpg -207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it0d89bf43-a3a8-4c01-8d6d-548f496ff799.jpg -208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it10eebd74-f594-461d-a955-0ebd4ecef734.jpg -209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it2048341f-9a6e-424b-a63f-efa08497f798.jpg -210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it3da712c0-497f-4351-8e85-ae9fb701b76c.jpg -211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it49258887-2401-4fdd-98c3-7a2162d646fd.jpg -212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it4d41921d-eb65-47d6-8b89-192c8e4e84ad.jpg -213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it4f1a34d6-7dc8-4911-9fd9-45177dc7efb1.jpg -214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it594badda-6d58-48bd-8c86-b81dba70d3fc.jpg -215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it5b828b1a-ccfd-403f-be49-2d640785c253.jpg -216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it828fe2f8-9126-4fee-b893-e18c883e8f4d.jpg -217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it8a773cec-e201-4118-b93f-a2e98c6e6313.jpg -218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_it8d5e9464-fef9-4af5-999e-f8823dae63c7.jpg -219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_ita2f1c260-ff6a-4a31-b50a-b258d9c1d4c1.jpg -220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_ita6f8de61-1d6a-44b7-8994-7e3e2ec77c50.jpg -221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_itaea7ae2b-7d18-4de1-a5a8-79b45208f38e.jpg -222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_itcb239022-7a10-4195-8a7a-08fa85c8ac18.jpg -223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_itcf73b076-368d-48c9-a4a1-4a64602bfa70.jpg -224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_itdc050e89-3f58-4f67-89b6-f979a64c4ef4.jpg -225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_iteb1480ba-00e1-4e47-a8c1-7ffd52cdddd1.jpg -226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bicycle_in_itf69ee65d-ef8e-42d2-b434-07004409d13d.jpg -227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it02e075f7-dfc7-43a5-8dba-3a4e153bcc6b.jpg -228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it1563b755-1baa-49a2-b06e-b06b55a63545.jpg -229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it1ab7977f-53f2-4ff4-8e03-ff575b745006.jpg -230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it1b7a2d9f-64a9-4f03-909c-4e7337e092a9.jpg -231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it23e7f2e0-f3c1-41b9-ac55-d738aadac23b.jpg -232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it3cddf5b7-22da-4c56-985d-368150fb22b2.jpg -233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it60f3f42f-5242-4bad-a15e-62194668e53e.jpg -234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it6a709d78-b057-4554-b06e-cee05a19d7bc.jpg -235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it70fe8bae-c288-4097-9951-c99aee5f3279.jpg -236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it73c56776-d846-4135-bc0a-330fcb317a56.jpg -237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it7746e1b8-51e0-4135-bcd5-639cca81bf9d.jpg -238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it85f9e58c-d87f-4160-95a5-0b7396d38932.jpg -239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it86e9933a-7950-4cf2-9a69-4248f52b1fa2.jpg -240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_it96b0d558-fa59-447a-9046-19220e6483d3.jpg -241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_itc7d10734-5e20-449a-881c-c267a81a4371.jpg -242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_itdd157815-8b02-4243-8f0b-5a16e51ed6a4.jpg -243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_itdfdfe429-8efc-42e3-aca3-af7e065f9560.jpg -244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_ite238817d-7e69-49d3-a1aa-b9ff0b185dd8.jpg -245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_ite97e6141-dd82-4e79-975e-69f0f3abcae1.jpg -246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_itf751dd05-3b93-4432-8f51-483c6fb4793c.jpg -247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_itf92fd85d-d8d6-488d-a9c1-31c39357dd38.jpg -248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_itfc5383b1-cfed-4425-9bf7-faa8f9d5f581.jpg -249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bird_in_itfec45c4f-30de-4c6e-8cf3-cb01a02d1534.jpg -250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it0271853f-a6d1-47fa-9064-ab928fcca197.jpg -251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it20d3e8d8-255d-4873-adf1-5dac7df4dca8.jpg -252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it221be2ff-9246-43f3-813c-33cdc64e0f8d.jpg -253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it22c7f1ba-9d19-4661-82b7-f94324f20971.jpg -254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it2442bc15-54a6-4a98-8d31-ddc77040e09d.jpg -255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it35a4d238-ad8f-4063-b3f8-1b1264f9cb44.jpg -256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it39e58882-e636-4cfd-8fc3-e2add11c1883.jpg -257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it3b9be19c-f7cd-4b04-9da3-984bfd723b30.jpg -258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it4561780f-53ce-43a4-afad-c3234e55b499.jpg -259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it4aa30763-236a-4afc-949c-78062b3bc364.jpg -260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it6139ef54-c215-4c3d-8951-50c12368c4da.jpg -261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it63577ebd-1db7-46fe-9cca-c4eff0022485.jpg -262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it679af65d-241f-4dcb-ab55-399a6b75cc12.jpg -263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_it6e4ede39-c1fd-40da-8164-1e87ae8f3cfa.jpg -264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_ita29f90e1-9d81-4629-8b05-b23fcf599b3a.jpg -265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_itadb71a68-c943-4342-b4aa-72a1ea667275.jpg -266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_itbd213b9a-86b2-4f42-ad0d-8daa32fc0f73.jpg -267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_itcd96142d-c196-41ef-adc0-9f4f9e808810.jpg -268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_itd35c13ee-b1b2-45a6-8245-6ae36a3e1eaf.jpg -269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_ite130a12f-3de6-477d-a3ce-25f2efa3fccf.jpg -270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_ite84b3a90-26cb-4aef-822a-c3b1a66c2b44.jpg -271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_itea28cd51-04b6-4531-9c4a-6b2aa6be6c65.jpg -272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_boat_in_itebc5ff9e-c2d1-4fea-8e91-06e3739f980a.jpg -273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it07f60fdc-2de0-46f1-af8f-6e5931895117.jpg -274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it092d802c-aeee-453b-bec5-eacbefb77099.jpg -275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it1bcac624-84b4-452d-b3e7-3255cf0eaa5d.jpg -276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it1fa61f12-4217-410e-84f0-675c63f8288c.jpg -277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it3d5dc59f-4488-4686-befd-3dcff6eb48ef.jpg -278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it48b79804-73bf-41a1-b1e3-1ba731794739.jpg -279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it55df83c2-6ac1-49cc-a4fa-e5ea85c70b21.jpg -280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it5814bf4b-b8bf-437f-a4b6-f3c5719e6002.jpg -281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it62389ddd-3bb5-4c29-ab49-9393b1289978.jpg -282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it6abeae0b-123c-4a4f-873c-1eb899271ba4.jpg -283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it6b580dc6-47b0-4536-b84b-ccab8a744cb7.jpg -284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it7b86998f-35b6-40aa-a210-54027837b3aa.jpg -285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it81c96bad-f83a-4550-9ec1-a0caf9612088.jpg -286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it8d006792-cf42-4336-8294-7c1d4dcf5166.jpg -287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_it99da1280-72c5-493e-8da0-d87934bec8fb.jpg -288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_ita7c283a3-d7e5-4d9f-9ad7-30ca75ea2e06.jpg -289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_itb1cfe962-d9e3-4d24-9903-9ed06c6fe1a1.jpg -290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_itc49c2137-06b6-4018-8d27-58fbd46d33d0.jpg -291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_itcc00599d-ea8a-4741-8976-1dd2e5f2e98c.jpg -292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_itd106b510-a706-4c1e-9a8d-d644cdf8fd12.jpg -293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_itd7be1d68-b563-49ed-b44e-874382259185.jpg -294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_book_in_itf62737ef-68fb-44a0-ada1-1a49f9b0ecd0.jpg -295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it0704b99c-e06a-4a2e-bde1-4605972a4be1.jpg -296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it137a3770-3134-43c3-ad89-adc40a3c87de.jpg -297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it143c2ea4-bcc1-4d05-91de-67b016ee3da7.jpg -298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it193fe055-bdbc-44e3-9985-2ffbfce12a30.jpg -299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it203bf026-9ea4-4fbd-a273-f82c7b22d170.jpg -300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it22be94d1-1705-46e2-8019-ff81c91fdf11.jpg -301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it2cae6e5b-9f9f-4011-af12-8104c17929f2.jpg -302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it40cf47f2-5e98-4eea-94cd-3e051a58e13c.jpg -303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it50590567-c6ee-4f9d-ba0f-9ecb6a21cc41.jpg -304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it575e2de9-8740-410c-bca5-882dcfdb2368.jpg -305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it59b41593-091f-40f0-ad20-a23004b51f01.jpg -306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it6f8f8828-8077-4794-bc1c-fce56c3228f0.jpg -307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it6feae079-421a-42f5-96a3-2c4c4881500f.jpg -308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it7349a874-bbe6-44b2-821a-5775eb632162.jpg -309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it9019c4d8-44df-45ff-9c49-a645793901c0.jpg -310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it93b45878-e2d3-42ba-83cf-37181840a20b.jpg -311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_it9981f757-7c6f-4e04-a01a-f7e989c9921e.jpg -312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_itc1ce58b7-08bf-4fbc-8e24-e3ee28ea2fbd.jpg -313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_itce84f2c9-8c8a-487f-91f5-8f8f1cc24cdf.jpg -314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_itd16497e5-ac49-4cff-a02f-dedaec19ce40.jpg -315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_itd220578f-cb99-44be-961d-a374e77aa1d7.jpg -316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_iteb218c68-90d3-4abc-bef3-6d23d3bb9133.jpg -317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bottle_in_itf93f3b67-24a3-4350-bb05-e14b7c28431b.jpg -318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it085a693d-2cf4-424c-b4e4-6eeaf1a7bef2.jpg -319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it13eae25b-3fe8-4436-a88e-f10a7649de77.jpg -320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it27954d4a-85e4-490b-a6eb-9fa7e9d8255d.jpg -321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it2a99aad4-faf7-49fc-ae3c-f7eaaf3b0397.jpg -322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it2d0d767c-d7af-4787-b5a0-4bc1d402bbd5.jpg -323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it419adaf6-d3db-46df-af15-fd1f638acc39.jpg -324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it42eb5364-4520-4bfc-b62b-ca7d023871eb.jpg -325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it44ada12c-25c3-4295-83e1-13d7b2dc775f.jpg -326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it459ec2df-85de-4b68-99d8-cd12b268426a.jpg -327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it5b44a00e-14b7-4a58-a5ba-2cf1c24e37fd.jpg -328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it6b3cf005-cf28-405d-97b1-1eb6cbe59ed7.jpg -329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it706ae51e-ef74-482a-8432-788177ae4879.jpg -330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it75132687-26f1-40b1-ad25-27e249c2a094.jpg -331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it80067a89-f1a2-42d4-a5e5-2f128e338539.jpg -332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it881d3349-bf71-4c14-b2eb-577cc35ec543.jpg -333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it8856d93e-00d5-478f-95f2-66d414383af7.jpg -334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_it94fb0e3d-4bb3-4607-bc0e-7d16d7b7d617.jpg -335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_itb0ac6145-56c1-40e9-a3e1-0fd3580a54e3.jpg -336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_itb4676b2c-3457-4e8d-af4b-c1528f2e273f.jpg -337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_itb4ecabac-2878-47ff-b6b3-90788f9a3a91.jpg -338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_itb9c75a5e-80f3-42e1-bc1e-dbf115a3d4aa.jpg -339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bowl_in_itffac08fe-2c99-4aee-ae75-a1e4ad0ba8fd.jpg -340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it01ae34b6-8eaa-4670-9bc1-d991445f4844.jpg -341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it045ae3cf-ee6c-4018-813a-bfa11213d936.jpg -342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it2943242f-7501-455d-ac06-61dff18898eb.jpg -343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it466168d9-4e6b-4194-8eaf-dfe6373fa3a6.jpg -344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it54ecf52a-398f-4677-8206-ba4aea66f6e4.jpg -345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it57e4ba54-2df4-4b99-8b54-5c61073844b1.jpg -346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it59c8dab7-2908-419d-92f6-b63a130309d7.jpg -347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it5dbeb608-44cc-468a-aabc-eef8ae139c48.jpg -348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it63fa5706-d6de-4a0d-9c53-5a5d694758a5.jpg -349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it7e1356c8-5840-49e4-a508-6a5eae5f6ea9.jpg -350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it80250330-e1e8-48e4-971f-7eaf9006ef62.jpg -351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it8408a3bf-bdb9-49be-a4f1-5b15b97bea0d.jpg -352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it85f2804f-1308-4a48-9a15-2fb967632d38.jpg -353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it892a3e8d-fa36-488d-a1a9-76c8b73b7ec4.jpg -354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_it8ec8d7cd-f2d9-4225-8f2f-aa58c3b813d9.jpg -355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_ita12caa96-5f33-4338-9ade-a2e587f71318.jpg -356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_itaa486fff-dffa-4b71-810f-44cf5fe7ba9a.jpg -357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_itac3635c1-8c2e-4063-82ae-e59a8f18d253.jpg -358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_itb42627bc-3ceb-4a61-a6f4-e8603aa7e7e6.jpg -359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_itbb0b2b4b-feab-4f3f-b63b-6a219dbe2d21.jpg -360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_itcee35320-2e62-4679-983f-ac7e214d3774.jpg -361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_broccoli_in_itf2987e38-91d0-4893-ad92-b3def6c330e2.jpg -362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it05b83917-074f-4485-a6be-413accf8f78d.jpg -363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it061c68fc-60fa-4aaf-b169-086c933c8c5b.jpg -364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it1604633f-ec7d-46da-a7d4-8562c4283573.jpg -365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it2573dc08-ade4-4acc-99ef-6e8d06554c31.jpg -366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it2fa34396-0258-4dc7-accf-b6e4a58da314.jpg -367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it420ca0ef-a97a-4431-acb1-16c125ae222b.jpg -368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it426dc60f-5a37-4625-beef-a4b8614ce3c8.jpg -369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it63117a2c-589c-4d70-ac82-c8cb3026e156.jpg -370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it68e4d8e8-5712-4e2a-af33-a3cd4effa86d.jpg -371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it6bc2377f-bef4-442b-bb72-b736abf25dd5.jpg -372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it735513ad-6796-499e-9d3a-74f2c4196943.jpg -373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it8e78e491-fb51-4390-8e91-3a89bd8ba4c5.jpg -374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it8e8b2382-30d1-4d35-a4de-e7b5a19c2337.jpg -375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_it9fa37797-b7b3-4b02-8cd4-13bfdb012bd8.jpg -376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_ita3451630-99ab-432c-ba8b-0c8c417fe335.jpg -377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_itb174b2f7-60a3-4cb3-95e6-fe0bf92310ea.jpg -378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_itb6219a04-05c7-4728-b25b-b2c2533f58f7.jpg -379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_itbd8b5b25-94e2-4332-97ae-dde103aa611d.jpg -380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_itcccd655a-7c44-43e5-9965-1f15790058f9.jpg -381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_itcee83da8-0095-4c08-8a5f-e8eb2c4f5515.jpg -382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_itdd032500-2943-41c4-94fb-46277ed285d1.jpg -383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_itdf96542e-7882-4376-9ce8-2b5bc9c1a56f.jpg -384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_bus_in_itf1f699d1-978b-4b75-a969-4331ee2791b5.jpg -385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it000271eb-efcc-4d78-848f-11769be7c3a5.jpg -386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it01e3727c-4005-4937-8afd-2624c59a5984.jpg -387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it0f6abbb0-1d4f-4829-a7a3-d79c96da6bed.jpg -388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it17267246-a148-4bc5-bc43-6cd0b396f9ae.jpg -389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it33313eee-5b29-41b1-9113-3f3a1cc3ec5b.jpg -390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it39c84ac3-2a38-4421-bcbb-eeb50c38bd35.jpg -391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it3b1f055d-9443-4cf4-9f51-da2bdc404a15.jpg -392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it43de18b5-3f17-4a83-ad5c-74b327b18790.jpg -393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it443c2305-4b06-4d98-b7c1-3986df2ef979.jpg -394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it4b61c619-0fc0-43d0-b8c1-61490582f5ec.jpg -395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it600f945a-12f4-4b3f-9bb4-f582e3d4dd50.jpg -396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it6e50a542-1867-4bfa-a61c-a7c50128c1de.jpg -397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it85647a25-4752-4d56-ab87-44a5b1e20e52.jpg -398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it8579b628-eb69-49e2-aacd-8ac070196b10.jpg -399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it8e004df9-2474-4667-8b51-3b568146d763.jpg -400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_it9813eebb-a13e-455b-84d8-22c60320b724.jpg -401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_itbe2a7b1c-bd1c-4cc8-bf39-a27bea6f91f9.jpg -402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_itbfdbd441-da1b-4672-90b3-502196865e20.jpg -403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_itcbe35a5f-2a9b-4b3c-801c-98bdf675eb62.jpg -404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_itce928c7f-1afb-4d06-a19a-61cf622ff84c.jpg -405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_itcf76b9fc-f4f5-4454-b764-4139ca1ecfd7.jpg -406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cake_in_itfa56cf7b-5926-44f8-9ed5-f90b03bb0042.jpg -407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it018c681f-a6d8-4eb6-abb7-aa738b8f19bf.jpg -408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it04f7484a-9721-47aa-adf8-a48ac6a15e7a.jpg -409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it15708b91-266d-4c18-b4a9-81faaf55044c.jpg -410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it253746a4-2bc4-4954-bae9-1ed3fd1359e6.jpg -411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it4973b3cf-f768-4a0a-b9a1-46487bcad02f.jpg -412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it51653dd4-81b6-42d3-ae62-6bbfabdf075e.jpg -413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it5663ba2c-2c8e-4ded-9da5-4d4d0dac0aa1.jpg -414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it582dc828-777d-438c-9c38-b2309532b366.jpg -415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it5f67c9de-ba9e-44f6-9ae2-2505a91fba42.jpg -416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it67eaefea-f5de-4531-a445-341742478321.jpg -417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it6f75a59c-bd1c-40f5-8c40-7867e28258eb.jpg -418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it6fb8a9b0-bfae-4c32-a2bb-063f6d0ff17f.jpg -419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_it728e4d68-5bb7-45ec-83d7-1dd2c05f6022.jpg -420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_itb81c6f8f-6c7b-41a4-8698-69313347dd5b.jpg -421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_itb8ece432-7d2e-4f0d-889b-c4bfce2a6fd0.jpg -422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_itd6c86c03-eb4d-4ab1-b6e0-b8795e908162.jpg -423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_itdb1abbed-4488-4170-8858-bd763de326b5.jpg -424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_ite46e60e6-9e82-4181-9a0c-d0d1465d7c0c.jpg -425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_ite4e8f962-07a8-4b32-ad57-4493358033ca.jpg -426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_ite62ae545-1e8c-4541-be96-c4e6778d7d27.jpg -427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_itf905e0d3-80d4-4151-90b3-2161dbd45520.jpg -428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_itfe9f8936-2a86-41a0-a965-5ec5cdb90b2f.jpg -429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_car_in_itff6e2b5c-6c8d-4bab-bdb2-6f1001c19555.jpg -430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it035ac072-927f-4f88-8bf5-620fc64544df.jpg -431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it21c38694-c859-46db-a6a9-e0028370705c.jpg -432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it24635ef5-b856-4634-babf-20998390a4a8.jpg -433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it31a76a4a-9b2a-4e8b-9ce8-90314f8b18cc.jpg -434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it4493fd90-5631-4307-9389-26ab10b48ced.jpg -435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it47b05699-a7e4-4ee6-8904-cd0b12adb44d.jpg -436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it5d036a2e-e937-420c-83f0-985801a8c917.jpg -437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it6314b007-34c9-4ba6-acfe-5d76d569f6a2.jpg -438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it63b6ab5e-6636-4bcc-b626-5ffd94161b4a.jpg -439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it671971ea-364b-4ed7-9995-54a7b841a910.jpg -440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it78170cc7-31e4-4b3b-8def-810a90460acc.jpg -441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_it9ae7a131-7397-4125-bee8-7d323c234a23.jpg -442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_ita20682c5-8e1d-439d-a80d-ded27521ab57.jpg -443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_ita37ba1cc-d8c6-41db-8556-fcc82c9ff70b.jpg -444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_ita6d163b4-0c1d-4eb8-9548-f385aa631ae0.jpg -445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_ita9818f50-d874-4f22-a0e8-1de9e5674b31.jpg -446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_itbd7a48d6-7496-4b7c-a541-260fe874c45c.jpg -447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_itc0cf5952-a7e6-4c73-893b-10ba59944cd1.jpg -448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_itca1ae4d6-7ee4-4d0e-b0e3-cfd7634cc9d5.jpg -449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_itce2e4b3f-f672-4147-9ad7-0ef37a4b4287.jpg -450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_ite722c4b8-8225-4855-9230-824dc15b0a2e.jpg -451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_carrot_in_itf3e11cec-9b74-4777-b6e5-b40997417927.jpg -452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it164621f0-ed4a-42f9-9ae3-01e0d1faeb43.jpg -453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it2602928a-7887-4e82-8cb6-e5b4f92afc1d.jpg -454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it291a2cdb-e990-4fa8-ae46-5d3585abe4cd.jpg -455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it2ba6ecf7-451d-48d4-b8c3-0c1bdd96ed90.jpg -456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it37a85136-4e0d-44c8-825d-8065e594920d.jpg -457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it3f52b0f1-b018-4d24-88f6-cc97c53e82b5.jpg -458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it40d4ab8b-9b88-4b5a-ae89-e08d7eea8d36.jpg -459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it633ef4d9-a163-4685-b081-739fc55f7ce2.jpg -460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it726f0791-99bf-4c61-8cf0-f2781de537eb.jpg -461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it75d1d2fd-1fca-477b-94b7-b9de2de6b308.jpg -462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it76d55e69-08c9-4895-9d3c-b1ac6d8ee582.jpg -463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it8a2d29c9-4528-4e40-aa26-7f9e2da6a784.jpg -464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it95f3959f-719d-4f85-9a08-5e7ef50c201a.jpg -465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it9a508229-6821-4fbf-b765-e86c20e8dab0.jpg -466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_it9f04c363-c9a3-40a6-89fc-8b2fdcfa0fab.jpg -467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_itc100ef49-2745-4471-b2fd-c359dde941a4.jpg -468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_itd1537e8f-52d7-4816-93fd-1558bf934844.jpg -469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_itd435d1ea-f8c5-4586-b6ae-22e905c9484f.jpg -470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_itdaec514c-aca6-4582-be28-71b53e740a91.jpg -471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_ite7e67b7c-fb63-487f-b25e-e6efcc4a391f.jpg -472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_itec0497db-6883-4295-b6ea-46ee5aacd50e.jpg -473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_itefade502-11e1-4511-83e8-e9f4a623347b.jpg -474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cat_in_itf49725bf-cde2-4fa5-bf93-fd763ebaa1db.jpg -475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it06289fae-7a76-4894-a6e9-ed77d8430c21.jpg -476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it085f914a-197c-4f39-9c51-b7fef98eb197.jpg -477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it0d190fb5-aba1-4ae2-bb19-19c7370fe9f6.jpg -478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it132afaac-140b-4478-94f2-1d11a373ab26.jpg -479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it150710cc-9f6c-495b-aa89-3516b5b15da2.jpg -480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it23c5e79d-1c22-416d-bc54-c3b9483870a8.jpg -481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it26895f61-60d9-4e08-aa1a-2f5d60930c41.jpg -482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it27d76aa6-91e5-403b-b1b6-06efbdab4fff.jpg -483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it2a427418-8cb4-4b23-af86-32b4a055ddfb.jpg -484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it2e54b4fa-b074-4a74-8243-a608a9cf2b79.jpg -485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it30f644b3-0a7f-49ea-b017-824a5a6de4d9.jpg -486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it40f38f0b-21b4-42b5-8cf5-36a856075acf.jpg -487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it4bd8bcf5-3a10-4e3e-a322-4a3c57d27e30.jpg -488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it4c41191d-25e8-4346-88a8-e3c3a92f8978.jpg -489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it4e2697ec-c7fe-43f1-963c-c1d856396bda.jpg -490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it61d3eba2-900c-4cc9-ad60-f34224c4f7c4.jpg -491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it6c2321bd-de7b-4dbb-b503-35d8f0fa67b7.jpg -492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it8132b46c-8d87-4eaf-aaa0-2f6d4c9f4b58.jpg -493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it9b596906-fd6c-4d23-a291-ec55e956f75a.jpg -494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_it9bfffcc0-3750-43ec-a212-9d3f794c2fab.jpg -495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_itd71d050e-6e0a-4a55-9930-d92e9506bc4e.jpg -496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cell_phone_in_itfb497e02-ce45-4fc1-929a-a965ded5308c.jpg -497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it16624985-3435-491d-853f-3fa4651efe0c.jpg -498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it1a42fb93-61e3-4959-8cf3-99cf6eda37e7.jpg -499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it1ce28b35-885a-471a-a874-8c6f368ca93f.jpg -500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it20f54021-e88e-4f44-ad0c-83e1ee319d9c.jpg -501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it2107fc75-dea4-4b22-9ffa-0995cbaf713d.jpg -502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it25ee93fe-abbf-438c-a23b-7dce5ae405a0.jpg -503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it443c24be-bca8-4b66-acd8-c7a08f66744d.jpg -504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it4ea078ac-87ba-4e79-aa5e-796ef5fdc1d0.jpg -505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it59801ffd-9b3d-4dbb-a549-3ad53e447471.jpg -506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it62c2bc44-4fbe-454d-aa4d-8458f09e42b2.jpg -507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it77d0fc05-83ad-435c-a823-86a572d90b74.jpg -508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it905d95ca-a635-4a1d-a240-da977782ae1d.jpg -509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it91867cfe-3203-42ae-a20f-964c7c2e446f.jpg -510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it954733bb-adf9-4330-a288-cf384e2455ef.jpg -511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_it9ab23107-fddd-49b6-971d-0e89a0e57238.jpg -512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_ita19a578d-ac59-4afb-8f26-44c941a6df13.jpg -513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_ita269542c-de75-468a-ae78-edd0af88596f.jpg -514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_ita8046aec-6a82-42e8-b192-23af3313de3a.jpg -515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_itb260f1bb-e38a-4f66-86dc-223841e15db5.jpg -516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_itb79a0435-8707-4197-a268-972315a915ea.jpg -517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_ite3902ec0-d89e-465f-b90c-fd3eac51496d.jpg -518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_chair_in_itef87d6ab-80d1-4ad3-ba88-6c61a0037e87.jpg -519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it0de26add-6ae6-4228-a338-b0f58332887b.jpg -520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it172641d2-2bb9-424e-a8b8-c674fcc58ff1.jpg -521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it2bc1b2d7-97c4-405c-b464-e55c9c74e01c.jpg -522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it4cb80af8-ab92-40da-b611-84b87198ce25.jpg -523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it4ef61753-234a-408f-b1f3-d7b7cb3529b8.jpg -524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it651c9c82-2a0f-4c2f-b8fe-5efc646b3677.jpg -525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it730945cf-3f59-45c4-b25a-3c33b69586bd.jpg -526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it8919f401-ec22-44d2-af3d-ee0c7b1d0093.jpg -527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it943370e5-4f5c-4fdb-9060-9e16842b4cdd.jpg -528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it95f6f957-b2d0-4dc8-bd6d-f1baebeea62e.jpg -529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it98ca0d16-cec8-4d07-a161-f8cdfa4ebb8b.jpg -530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_it9f5ebf61-3e5c-4aec-bc54-dddad7d70ccd.jpg -531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_ita66da96c-73ae-4127-92af-c25340d160ed.jpg -532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_ita730f76b-3389-43a7-8b05-99a55d17f0b8.jpg -533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_itaaafbb26-d483-4b71-adad-02c5a15508c4.jpg -534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_itaf7593c4-3a1b-459b-a423-29eee138c146.jpg -535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_itb20c0968-f07b-48d0-90a7-6c82e42384e2.jpg -536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_itbf608391-05e5-4b3a-95e8-9107936f3502.jpg -537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_itc180e076-a8b6-46c7-b3d9-774ff5708081.jpg -538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_itc5069403-d010-42fd-9006-14098b7b89ca.jpg -539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_itf6225aad-64d0-471b-96d6-c4492be822d7.jpg -540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_clock_in_itfe4c80b9-9660-4f2f-89e7-a60e8e601d98.jpg -541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it0ae77022-8cf1-42dc-88c2-31f0ba438758.jpg -542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it18481f6c-d319-4419-bf51-03b328ce5362.jpg -543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it19691784-80b3-4c96-bcd5-5cd3a4558201.jpg -544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it32f1f464-ca41-4c64-9c0f-ab662c1bcbfa.jpg -545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it44ffde0c-490a-4dff-b4d3-484cfe7bce5f.jpg -546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it4e981a48-918f-4b8e-a937-e65d34d06a49.jpg -547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it5a96dcf6-fc38-4fd3-8f7b-0fcb979090b0.jpg -548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it6255fb9b-8161-4db4-a34c-19a84ad53f5a.jpg -549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it6c9d3fd3-fd16-4344-a248-1f1a9c646e5b.jpg -550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it8327af03-6a1f-4548-ac36-543b1e525330.jpg -551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it8424c5fc-90ea-4874-9017-abdd1e518117.jpg -552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it86ba2960-7ea5-4b27-b48f-37f614b3835a.jpg -553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_it8bd56e87-f9fc-41bc-b1d2-58072ba0c081.jpg -554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_ita1ff8a46-edee-40aa-b5e3-8ae1342b7b05.jpg -555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_itadf26a00-f904-4c0d-b8d7-9a4406f8298f.jpg -556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_itbb1bb8a4-1e14-4b08-ac4a-501048abdc4f.jpg -557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_itc42a6d63-3a05-4b39-9f91-ccc87f2cb41b.jpg -558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_ite9167375-44cb-4935-b8aa-fee145cfe9aa.jpg -559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_itec4a3a09-7433-45f8-91dd-74d9395c4afd.jpg -560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_ited2e3624-06ba-44bb-add9-4a5f4e8200e1.jpg -561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_itee18baa1-ee2e-40f6-86c9-be8dcf98692e.jpg -562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_couch_in_itfbaab3a8-6792-4401-adc5-b953afe882f7.jpg -563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it1ee0de4d-09ca-4dd5-8988-dad3b317c2bb.jpg -564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it221d840f-797a-458d-b230-42dec51fcb9d.jpg -565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it248e368d-46d7-42e5-8a08-b2ceced4122e.jpg -566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it47751b7f-c23a-4dcd-a207-ee08a9c73839.jpg -567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it4dcbcc1d-75cc-43c9-834e-b20bdee2b071.jpg -568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it5824d51f-7a18-43c9-b50a-e3459ed243f9.jpg -569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it6bc827fe-9726-4e2d-bbc2-ae5156c307a3.jpg -570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it76910c52-dc76-4f0e-97f4-8138d61e4645.jpg -571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it81618c68-7e04-4e5d-9a1c-d405882d42ce.jpg -572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it81a087fe-3172-45e3-9db2-22e22b6d9614.jpg -573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it8be5cf12-b5e8-441e-bf95-c94662b25c13.jpg -574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it913e70f5-5c0a-4725-aef3-3c44c7cbc61e.jpg -575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_it98adf213-7bc4-42c9-a120-b5727b1a5466.jpg -576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_ita405eced-c20f-4804-ada2-ba20a7da5875.jpg -577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_itb51c5ff3-a877-4164-b1aa-64f2e05c9e15.jpg -578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_itb5ba3ccd-7d04-4ec8-aa4e-a1f9d9da5b84.jpg -579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_itbaca3d04-793f-48ef-be74-fb086c0f5bb8.jpg -580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_itbdce7057-399e-4206-b66e-e87678c5b005.jpg -581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_itc05e5b97-84b4-4188-8ea1-749924d96e28.jpg -582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_itc9ba8bb7-c81a-475f-9790-7aefa572c7fe.jpg -583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_ite5f15945-1536-44f0-a61a-b0e3be89485a.jpg -584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_itf5e74687-0230-4106-85c9-6ec1a3f31665.jpg -585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cow_in_itf659b763-fbe7-4747-a5b4-40c39f728c88.jpg -586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it089b9fd1-5954-4ecf-a629-054f0948e34f.jpg -587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it0b2876fe-d672-49fb-b1ce-bb96795ec47e.jpg -588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it0c40cc5a-7f75-4cf7-a576-38d1a67b7784.jpg -589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it0cf40d52-aa66-43f2-82ee-a0746f6745bc.jpg -590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it0d03727e-c6a7-4844-9cd5-c25e21f34b9b.jpg -591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it24a43084-fb75-4ab4-9b11-d35544468724.jpg -592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it420c0178-1220-4111-a19b-c99e48f06cda.jpg -593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it48811420-b15e-4adb-a75a-e0dd962f15d1.jpg -594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it56130977-95c0-4b95-ba74-f626478a1785.jpg -595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it5b988412-a2ec-4117-83fb-6ae98301b423.jpg -596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it685cadfd-49b9-47e3-a612-3e70e3d29529.jpg -597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_it9c55730b-6423-4aa0-adde-18ab09309875.jpg -598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itadae2e74-a003-4de6-a5e0-7126af79c6e2.jpg -599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itaf6209d1-0e30-42ee-a81c-f04c628e0667.jpg -600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itc9dd6a57-3beb-42b7-b69b-1fc1d02d9ca1.jpg -601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itcd87396b-d8e7-428e-90af-faa0d27e3a57.jpg -602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itd760aa4d-11b6-43d2-a8a6-92064381a990.jpg -603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itdfb9c074-0864-4c10-88ed-82c6be3e7b58.jpg -604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_ite204365d-9c56-4451-9488-7a6f133d1ee6.jpg -605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_ite55cd65a-3f5a-4342-bee8-fefaaa8caa0f.jpg -606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itea0ae338-ec0b-437e-882f-afd06aee252d.jpg -607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itff109c63-0740-433f-bc69-4e7e10a347ab.jpg -608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_cup_in_itffb256fb-8c46-4db9-b1c9-e3db98302558.jpg -609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it12f58af7-8ad8-48c3-95c5-bb6082cb25fb.jpg -610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it3a4593d0-54d5-45e8-b42b-64093b5d416c.jpg -611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it462d34a5-2179-4d80-a37d-a8bf77af4308.jpg -612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it4ccfefb8-10eb-4f90-8123-a8cc4bf5bd70.jpg -613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it58b853e7-b417-4f17-a2b9-4df328e3bef4.jpg -614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it59dfe4dd-a5f9-4a54-9cbd-f93ab2b58371.jpg -615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it61d53741-2100-4072-91f5-874856a20b63.jpg -616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it70cdbe8d-fa35-4aba-91b7-2c39d8423004.jpg -617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it77aaf12d-dd87-4503-a5e8-e9c04a83ce84.jpg -618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it77d28c4f-106b-47ac-8729-d6b9b88b4f66.jpg -619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it96a653c7-93b8-4182-a49c-cce34139683f.jpg -620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_it9dea6c2f-3f9a-4b5a-85f7-9a917f1e4e60.jpg -621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itaa4e2975-f67d-473e-bc6c-c2aa53f6cacf.jpg -622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itabfe715d-2e43-4301-abe3-5a3aabd354de.jpg -623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itadb9c559-f93f-420a-972f-517410e5c622.jpg -624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itb5c8f60b-1808-41da-85c6-bbe4b2efb6d1.jpg -625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itb6995644-4887-4af4-a9b9-3382953e0819.jpg -626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itbb81e32e-6e7b-4281-a102-cf950ee70474.jpg -627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itcdbcb5ea-7d1a-443a-800d-cff261d1f685.jpg -628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itcedfcd87-e65a-4efb-8813-1f1ade592403.jpg -629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_itd7b72001-e36c-4ed0-be0a-d234b76c7773.jpg -630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dining_table_in_ited4c5e49-c68f-46ba-9383-377d5e4fe542.jpg -631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it04e37051-4d3e-4954-b458-1edd60b8acbf.jpg -632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it0db3e426-d34e-4033-b43b-2003d431cbb8.jpg -633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it1f748be2-3097-4732-bdbf-f3d649152e9f.jpg -634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it226f4dc4-03f1-46f2-b6d8-a891d6e69c00.jpg -635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it2e379748-6f06-4067-9a3d-18801a82048d.jpg -636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it470d99c8-cafe-43dd-80b2-d8cbacb04bd2.jpg -637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it559da1f3-da15-4a17-a539-c9ef70cecdbc.jpg -638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it60db150b-51b7-4d78-aa76-4099266e933b.jpg -639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it661e7475-0e0c-49c5-afbf-ec7c89460612.jpg -640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it6e7a4c59-ec7a-473c-b1f8-55fc068e6329.jpg -641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it7915d208-066a-44b5-a18a-891e859fdb61.jpg -642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it7c387cd0-c05c-4da9-b339-a85029e59395.jpg -643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it7e281a66-99ea-4940-99f3-c6047c62fc2c.jpg -644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_it857d6524-5703-46ba-97cd-cda609d610cb.jpg -645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_itaf9d5e14-044a-4298-9765-ba8fdcd2ed3f.jpg -646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_itb0f44c9f-27f8-45c2-8bad-a73a47b78e68.jpg -647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_itb39a5e64-459e-4c59-9ce2-3ceae502d3a1.jpg -648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_itb9c30b93-e82a-43a9-9e6e-227f38b153e2.jpg -649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_itde6dcd84-4135-4016-8bb3-9419c072c71e.jpg -650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_ite6e10d59-8f49-44d8-883d-3db5dcf629a2.jpg -651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_ited924087-d122-455b-8e3b-b70520d04508.jpg -652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_itf429862a-69d1-4271-969d-3216dbe23946.jpg -653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_dog_in_itf60d1bf9-6b7b-4c6e-912a-fab259d14dd2.jpg -654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it18b7c273-dcc4-45c1-9e4d-87c01908c306.jpg -655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it1d2b6efd-f1b9-48da-84e0-33cae280e4fe.jpg -656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it269e95fa-a880-42a7-807a-18bc80964637.jpg -657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it3acb2d19-d6aa-4f5a-a65b-3d93bbd930d5.jpg -658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it4157a7aa-df19-4d89-8d36-f9d5b99fc1a7.jpg -659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it4fe3d731-f9bd-4c57-9bda-36854e1079b0.jpg -660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it51dd8823-6660-4a15-9e6c-9d4c125bd0ad.jpg -661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it599ea3fb-81f7-456c-bc30-d7bf19034d3c.jpg -662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it5bb3e3a1-e124-4a8e-b49a-8c2776d1b1bb.jpg -663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it6a2a040f-4fd8-49e7-8fdf-d64290d485a3.jpg -664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_it987b53fe-24b0-4f9c-905c-9e162d2dbdcc.jpg -665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_ita14239de-3693-4ef9-80e1-7879082b26a5.jpg -666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_ita1ae64cb-0a86-4163-926c-b5dbf497eaa7.jpg -667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_itac24125a-aa40-4a5a-b3c8-3736aa3b7251.jpg -668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_itb4ef8a36-4352-48b8-abcf-5a9423fcf38b.jpg -669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_itbbba0a6d-24d6-4b20-a0d3-7469e5af77a0.jpg -670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_itc32accf9-933d-48b4-8c5b-b22f03d1ce87.jpg -671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_itcbdda607-0654-4817-ae8b-bbcab604934f.jpg -672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_itd3912cfc-1167-4a64-af8a-861038ef4d9e.jpg -673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_ite137c60b-bba9-44fa-9cd6-23c2b3ac3624.jpg -674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_ite6719cf4-4ed1-43bc-bb5c-b5939c8d940e.jpg -675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_donut_in_itf1f09f9e-2ad0-4541-84f2-23496b0d4a4c.jpg -676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it17d1bfc2-3cd6-476a-97dd-6311d60ada49.jpg -677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it196e2879-ec26-4dff-a969-a5e1667c79fd.jpg -678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it1b551f69-1704-4789-ba0a-30e5f7a6f1e8.jpg -679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it1cbbebcb-32ba-4b48-a5a6-e629507284ca.jpg -680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it3927e7d8-9b71-4fe0-9d6a-f68421bd0581.jpg -681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it511515bd-ff6f-4b7d-a7db-7a0cb8b43f36.jpg -682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it5ce42849-95c4-431b-accc-70a31e21e94d.jpg -683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it6ecb7e0c-479c-47ce-994d-d05a5b4d0bd9.jpg -684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it75c3624a-50f8-416a-bdac-8d82328aba84.jpg -685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it8e47a51d-698e-40d3-b063-c9901d7a5227.jpg -686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_it9a3a4f0b-118e-47ce-a5ab-7de60cc12eca.jpg -687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itb0ffb4ce-df9e-4478-a55a-59b38d928965.jpg -688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itb7bdcac3-b536-44f4-abcf-390e30cb2064.jpg -689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itbdfb7fd1-f4fd-4360-b7fe-d8e76415c462.jpg -690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itc2e881c3-d7bd-4eb5-ae9a-17814d78d627.jpg -691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itcee04865-a246-47e9-93ca-420ffd4c5351.jpg -692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itd20d942c-bb81-4006-a550-01977a74077c.jpg -693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itd24837d3-116a-4162-8b36-d9770c55cd91.jpg -694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itd2f3bfff-6896-472a-8564-53f552707e39.jpg -695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_ite4315987-7ce5-4b90-9138-c64f89ab72ec.jpg -696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_ite7baf46d-a300-429a-9af1-c713f8d5f94e.jpg -697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itf188c7d5-d7ca-4afa-bd00-c52e304d1ed7.jpg -698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_elephant_in_itf6c98d42-70ef-4439-8250-f8d2fb453aa7.jpg -699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it0c81f26f-a280-4080-8dbd-7b3b9c9f3cee.jpg -700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it1bf6b9d4-f5b0-44cf-b848-462b5e9944a9.jpg -701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it20674b7a-ebd3-4826-947a-02c4688c11ec.jpg -702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it247af0c4-a822-4406-9795-2fcdd69ed590.jpg -703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it29b97263-ca7e-4431-a466-1ca100422179.jpg -704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it2b622548-b60b-48fa-ba22-419d2a5a17d7.jpg -705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it321ea0b3-e063-4b66-8020-8102734973c9.jpg -706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it32d30732-404d-4d4b-85e6-480db64092a4.jpg -707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it3fb0745f-7f7f-4a56-9027-9f9ca84e4d57.jpg -708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it58a5d55c-b8dd-43f1-b38b-c6d6c875143b.jpg -709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it5b0784ea-07ab-46bb-9d38-6172bdb820df.jpg -710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it5ed115de-ae46-4d50-b696-26dfc7a06df7.jpg -711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it6f7756d9-6156-46d6-bf51-9c3ebaf77bfd.jpg -712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it896bd133-611a-43de-b885-bd4766408a10.jpg -713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it8c3584b0-e5b8-4413-8c33-a6e628cb3ca1.jpg -714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_it9e09d3c6-ef73-4672-8c3d-f975550eb122.jpg -715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_ita5794cbd-d0a4-40d9-a1aa-cc4d0da1935f.jpg -716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_ita7e25277-3a11-4f22-9d85-155e4d47fcb7.jpg -717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_itab4ebd5d-f9a7-4e8a-a54f-54920ab46be0.jpg -718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_itad347410-9c80-4e5a-8bcc-809cf62feb21.jpg -719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_itb07197b9-8f0e-483d-9c21-63a9ba50ec30.jpg -720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_itcb8f19cf-6e2c-4f83-91b1-a8971c48e98e.jpg -721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fire_hydrant_in_ite16051c6-d879-4904-9265-573974711e3c.jpg -722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it00af710e-04b3-459a-9d6d-a3b87ca86f19.jpg -723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it19231026-f854-4000-8da7-d731c3dbd491.jpg -724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it1f164ee7-7f97-4899-963b-dcd8a6f17811.jpg -725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it2002e722-ac0b-47e9-aa22-b501cb19849e.jpg -726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it2f071513-c481-4460-ba0f-35a3c4a56586.jpg -727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it312ff6f3-0d78-4523-b6dd-d1f67b7408df.jpg -728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it35104e7d-2166-4675-bd5e-def9cb25a5dd.jpg -729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it3590f90a-2317-467b-8f74-e12c54918231.jpg -730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it45fd81c9-3e7a-45fe-9879-d62aa6e7a4a0.jpg -731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it4d3c2e6b-2c58-440b-821a-9e64678b74c6.jpg -732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it53700a05-4db4-4888-892d-4e8ae6e8cacb.jpg -733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it66915a3a-da84-41ec-b861-86ad9d60788d.jpg -734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it6b33737d-7d9f-434c-9dc0-a65b981d620d.jpg -735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it6db19c1f-2fd4-4824-8706-50008063fa55.jpg -736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it8d5fac2a-47f7-4466-b5bc-d886de801374.jpg -737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_it90b3c361-caf3-4590-a8be-6d03477a681c.jpg -738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_ita290616c-5d33-4171-8a97-ad7ebaac8cf6.jpg -739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_ita95033f8-4aca-468a-960a-aeefa9880273.jpg -740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_itbd5aefae-304c-440e-9abe-28b40ea41d88.jpg -741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_itc90835d2-a3a2-4bef-9e24-077b47d46947.jpg -742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_itd45dfcca-d458-48b1-bf8c-2adaf9da3f4c.jpg -743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_ite3dc8a22-58e2-4905-917d-da565ad41567.jpg -744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_fork_in_itedfe6585-5029-4c2b-95ae-12dbca555c00.jpg -745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it03fd8921-a176-4fc8-9437-e4bb8b667a79.jpg -746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it0e2834c6-c0bc-42ef-9764-cdd42e544e66.jpg -747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it1fc07da0-d6f7-475b-8d32-856ed30dc00c.jpg -748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it26e520b8-8060-428c-8434-bdeeed144ab5.jpg -749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it2f81fd99-e1d6-42a7-98e1-e70a9394aa53.jpg -750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it4069fd61-1a7e-4a09-a553-5378619b2275.jpg -751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it51c21d30-44c9-46c8-948b-28c9d4d97edb.jpg -752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it66f505c4-a209-4018-bfd1-754ab80e371a.jpg -753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it68775994-014b-41b9-b40b-3b05d76880bb.jpg -754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it6d9f0820-2c04-441d-9884-fe759c16dde9.jpg -755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it72148b74-4b95-4554-9dfb-b0fe6f1d6d4f.jpg -756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it7cb43f40-8bae-46e1-b8e7-84c540322c8c.jpg -757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it8071aa26-166b-4827-af4a-aa73193c2c60.jpg -758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_it83e98e26-e5d2-47d7-a869-4faddc9a01af.jpg -759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_ita954930e-ce95-4e33-8646-469f8a62665a.jpg -760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_itb454923c-8000-4d85-a9e3-8e5d998f98d2.jpg -761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_itcbce212f-7cb9-41d2-9749-edfa3aa6b770.jpg -762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_itd0474f12-5c6c-4181-8759-1a2ec5e4c07e.jpg -763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_itd44663e6-4e24-4d58-bcbc-e47d14569964.jpg -764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_itf4ced494-821e-4de3-84fa-1981f485ce21.jpg -765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_itfc4e9627-4626-4e21-86df-e2beab49ba73.jpg -766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_itfea8635e-1e71-4da7-a18e-478b3d6d6938.jpg -767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_frisbee_in_itffac507a-d97e-459f-a413-13b201e6fa26.jpg -768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it0852fe7b-f1a1-45f2-8184-d2374977a2e4.jpg -769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it1e5057c6-52a3-4a45-aa5e-4879f94b7e8e.jpg -770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it27b2b517-bcd3-4452-b98a-21f8d8c5b757.jpg -771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it37139445-5255-4336-a7a7-2bde3719c5c6.jpg -772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it50c13b7e-03f6-4f5d-abc3-334d651f3967.jpg -773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it6724728f-4ab5-4bdd-ae7d-c9ef15a79626.jpg -774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it6890821a-9d6d-4254-be8b-5c77aac545fd.jpg -775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it6a5a68fe-427b-42c0-8953-d8295497b4ac.jpg -776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it6d8273a8-7268-4e28-9212-ef4856f6c383.jpg -777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it79a737b6-4d37-440d-bbf2-2cc42177417f.jpg -778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it7b886dd8-ef8f-445c-9117-381bc1b6dc50.jpg -779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_it9293a5ec-1b5d-4d8f-968e-1bb5f822506c.jpg -780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itad8c60f9-1813-4016-9b5d-7815a122f440.jpg -781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itc50d1268-df93-4d14-84d9-bc7913487cee.jpg -782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itcadd7356-2d6b-45a5-a799-c12b1e520ac9.jpg -783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itcc4b3e62-e3fd-4ce4-aa8d-011c41edde35.jpg -784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itd05bb45f-dc17-4d70-9852-3d5ea2903848.jpg -785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itdcb5da5e-2510-4260-b97a-26247404463b.jpg -786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itdfab1445-277d-4e11-9405-6ca7d4b1884c.jpg -787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itf68ebb9e-6700-4b90-8da6-651c8496ef14.jpg -788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itf90b8cc8-7e1e-4388-a624-f4d41cd18314.jpg -789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itfa2ec36f-e48c-486d-9186-cdb5487de5b6.jpg -790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_giraffe_in_itfd377c0c-b2df-4262-86e2-b09104d2cf23.jpg -791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it02a73dd0-7c53-433b-99cc-74960e885972.jpg -792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it0b0bbe5d-5b57-4ef3-ba3d-715d3f7dc84f.jpg -793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it12beb2c1-82e8-47af-89de-83cfe1b29b12.jpg -794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it2ac45fb2-645f-4a98-b175-027caf96fca9.jpg -795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it3d13c7e2-c9a4-48b6-8715-9e0c2feb7c4a.jpg -796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it3e571235-5da9-414a-833f-5b68d54f829c.jpg -797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it3e8e470a-5807-45e4-8991-397091913cf5.jpg -798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it51714f78-86d6-4bf5-a639-daf58675bcf1.jpg -799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it613fa99b-33aa-423f-ad11-e79d96cbb9cc.jpg -800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it684907e1-f58d-44c0-b365-3fcaa2426598.jpg -801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it6f3a6e0e-1df9-4749-8ecf-64c92d68f4c6.jpg -802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it74c2bd1f-3fa7-4f30-890e-b3ab6b23d966.jpg -803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it81807c8a-666b-4849-b08e-e0842814eb60.jpg -804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it92ba51e5-8b9a-4fa4-ac48-6f31d3bb7b6f.jpg -805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_it93e3d05b-29eb-43d4-bddc-b353eeea56f9.jpg -806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_itb44ab57a-0b2b-4b64-a2bf-12c073ceef7b.jpg -807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_itb7adec5c-1108-467c-a9a5-f0a888695112.jpg -808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_itc764bc91-b4ca-4a42-9bd7-6aa3303125ad.jpg -809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_itc7a22318-6be6-4279-bfb2-1ea88661cde2.jpg -810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_ite29423ec-35c9-442b-9a29-2961a041cce3.jpg -811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_itefcd8b6f-45ac-4aae-9f34-084250fead23.jpg -812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hair_drier_in_itfc5337f3-f3d7-4e04-9cb9-49f89e3c95fa.jpg -813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it0a9addf1-2a74-48f9-b48c-3fdf96608a0f.jpg -814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it1019e51c-6eb0-4c2a-a318-44eb1e64daec.jpg -815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it12305d87-fc37-493f-b327-b99c93f2b047.jpg -816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it249107be-d44a-4aa6-a967-a1a3a4828b93.jpg -817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it3ae8ab09-71be-42a1-b819-092cb38f73c4.jpg -818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it3b4cbbc6-5416-4daf-972b-330538addc2f.jpg -819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it3e28de79-d68f-4e4f-9a83-247e561df690.jpg -820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it495eb51b-c642-461e-83e7-137743da1dee.jpg -821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it5f9ad644-51ba-4408-a2b5-fd87d7912175.jpg -822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it70004f75-5f44-4d73-8598-27cc261673fe.jpg -823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it7a711589-88af-454f-820b-0d284fe192a3.jpg -824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it8149b1c0-e81a-46c1-9fd5-3d5c78a80a51.jpg -825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it93fa1235-3227-42e9-be03-995cff83b007.jpg -826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_it984f1234-be90-4d50-b4c5-810b2237c86a.jpg -827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_itb9ebf298-c8a5-4a6d-87dc-d24c3105b8f2.jpg -828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_itba5b295c-a3ae-4961-a5f0-546415dd2752.jpg -829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_itc67a3691-05eb-48d5-b235-b20480c1d1f4.jpg -830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_itd939b9dc-142b-4e89-9f98-2713da2c8b79.jpg -831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_itda5b4ef9-46b2-47c7-91ee-a716675077ea.jpg -832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_itdcd888b1-83b0-4836-853a-dafa726b2204.jpg -833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_itdf0e89d5-1c4a-47af-ade4-e61487761da8.jpg -834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_ite6001080-273b-4ff7-a36f-571244a5ba81.jpg -835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_handbag_in_itf3c845d7-a8d0-420f-add2-71c25e222e08.jpg -836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it0bae36e9-6323-463a-9de8-2790984d30f5.jpg -837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it1157e823-4c1e-4d29-a5dc-07a65f0764b1.jpg -838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it1b4d26ce-72c3-4ff4-83d9-2b654b8f1d7e.jpg -839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it1fd5cbcd-e68e-44b3-8f5f-aa9e823435d4.jpg -840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it245bf81c-652c-4521-91e5-62feb4d2a0da.jpg -841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it310e0b18-93a3-4b3d-a6f3-d15c42e2ff1f.jpg -842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it4d72a04a-9d1f-4eef-92ef-5aff0dc03093.jpg -843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it5186fff2-9af6-49ec-8831-393fd85690ad.jpg -844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it595da461-69be-41cc-a626-180ca127887a.jpg -845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it7009dde9-e66e-4fc8-a832-ff6470d7a09c.jpg -846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it843226e3-1f35-4698-94d6-491286dcfdb1.jpg -847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it8c34c197-b1fb-4eb3-b613-366945c64c6a.jpg -848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it93d1c7da-1414-4612-9593-658d13dde827.jpg -849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it9b2ec230-33d8-4c3e-a3e7-56ff5c81511a.jpg -850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_it9be72e91-bbe7-4beb-a869-1a332932fd23.jpg -851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_ita4baa778-377d-4cfd-a0a2-33809892ebc2.jpg -852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_itbe5fbb7b-764f-427d-91c9-f9ff31b8fa36.jpg -853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_itd8ac4a84-99d0-481a-aa4d-77bc9fcdd46a.jpg -854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_itd9270117-dec7-47ee-a82d-c4d05f27dda8.jpg -855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_ite2d4d225-32d4-4a60-801e-047426471454.jpg -856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_itf19743aa-7687-4cce-b268-19fe8f31a1b3.jpg -857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_itf2b9b5e1-ca37-44b1-9e7b-91e77ac592d1.jpg -858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_horse_in_itfd7b6963-3a7d-4618-b7fd-d5d8e3a6aeda.jpg -859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it05facfdc-9786-43ef-8480-ea5cfdbf6a42.jpg -860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it1d18d733-118e-47f6-9bcf-5689cdc979f7.jpg -861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it313061c4-d828-4cc4-970a-d58672c1a166.jpg -862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it3205af6c-01b4-4ed1-908a-10d673cf36fe.jpg -863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it329087c6-fe71-4a2e-83d5-714d9b8ab2b9.jpg -864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it42c262f3-aad2-40d8-8e4b-9a4799f30908.jpg -865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it4baab3b8-e019-4102-9d68-1ffa382d2bc4.jpg -866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it576933aa-4099-40fe-bf67-797eb914445e.jpg -867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it799218b2-876a-4ae9-8ba6-3c4bdc0a023b.jpg -868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it9d5a29c6-7ac8-43b2-ba6c-cee3b1b92bd3.jpg -869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_it9e63c55c-1483-4b89-9b41-6ce50091edc3.jpg -870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_ita15c8d1b-4014-4f81-9fb8-739cee51bade.jpg -871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_itab32a057-4d75-4aac-803d-94873df68c3b.jpg -872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_itace03bb3-a39e-41c9-9476-97eca232e274.jpg -873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_itbeedee66-dd7a-4c48-870f-e3cea5396f63.jpg -874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_itc757bc91-f45d-465a-8789-24b0f79105e0.jpg -875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_itccf40196-c689-4d8c-a52c-35973755605d.jpg -876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_ite542c5b5-ac6d-4daf-910b-2cd4441daa71.jpg -877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_ite6d7829b-0098-4415-96fb-b439df2fdf2f.jpg -878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_ite84d05a3-0242-47d6-b982-2481515261dd.jpg -879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_itf33822f1-f0f9-42ce-89ed-4430b8e85b16.jpg -880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_hot_dog_in_itf48a8830-1024-4351-8cfd-ce1893080fa0.jpg -881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it05cde235-022a-4995-b187-d542296da7fc.jpg -882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it08e0e088-1dbb-4334-96ab-0455e7c32586.jpg -883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it17c6545f-e312-49a4-be4f-3bb3135f8368.jpg -884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it1e12e2e0-1d72-4271-b719-aa476e0e23a6.jpg -885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it2472ef66-a369-4a18-b5ae-bb27f12cd175.jpg -886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it263281c3-54cb-4ed2-90eb-0d9d4f3b3e62.jpg -887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it280e38d1-8baa-406b-8ffe-1ac920f741fe.jpg -888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it45bc40ea-a5c4-41f5-a3aa-b9dc47ed7eb0.jpg -889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it46f88f1e-b947-40f3-b448-ebcb6b19cd81.jpg -890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it4d5fd4dd-1f74-4d88-a80f-2cceeebbc044.jpg -891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it59501b24-1f9a-4f9f-91d5-e5d4b64459f1.jpg -892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it75ad1037-8e58-480d-9852-1a39c939bf3e.jpg -893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it797eef3d-e3a5-41e3-a480-0ad487e6eb1e.jpg -894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it8ce5929d-262b-42d6-a398-d0c9445cfec8.jpg -895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_it8dc39ee9-e405-4ce2-90cd-b021508e8876.jpg -896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_ita0005df1-96ea-49eb-9f83-32ea236db772.jpg -897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_itb10393b9-2577-48b1-a720-173c9eaaad72.jpg -898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_itb62216da-ab6e-4b90-a337-ac36d7f90ce2.jpg -899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_itc7324d8a-aadb-4471-a909-29f17577cfcc.jpg -900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_ited8b52f5-a8a2-4828-a5cd-0440386a9090.jpg -901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_itf00d882c-6e3a-45b2-afb0-41da2f505e64.jpg -902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_keyboard_in_itf4536fdb-fa44-4bb4-8a58-dd77e168192f.jpg -903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it0852f78d-7ba8-4171-b91a-184020931843.jpg -904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it19dca76c-c457-4bb6-8a49-ebfffcf80bdc.jpg -905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it281d65ae-4c1d-4fee-9126-3fea1b157bcb.jpg -906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it3591634c-15b5-4c4a-91d7-a4ed2ca67ed5.jpg -907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it365c43b7-62bf-4aaf-8437-30a1bed4e59b.jpg -908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it47aa3233-4044-4639-9712-532745a97989.jpg -909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it4b963ce7-02f1-4aa8-981f-d8d257e55afe.jpg -910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it4f93f8ea-2d21-4081-9186-2524fa9055e4.jpg -911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it57e0a850-73a0-4a54-bc9e-efa298b0aa21.jpg -912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it5e0e9a7d-a0ab-4f0b-a6eb-9a1d10a6a766.jpg -913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it5e7229d9-f728-4e5e-a39d-28f1e4553292.jpg -914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it6197a31d-aa17-4eab-a3a7-3c2123c56bc3.jpg -915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it66f4c8e7-a3d9-4042-9d87-168bf960ae7f.jpg -916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it6718bfc4-b65d-45f0-9b9e-2f520ac27939.jpg -917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it71377cd9-0e6d-487b-bf10-5f1d6ffc4106.jpg -918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it750ca132-417b-4524-a10d-80d19226d028.jpg -919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_it9714b8d6-8b50-4628-ad0b-2190a6808311.jpg -920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_ita328b55a-ae14-4861-b04e-d03bc7927dab.jpg -921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_itcf5dc108-6b08-450a-91ce-a375c854c7dd.jpg -922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_itd1f5be32-6b78-4bfe-a63d-bcb865298bd3.jpg -923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_itd77a1a39-9d67-42e5-bf82-d07c506eea4d.jpg -924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_itda13c8de-fa92-4708-ae81-dff6a55ee0ee.jpg -925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_kite_in_itf6fcfe49-dfea-4c66-bd11-82e34cdb3a07.jpg -926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it00bece02-db2d-4764-b19f-6f725995e2c6.jpg -927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it0b8df839-6584-49e5-a72a-d9e61d90ce89.jpg -928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it0f3ef559-ea87-4749-be19-244865f394c8.jpg -929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it21af2f06-adb8-4d1c-a0df-31f7c0209e10.jpg -930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it235637c6-ec96-4bb5-887f-ab9911f057c3.jpg -931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it2a214cac-a8fc-4b65-a5ae-4091987a01cf.jpg -932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it49c93b2b-cf88-4d6b-85e9-c198e74d37d9.jpg -933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it4e9db0da-d5b8-422f-9044-1f7a8ad69e0b.jpg -934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it5d809562-2d23-4cfe-89ab-86fa0b0fd592.jpg -935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it68241e4b-ffe2-48e7-8c40-f18d5e90ed61.jpg -936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it778c1d8c-3a58-497e-9524-f5dc2b6d9768.jpg -937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_it77911940-afa8-4c97-922c-805f5c62e716.jpg -938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_ita1f681a6-1742-4c73-b95f-80cddf82d713.jpg -939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_ita7771c14-3d5b-4b20-971d-1a3b52df7d0f.jpg -940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_itb964c8d5-d7f0-4b7d-8aa8-3bfd56eb7eba.jpg -941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_itc6317bb0-9e5f-41ec-85b0-f4028c968ab3.jpg -942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_itcd70c6a5-2886-44e0-9de9-400a5e3a06a4.jpg -943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_itd1343525-c68c-4fbe-8955-bc51728e7f9c.jpg -944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_itd857a2ad-8cbd-4b5a-ba34-557d7e0e4da3.jpg -945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_itd9781fac-af34-4063-a412-db61a7051454.jpg -946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_ite70cd2dc-34c6-4bca-972d-eed295d2c2af.jpg -947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_knife_in_itf3a47686-ab20-42f5-bd24-c45165936cbd.jpg -948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it037fd8ac-2d9d-4032-9711-ab9d41816801.jpg -949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it0eda2b23-bb07-46db-9710-1190d9af8214.jpg -950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it0f61f164-8eb5-4cb8-b6fd-88dcd0e89946.jpg -951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it19f0021c-7fa9-486e-b854-c6470e5affb0.jpg -952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it38525038-cde4-4de6-9b41-5a1732a00ccc.jpg -953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it5cab0879-dbab-49d3-b554-4bc6cef7aec6.jpg -954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it63134f2e-1563-4f61-8ff0-d062fd7eb5b8.jpg -955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it67b417a3-cb8b-40a1-a7a4-a332f73bf5f6.jpg -956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it705efc07-943e-4785-bc8c-c4b32752bb19.jpg -957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it77f2277a-7689-4b9e-93be-75d90bb416c0.jpg -958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it7a6769e9-185e-4e67-8f1a-5e8928237822.jpg -959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it7fdff4fd-a6b1-425d-94dd-d5fa6da6bfbb.jpg -960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it8a33f873-4fe9-4f4c-8e9e-9dacb1e70f45.jpg -961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it9342a2bc-d151-40aa-9833-826b9056227a.jpg -962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_it96238876-40e8-4c78-9a5a-b6eaacb38299.jpg -963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_itb90fd944-76d4-46d7-91de-230f96d51cf4.jpg -964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_itb9501f88-daa3-4df9-b8d4-699d7012c0eb.jpg -965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_itc4b7e456-7827-42f5-b811-385ea907ce83.jpg -966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_itd03a004e-05c5-4092-bc79-0ae6fb5687de.jpg -967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_ite34f808c-5c01-4b74-99b4-ea64fc90a118.jpg -968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_itf424ff80-0558-41c2-917d-f97871dd6f14.jpg -969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_laptop_in_itf5140315-6038-49a2-bcb0-3edb0a7a3d6f.jpg -970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it00a1eea2-d955-432b-89de-ba22d01c61d5.jpg -971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it019d8f02-5df9-4197-aeb3-85ae6aaaaf32.jpg -972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it08937b5c-c645-429e-bab6-2e8ca4b636e7.jpg -973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it2c16cfe5-842b-4f96-baf9-b9cc064affcf.jpg -974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it3927f952-2540-48b9-a630-f0201ba9bdb4.jpg -975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it4d70c078-2554-4f7f-a53f-98a155cfd09b.jpg -976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it5ce8ce9a-622a-475c-8d4d-1c4f8b639633.jpg -977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it65360d7a-b38f-465b-9d74-0e932a7c1bea.jpg -978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it6a47dbc6-67fd-4ea5-869f-261ee1e9a7f0.jpg -979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it74a670cd-0c86-4a9b-9122-39eb07d8e847.jpg -980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it77b58b8d-07e6-4f23-bf83-b3ada8c41b82.jpg -981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it83467338-d72a-45b4-81f9-089192f14543.jpg -982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it8504d7ea-c0a8-4a52-b67b-039ae152412f.jpg -983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it8bb44fa4-e265-4629-8a81-2a4ba72ed2fb.jpg -984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_it9dde31cc-7eeb-456b-8cf6-70f1825fabb9.jpg -985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_itacaf3cf3-ad0c-4350-b506-0d6cfa1dd966.jpg -986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_itc6a4254e-3885-4cbe-b58e-8460205c3e14.jpg -987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_itcfb915e2-6952-4060-a794-8a12211fe8e1.jpg -988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_itea9fac92-0957-4a1a-884e-3b383663e791.jpg -989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_iteaf3232a-4ab6-4036-a571-36e3fd631c88.jpg -990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_itf5901e8e-8a28-4c66-858c-21b3ebc25afb.jpg -991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_microwave_in_itf76d71e4-eb83-4949-8e0e-d82c6060b91f.jpg -992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it0c13d8d2-a2c2-4b81-9b01-21afd890d063.jpg -993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it201c6982-06d0-4123-a99c-1d2672100c2f.jpg -994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it2513fd37-a083-4cfd-b567-004a4fcd3846.jpg -995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it2c79c718-53ff-4cd3-a9c6-b541bd08a1ca.jpg -996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it31b1ac4c-e98b-4513-a0a0-2224081ed0f6.jpg -997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it6047d2d9-2200-4183-9e4f-3ea6adea0f72.jpg -998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it639d01d3-7cab-4029-a53b-0c33bfe68881.jpg -999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it79593a6b-5374-4b6d-99bb-2c2a5832068d.jpg -1000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it827d73a7-f447-4fee-a331-8acf4ac7ede1.jpg -1001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it83bf91cf-a672-4cef-bd50-1f4c0a9232b8.jpg -1002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it913443d1-3af9-4566-a1aa-0fdf3c6f5896.jpg -1003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it9449719e-0e69-4ee0-8548-a98e6588ee43.jpg -1004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it96bc9bc9-b532-4121-be15-9470fbe7345e.jpg -1005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_it97d8703a-63a5-421f-9236-10adbd410bad.jpg -1006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_ita1064824-6d3e-448a-b41c-66c6d1d4e318.jpg -1007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_ita346ea8b-d282-4128-9f80-a945b7c318dc.jpg -1008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_itb893d133-bfd6-46c3-8d0e-9cb800c9c846.jpg -1009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_itc11f6cb8-e3d8-4a6e-a66c-8d05263ea4f1.jpg -1010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_itdb3e8a31-1b33-4377-ac83-721d5f8633a2.jpg -1011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_itdef513ff-f448-4967-8252-50045117f151.jpg -1012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_ite0ac16c2-cdb5-467a-aad3-32b887673ccb.jpg -1013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_itfb12cb44-a6ae-4470-80c3-71f62d5a7d49.jpg -1014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_motorcycle_in_itff397112-9b80-4781-9a00-af31f6a5a977.jpg -1015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it0ba4a0e8-c4fb-4ceb-a604-50ff82ad3607.jpg -1016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it0bc64cc1-0a73-4916-8e99-20c2c1c88127.jpg -1017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it10efced6-3f03-42b2-aef0-d858e2da5e88.jpg -1018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it132f59ed-aac9-463d-8da4-d31d292e5114.jpg -1019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it2ef18964-df09-4cd2-8bb5-31a2b42c1c09.jpg -1020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it320c3384-1589-4c3a-9d83-7590ea8e2607.jpg -1021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it3214a6f2-a3b4-4612-bd08-efb6bf5f0647.jpg -1022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it36ea948c-6222-4f74-b122-99dc2b6198f6.jpg -1023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it380c475e-6371-40d7-9014-786f16c8262f.jpg -1024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it38fe8c8b-8234-4c04-ae61-83366ee464ac.jpg -1025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it39b0246d-9d7c-4424-83a0-00d1740333e1.jpg -1026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it6302e301-b459-4413-8f0f-8eb1fa245801.jpg -1027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it8af47140-1403-4a6f-9b4d-652f24c07af6.jpg -1028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_it90779244-2cfd-42c7-942c-a6b352706dca.jpg -1029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_ita6c24203-afcb-4f1b-8916-f6ece252e41b.jpg -1030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_itbbf45e48-a3ca-4a21-8ac6-152817779c54.jpg -1031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_itbd6e8fd1-9934-408d-b953-a30542b4d05c.jpg -1032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_itc1eeeb90-f38a-4ce4-bbac-cd29984836af.jpg -1033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_ite288b221-c014-4798-80d6-d5c09d52d0e4.jpg -1034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_iteba9fab4-ddc9-407f-a5a8-b448ddcf7c69.jpg -1035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_itf0b810d6-c42e-4e03-91dd-97beba26507b.jpg -1036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_mouse_in_itf55e1018-ad5a-4723-a00e-7a3b1ecccb5b.jpg -1037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it02a1146e-37d1-41cb-a60c-1300dd6d64b3.jpg -1038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it03d62e9f-f415-42e2-b544-acb7d9a0912b.jpg -1039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it1ba32f3b-b56a-4093-99b9-636b3ed9cd37.jpg -1040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it2619f9ca-876a-4704-a782-6b495aeadfce.jpg -1041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it26ca58f7-0f8a-4ad0-9caa-5bf8e2df1f11.jpg -1042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it3b058510-7887-4db5-b817-27b53d38bddd.jpg -1043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it4c5bf873-643f-4644-9c8b-f43db437a276.jpg -1044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it550d41da-bd9f-4079-99c9-7efb9b6e1482.jpg -1045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it596b38a7-4265-447d-b586-11ff6bc587e8.jpg -1046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it5cc075ed-176a-40b0-8332-22713df73929.jpg -1047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it62c3931d-bca7-4225-b756-c640e727bb85.jpg -1048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it7c4a5f81-2c71-4747-82ea-595482a99c9b.jpg -1049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it846d983e-d055-458f-8794-1bc14162a7f7.jpg -1050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it85e239f7-1d93-442b-b8ad-29564cb8efc6.jpg -1051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_it9f50f453-f9c7-4c84-8e66-5dc7a9146b5c.jpg -1052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_ita86dc72b-7ac0-4828-ad4c-9108c8d600f8.jpg -1053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_itae956a27-ce73-4b51-af2d-9c6ccbf63e62.jpg -1054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_itbc133aef-6f3f-4af8-8ecb-5157175a097a.jpg -1055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_itd4c42846-e361-46e4-b04d-3e32e5fd2d8a.jpg -1056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_itdc9f344b-7227-4459-a5a9-4484d0a9cedf.jpg -1057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_itf1ccb855-e247-4d8c-9806-bdd14a1828f5.jpg -1058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_orange_in_itffc6fee1-046b-48de-8ff9-b31acca3422c.jpg -1059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it06943efe-c4f5-4b56-9f0d-40f656153ca0.jpg -1060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it139dac3b-ec78-4a5b-87ab-7e0812f65e2a.jpg -1061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it1622758e-0c1b-4012-92bf-9981a4d0998a.jpg -1062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it1d0a408a-95ae-46cf-8b96-ea3030c17995.jpg -1063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it4171f798-155c-4e6a-ae56-2f4c30760070.jpg -1064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it488534bd-76e8-4e33-aeac-6af54576c034.jpg -1065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it5e8498b7-dfad-4c4b-a848-ae381f4a4be1.jpg -1066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it63646353-8e82-4995-870d-5a67adaeb97e.jpg -1067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it8dd3a188-3dd6-4086-bd97-811ae104f859.jpg -1068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_it9beaafbc-fa9c-44c3-907d-4109991aa7a9.jpg -1069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_ita1f94091-9f5a-4019-8098-8e0b6d42cd05.jpg -1070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_ita7aee501-e6c5-4011-acdc-e4e92fd7c9e2.jpg -1071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_itbf102af9-d4ba-4aa1-a4af-87b2d8588a6c.jpg -1072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_itbff20939-a9fe-4e75-8d99-f7345a2adce7.jpg -1073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_itc12875b8-c08f-4cee-a0aa-0b0c7e163a2b.jpg -1074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_itcbeeab96-0d78-484a-8196-9885f7f04f03.jpg -1075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_itcbf88b22-a407-4dd9-b1f9-3b7d3d869444.jpg -1076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_itd7a9f8cf-c1a1-45ed-9583-574d9b1770a5.jpg -1077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_ite064da23-3656-47af-9e27-fe885e3c56d7.jpg -1078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_ite7a2da81-536b-4c63-b4de-f45d2a0696bd.jpg -1079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_iteca19578-70db-463e-a093-ba7bc51756f2.jpg -1080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_oven_in_itef74e355-2422-47cc-8fb2-6ab6389ecf1e.jpg -1081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it078a1bf4-ec89-4e93-b0ef-ef3b8d4a74de.jpg -1082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it16825883-ba1f-4859-bdaa-ed07982e00ce.jpg -1083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it3ff539cf-b710-4a42-a1ae-46fd6e11cac1.jpg -1084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it504de78e-fa1d-4945-95b9-08e5ba7678a8.jpg -1085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it524c9742-7664-476f-bf70-0c75b2c44708.jpg -1086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it5d526718-60c2-4303-9c64-aa20d94b1e0a.jpg -1087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it687aea48-c769-474a-8867-2001dd027bb3.jpg -1088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it6f64f51f-0cb3-4f4c-a4a4-27e903010d95.jpg -1089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it77243985-709a-41d4-bbc4-88a43a73d60f.jpg -1090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it7aa67c45-dc94-4106-83b0-0772bbc0b4c1.jpg -1091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it7d01d0a4-7af0-4856-86fc-6a62ce159041.jpg -1092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it7f7d8d10-185a-4ad3-8c9a-719dc42569df.jpg -1093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it8f44d748-0fb8-4c30-a22a-2db794eaa9ea.jpg -1094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it9050869f-d8d3-4fc9-8d7d-69b76d7112d7.jpg -1095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it90c5d10a-c8df-4edc-9c86-a83745ef5351.jpg -1096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_it979d1863-e1e7-4605-b1e5-edbb7ed7dfdd.jpg -1097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_ita37ace18-efe1-41f9-868f-99db23182e4e.jpg -1098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_ita86641d9-6161-43f2-b00f-8d25338ac4ef.jpg -1099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_itb3ef0612-f855-418a-aa47-12b8a5403ad8.jpg -1100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_itd4263056-beb4-4e09-bb01-3e8e582d3bf6.jpg -1101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_itec89c310-72b6-4349-9482-214a5b7a7c50.jpg -1102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_itfac9523a-fa5f-44bc-aad3-db6d2dbd2d0f.jpg -1103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_parking_meter_in_itfca482a9-fa51-40d7-9384-923073293a0f.jpg -1104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it03f12248-dd86-4d20-9fa8-28d4c9e4eaa2.jpg -1105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it0f3f7cb8-fbdb-4080-a1e3-2c4c777c460e.jpg -1106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it381c3258-805d-47d3-925d-130b74a62d17.jpg -1107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it3b275be3-b63f-4710-a20f-61a816dec360.jpg -1108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it3bb31027-db60-4f41-9e58-22ea41dda9d8.jpg -1109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it41823e9d-40aa-4667-be90-88f6434a32c1.jpg -1110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it484a5cbb-ef4d-493f-9a02-bbdcd8e1f053.jpg -1111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it498b8d39-d7f3-4bd8-a5a1-56219786dcb5.jpg -1112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it4ee503a1-39a5-4f4d-80fa-8b25af985b3f.jpg -1113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it57513d70-bae3-4841-8187-a5655989497d.jpg -1114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it59d3da78-5aa4-4ab5-bcf4-d1b626248508.jpg -1115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_it6224bab0-4322-44cc-b98f-43b163780dea.jpg -1116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_ita5539b04-e415-4d6e-aa1b-7a6c1d7cde6c.jpg -1117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_itb4a4abf1-759e-4e40-bc8e-52900a8ca88f.jpg -1118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_itb99ca131-80b4-40b0-8407-4d6608dad258.jpg -1119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_itc6d9443e-457f-4b9e-916b-ddfb57faec43.jpg -1120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_itc7e91511-1ade-4b91-8adf-c0d1f5f6eb97.jpg -1121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_itd4911bb9-ca19-4469-b957-af9af4476025.jpg -1122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_itdd68d312-49b0-47b5-9d67-8bf46757b4c6.jpg -1123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_ite1bf6201-47c7-4a15-8195-81818e0f36dc.jpg -1124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_ite2815c0b-68ee-498b-a0b7-260c64ec7a0c.jpg -1125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_ite76300dd-d12d-46bf-883b-3d651af02a4a.jpg -1126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_person_in_itf05ef3db-c951-4c88-bfe6-09c06b8ef99e.jpg -1127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it029dbab6-e715-4d43-815b-3e64ce413c83.jpg -1128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it0acdbf33-c54b-4254-a5d1-28e66db31fb8.jpg -1129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it113fb084-377d-47a1-b018-91e4d5311a32.jpg -1130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it1a87cc20-85c6-42f8-a2ff-e451fd9239c1.jpg -1131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it1e6ab42f-1aa7-48c0-867c-9cb10c14e658.jpg -1132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it26eaa8b3-8ef9-4285-b703-201077d81278.jpg -1133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it26fac81b-4418-45af-8d90-1fcb05d6f4b8.jpg -1134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it31d70373-2904-4819-b168-5d4db6c74933.jpg -1135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it33efba7b-5b9c-460b-83b1-7e47f41aa536.jpg -1136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it39976234-1b91-4591-850e-942ac059a76b.jpg -1137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it406ac6f7-caf6-4d9c-866c-a880a12b8f30.jpg -1138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it4e905940-9504-46a8-bee3-b7fc02781651.jpg -1139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it4f2846e1-7c7e-48c3-96cb-4d79c08cd8c2.jpg -1140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it5539bb3f-6a2d-460d-8da4-e4a83102d326.jpg -1141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it6347b1a3-1326-4d86-8567-2c01ea76d6ac.jpg -1142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it729f6ae5-92be-4835-8cfd-7d426f228af7.jpg -1143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_it844ce643-b131-4c85-b081-76421434d2bb.jpg -1144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_ita1e5328f-6e35-43e5-9c28-15a4f0c4067f.jpg -1145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_itaebe3d09-0ef2-4545-868a-09ddb6d77c2b.jpg -1146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_itb9101c9a-e4c8-4705-bca2-e5f8f69e9408.jpg -1147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_itc25ede6a-3a00-4125-b8ad-0a8b5559f213.jpg -1148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_pizza_in_itd2934676-5fec-4958-b853-6426989ec622.jpg -1149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it0c1a25d2-bd59-4a41-89d1-41f406c4a7bc.jpg -1150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it1b2ab3e3-9129-4044-bcbf-4717860a5dd3.jpg -1151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it27f2f065-cfc1-4626-8a9d-eec2c8208cf2.jpg -1152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it293d93a9-a2bd-4fee-bd39-5c208bc6de19.jpg -1153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it36e2583d-1f61-49ba-a3a4-f1942132ff37.jpg -1154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it3af35317-0662-4092-a386-05a0618e0d30.jpg -1155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it40b9864e-7e0b-4ecb-94be-a7a0a19b759b.jpg -1156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it529818ab-ea55-4f82-a0ef-c3eb4c3d1ddb.jpg -1157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it58f8206f-0c99-4429-9e64-1bfc877ba1c5.jpg -1158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it602284a5-da59-4b2a-951f-6f149c8e103f.jpg -1159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it621df203-9e96-4db1-8ca1-606d9c37f83b.jpg -1160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it673393ff-e0cc-448e-abea-4222b1e1c271.jpg -1161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it6a1c24df-87ff-4605-b804-809f71252919.jpg -1162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it72edbea1-cad1-4955-b036-7ff592da2776.jpg -1163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it74af1bf3-32c3-40cc-a2e7-e8edfff33701.jpg -1164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it7eae69ff-08e8-457c-82ef-057abc97f054.jpg -1165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it809e664f-2c4b-4863-a583-959a7cd519d0.jpg -1166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it9478f871-70e8-4c89-980a-03b89e86268c.jpg -1167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_it9842d59d-f869-4afc-a484-de1dd552245e.jpg -1168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_itd0c29e15-47a5-4768-8b5b-74b0ed5ac19b.jpg -1169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_ite7d73895-bfe6-49f4-aa70-02a88ef20034.jpg -1170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_potted_plant_in_itf6d2e493-e01d-43fd-b4c6-7b8962263dff.jpg -1171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it09f42a56-5be1-4fd2-8d2f-2949106a4c29.jpg -1172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it197063f3-5d78-420f-9ebe-be73b93cf109.jpg -1173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it2955a87d-757c-4e4e-8c3b-e6c2daf04e5d.jpg -1174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it2d3d54c2-df7d-4428-b238-7a057fc334e8.jpg -1175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it358aeb50-24e8-40f2-9b9c-259e2f75d5a9.jpg -1176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it3beb3a69-cd3c-479f-ae77-d7b52d0f074f.jpg -1177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it448e7cc4-4588-49a0-bd09-510d7ac35411.jpg -1178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it4948d4d4-cfc2-4428-b5ea-ca0304d677b2.jpg -1179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it50d99b0f-a95b-4b34-8d40-a89b89977a8f.jpg -1180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it5290a01f-9191-47cb-b9d2-9d64fa83f0af.jpg -1181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it53aa6d20-d379-4046-9dad-33962f12e1d2.jpg -1182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it5d9e28a4-7b22-4873-ac78-b872f26101f9.jpg -1183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it5e139a5b-78b5-41b5-aaa3-318ddaa60e99.jpg -1184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_it6910dd62-bc72-4c6f-93ba-e4216f8cb063.jpg -1185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_ita601be34-41fe-4f44-9ebd-e916ff23987d.jpg -1186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_itaf16798f-62ba-4642-a52a-d9c2a3c35518.jpg -1187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_itb0b7c1e0-6808-43e5-b8c9-a789b85295a3.jpg -1188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_itb709a31d-54c7-46f0-8b0b-9df7ecc8ea6d.jpg -1189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_itda0f6c3d-2ab2-4e35-80e5-93fe08dcfcc4.jpg -1190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_itdafc3f1a-e26c-4a7e-ab64-4e0014095df0.jpg -1191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_ite9e99fc7-b89d-4d08-b53f-62179598a6ba.jpg -1192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_refrigerator_in_itebcaffdd-afd5-484c-93be-f3a7176d1336.jpg -1193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it017c5ae3-ef08-4717-ae69-902232f5e432.jpg -1194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it1f2a228d-8d09-4fe5-baac-3afda2766732.jpg -1195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it384bebed-9441-49a1-9901-a4b94458a133.jpg -1196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it3d07a636-11ae-4fe0-a753-f74b67b678e4.jpg -1197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it49655d59-df2c-4d8f-8697-8cbe168518f7.jpg -1198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it5c17b2df-0956-45b0-8fbb-c5dc0b2f5ad2.jpg -1199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it5fef75b9-2b48-42f8-a7f4-7f9f7705bcf8.jpg -1200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it62f1b0bd-06b2-49c2-a494-76c18c836d8b.jpg -1201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it8393563e-2043-4cd5-b1a2-34193f7acf17.jpg -1202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it8c50a3be-bc52-4993-ac41-4af69d1c0cf8.jpg -1203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it936db5c8-97bb-4df0-a5ac-fec60940ab81.jpg -1204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it958d7780-947a-44a8-9c86-e6ba9f5b5a1e.jpg -1205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it96ae9489-d564-4254-92f9-d99818a046a1.jpg -1206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it9c45cbf6-f8b0-478f-94f5-0571d723c7a8.jpg -1207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_it9f1bac92-93d2-4c5d-b092-8c89834c39f0.jpg -1208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_itb8f91884-45c2-4435-9c2d-04f3cfd1c55d.jpg -1209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_itca4e87aa-f436-4eb0-95e5-3e4d93e8911a.jpg -1210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_itcf8c3254-4d79-4c48-b84b-86b8832def55.jpg -1211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_itd5c20137-0270-41f3-859e-99e10bb66279.jpg -1212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_ited11e2aa-967d-41b2-9592-2fca55891404.jpg -1213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_itf3f7f066-bb6e-47b9-9c9c-0c29ae88669e.jpg -1214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_remote_in_itfff4434b-1dd1-4c8c-9b37-da7d775a5e1f.jpg -1215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it035ec4bb-b934-4d13-a231-9478c5395b18.jpg -1216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it0b367f1a-be5a-4353-9edd-51855aa51152.jpg -1217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it0d9e3985-5ebc-4700-9573-3481b26bb2e3.jpg -1218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it1b6806d0-4d52-49e8-bfb0-5bf9f643fd21.jpg -1219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it21f02a1d-ecca-41b3-9f50-dabee6159e33.jpg -1220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it25d3fb04-5553-489b-9152-0a403cdbf678.jpg -1221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it2ad3f872-5fc4-4b85-929b-6e14dbe2b55e.jpg -1222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it3f867fba-b7e1-4f57-8682-dc0f24a95f19.jpg -1223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it427c6df4-166e-41b7-9d1e-6831f4a8e5b8.jpg -1224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it43df8c59-a225-4019-9a03-46b9e06f4a0b.jpg -1225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it47e9fddc-1c75-440a-95ea-fee251597b6b.jpg -1226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it7210cb72-4edf-4379-b60d-3803525461b5.jpg -1227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it73e3970c-e95f-414c-8e4e-97c54d716494.jpg -1228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it7ed1b364-5d8e-4a40-8e0b-78760e9cca62.jpg -1229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it80ee6c9a-0353-44bb-83f4-a78b753a8a95.jpg -1230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it821f52fc-f7ed-4c0d-967d-3b9e0508855d.jpg -1231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it86b9fdb5-ebee-43ab-a88a-d20da0b07139.jpg -1232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_it88782572-d794-477c-b109-642e0e50bf4b.jpg -1233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_itaa499183-b16d-4218-9032-d1cc2adf1885.jpg -1234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_itd01e4720-2313-4a0b-8483-2911fa804e4c.jpg -1235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_ite842cf07-5c22-4197-9ccb-55ae83b2483b.jpg -1236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sandwich_in_itf48c65a8-a25d-41e3-ab52-825b3fcbee3e.jpg -1237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it01a2404e-c7b0-474c-843a-ce5f6997265d.jpg -1238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it038f4e66-7def-4b52-a7b9-2c56af4bbafd.jpg -1239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it03d8dd00-1476-438b-8bc3-23105fe8a787.jpg -1240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it0654f73f-a9d5-4200-845c-b84ee5b0d526.jpg -1241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it18ec8946-19a5-4442-9d1c-e6d6c076e37d.jpg -1242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it2c7dfe9c-671d-42f8-9341-ad60a1de46d1.jpg -1243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it4dd3e75d-73ff-4c47-99db-1f685a5e80a9.jpg -1244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it4e7f1af5-5bcf-49d1-b502-80fa64a219ab.jpg -1245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it51db3a7a-52ff-4754-95ae-c0decfa70738.jpg -1246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it57cd8941-3b43-409a-9299-64a82524469a.jpg -1247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it5aca01bd-e42f-4d95-a7db-f646fe34b2f0.jpg -1248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it64069b8b-bb70-487c-b8e8-3dc043fe3c56.jpg -1249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_it650b7c10-9ce1-4bd2-941f-2dcdfbe6c02e.jpg -1250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_ita1574158-82c6-49df-bb57-7b350d1431ad.jpg -1251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_ita6b60f69-2df6-4f7f-971f-9e392f0ffb6a.jpg -1252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_itab378a5d-2f46-4c87-b43b-f595564bc442.jpg -1253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_itb8cbd55e-924f-4eb4-a00a-ae22bbba8c17.jpg -1254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_itc3b3e90e-5eba-4bff-8137-2d7bda0f629c.jpg -1255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_itcb7248a7-7664-4224-9e22-061dd2022a54.jpg -1256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_itcced3641-9dd0-4efa-9022-a711cd3bdc8f.jpg -1257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_ite64fa41c-a755-43ee-9ed2-09640e5eaeee.jpg -1258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_scissors_in_itf9c928c2-fad7-4797-be0a-b7d94c711179.jpg -1259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it048bbebe-e317-4ad8-885a-81099bb42f0c.jpg -1260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it14eccd07-5626-4f45-b323-2dd0a9ebc30c.jpg -1261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it1f0f3ad6-36f9-438a-97c0-de67f75b3bfa.jpg -1262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it36ffdfe7-eed3-463c-babf-7e873d3965a6.jpg -1263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it403bceb6-03df-4576-9590-1d21869e6b9c.jpg -1264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it507c455b-5ed1-4d03-80a8-859e276f3edb.jpg -1265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it573e88de-3f74-469f-8ae4-7b61135a267f.jpg -1266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it60fe9ddd-2f2a-4f4f-8154-2aa65fe5b83e.jpg -1267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it632dd737-9528-46c6-978b-7b23a9ffef2f.jpg -1268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it6c68065a-e962-438d-892f-a8301e1a0e32.jpg -1269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it6d74933b-fc54-4a32-b42b-a14aff013095.jpg -1270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it70f7ff42-2b38-43bf-ad8c-1d9a36c54853.jpg -1271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it783deacb-ff47-4cec-a5bd-41b3792d0273.jpg -1272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it7c1048a8-6224-4821-962b-c6e6e5f84482.jpg -1273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it7c6037b4-4b35-44a5-9391-d62957f6130d.jpg -1274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it8b3dafa7-f60d-4123-8f55-f6ffbed4bf4c.jpg -1275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it93172d7f-4e19-4fd4-80de-5ff767d45010.jpg -1276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_it9deac90f-6573-4478-9f11-9f9c82c330d0.jpg -1277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_ita2d6f400-e14c-49ed-8f28-4a74954ad9b3.jpg -1278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_ita8068844-203b-41ef-8591-af87445f7245.jpg -1279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_itd40b0bc9-4327-47e8-92b8-ed38e96adc05.jpg -1280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_itf37aacca-ab9f-4b3e-9ce3-843272738fbc.jpg -1281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sheep_in_itf94e42d7-0c6c-45f5-8a26-904f5c407063.jpg -1282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it00ed9846-107e-42cf-b575-230785a58cfe.jpg -1283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it022190ec-ee38-45ef-a3ba-4bf8d4b1fa99.jpg -1284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it247e2298-b287-41e6-b48b-076a8f354087.jpg -1285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it2956111e-7bb2-4b2c-8809-6f48f36a76e6.jpg -1286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it3057fd57-ef4b-458c-b930-d5bcd841ff2d.jpg -1287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it314f150d-4438-4c6a-a9d3-5194f9bb2911.jpg -1288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it5086be85-1512-4464-ae9e-d62d39d49a58.jpg -1289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it6c247de2-3489-461b-bba0-d44adce780f9.jpg -1290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it6c4eb9ad-dd2e-4fbe-9d19-6b3ee09e60bb.jpg -1291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it87e388a7-f55b-45ad-b178-c4ceeccd265e.jpg -1292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it8a582288-28ba-4502-947d-5991eb75a8d7.jpg -1293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it9075c118-a27d-4738-80df-70e5897308c4.jpg -1294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_it9a18990d-36e3-4120-af62-a8e2cfcf3f2f.jpg -1295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_itb9465262-e88c-4503-9a41-95bb1c71b461.jpg -1296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_itbf85a091-26a8-4cb9-8bbb-5e9772087139.jpg -1297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_itce52e734-ae02-4ca6-bbe7-404d1aeb6c54.jpg -1298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_itd0ca1d27-95b3-4412-9ffb-1db840713368.jpg -1299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_itdb3eb70f-d68d-4ad1-a4b7-5ff26c2a2587.jpg -1300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_ite1d2ca49-e045-4769-8a1d-ed92ab90ed4f.jpg -1301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_ite94a12d2-ea2b-4409-af20-993a00238ecb.jpg -1302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_itfcbb5ec4-ff7f-4065-8e8b-dd4d3e717674.jpg -1303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sink_in_itfe1c85f0-5a04-4156-be7a-83457af09f11.jpg -1304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it00f4b453-0668-4d4c-b914-22214dc12abb.jpg -1305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it0b1deb74-3dfc-4557-847c-ec5c452facdb.jpg -1306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it0c8474b2-13ab-4ebe-99a5-d72947987690.jpg -1307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it2a8213ac-3bd7-49ef-bb0a-65121b23268e.jpg -1308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it2ff3ddbc-57ac-4fbb-8076-53a7f3577208.jpg -1309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it349acd74-3e70-47a6-852c-fe0a5d61a101.jpg -1310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it38d69deb-593e-47b9-b716-f562523b8ddb.jpg -1311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it3e879cca-96a4-4565-a669-618a35634064.jpg -1312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it4bb488cc-ee65-4f4f-809b-7f202430502a.jpg -1313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it58d191c9-b1eb-4c0a-ac7f-5ae56e7296bf.jpg -1314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it6b465da0-f056-4922-b755-ed2638947f70.jpg -1315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it892c8078-40b6-44e4-894f-a843e0ee3894.jpg -1316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_it9fa65059-c06b-4c7b-8da3-e505c33f4239.jpg -1317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_ita08ff98c-134b-434a-98a7-963ad6d5e5a9.jpg -1318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_ita67b40ce-d00b-427a-b237-0d325813d4a5.jpg -1319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_itb45f5af9-9241-406e-90ad-5401d4ac5b37.jpg -1320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_itc7dc763d-e86b-47be-8767-a7d8c5e7f417.jpg -1321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_itcb37da05-7d81-485d-926f-8ef702254767.jpg -1322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_itce05b7bb-d58b-419b-87bd-1b99abaacf80.jpg -1323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_itd28e1a9a-08e1-487e-a60b-ccf5ee6e2cbb.jpg -1324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_ite7d3c2cf-dd42-4fb6-aad6-bfe1e86eb311.jpg -1325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_itfbcca1f1-05c1-4f0c-bef9-f1b895f0db9f.jpg -1326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skateboard_in_itfcbff50d-be79-4e15-a4ec-f98e0c5adf57.jpg -1327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it007bc89e-0fdd-4363-b9a2-b92be298fb08.jpg -1328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it0e1354f5-cf67-4108-b728-7eed3813d149.jpg -1329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it20bd2a24-f2d3-40d9-8b3f-d394f19acab7.jpg -1330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it22ca83cf-2923-4430-bb0f-eaccacf1ca04.jpg -1331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it332338a1-9bdc-4856-bef2-ebd327062f75.jpg -1332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it440d9001-7705-467d-b2cb-0651c0f8a807.jpg -1333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it44404995-f76b-4208-a015-7f78bf52ace0.jpg -1334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it4dcc51a4-ac4e-41de-9d19-214d2dfc699a.jpg -1335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it50029a8b-8f68-4fc3-a9e5-bef0788113ca.jpg -1336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it588b888b-2386-44d7-92e5-fa9f2cba49ad.jpg -1337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it6c52878e-d796-4a9c-830d-2b0421aacd3a.jpg -1338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it8faafcee-253f-453e-a0ab-1a664ec98ac3.jpg -1339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it94b1ed0e-4a29-4fbb-b6cb-22d728d1be58.jpg -1340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_it9b12e2f7-78ef-4135-aee5-391c1890af22.jpg -1341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_ita2432858-10f0-42e9-8794-b4e3dc0d8c46.jpg -1342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_ita93f4f53-69d1-4923-b078-9a0c0559e3bc.jpg -1343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_itba9c7390-a564-4560-9626-208938470724.jpg -1344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_itbd8ed675-9994-43cf-898d-0826e722a68e.jpg -1345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_itc3dd61af-3d89-4e22-a1df-9baaae5d9a63.jpg -1346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_itddb667a7-a439-48b2-8002-a233a4c54e8c.jpg -1347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_itdfc62914-4d28-4407-9a1c-2a2cb1539433.jpg -1348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_ite32d4a99-26d7-4ee4-9248-eb1b76f36679.jpg -1349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_skis_in_iteb56ebbf-ad93-479e-8a40-33b4d938d327.jpg -1350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it139ba2ba-e39c-4f0d-8698-f5635d014b75.jpg -1351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it16eaf0cd-365f-4b56-abdd-3be14c582c1d.jpg -1352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it264b0558-b887-4ae0-b32d-7960f8f6b1ca.jpg -1353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it399e3bdf-2754-40b8-aa85-e7c5672a03a8.jpg -1354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it631e049a-e83f-4cc0-8ea8-336771e0b81b.jpg -1355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it7054e25d-671e-47c3-a5f3-c39ba380a963.jpg -1356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it7054e55f-8ac1-4afc-a27c-dff5d289d7ff.jpg -1357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it7a5178fd-a59b-4185-86bb-df5c81fc6a13.jpg -1358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it7d60b41f-2e44-4045-927a-c03b7a7614c1.jpg -1359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it7eb518ee-3b14-46b5-84b2-6d875ee3f690.jpg -1360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it803cca55-d1f4-471d-bc1d-a38b8fe85f01.jpg -1361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it84776f18-1a68-4787-bf14-9f29322ff41c.jpg -1362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_it8d74a3bb-0b9f-4fd3-8c10-ea5124c60761.jpg -1363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_ita1e37463-7cf9-4fc5-8778-f6c354738b4d.jpg -1364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_ita6aac9c4-b4d1-4860-802d-fc5a9d9139ad.jpg -1365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_itaa805d36-1f86-41b4-8342-164b53250b32.jpg -1366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_itbfaf0ad1-4030-471e-b04f-c2c6022b4ab2.jpg -1367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_itd0392e48-460e-41c1-a973-41cd28086cb7.jpg -1368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_itda5b9a05-df4a-47da-bf80-7ecf6498b02d.jpg -1369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_itdc879b07-8345-4343-945e-128bfe6d87c4.jpg -1370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_ite207f14d-48ca-4078-b5e1-f6f05bc04d0f.jpg -1371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_itedd7e7a9-b5c0-4637-a75f-10b8239712b1.jpg -1372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_snowboard_in_itfa71749f-d034-46fd-97fb-41354fa3de2a.jpg -1373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it0f4a22c2-209a-4742-aaf6-09c36ebf2e6e.jpg -1374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it155bdab9-09ec-4652-802b-1f0e000a446f.jpg -1375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it1a929251-b665-42e5-8eec-2ec58293f5ec.jpg -1376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it228ca570-6f62-44b8-8c50-6aad83b74bd8.jpg -1377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it24561b3f-0982-4676-8def-030a5012a173.jpg -1378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it3fee0e04-d19c-400b-be67-e793da86d94f.jpg -1379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it40e34926-e645-4ddf-8143-183859941ee5.jpg -1380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it724a2c6e-008e-4075-a046-8ab3c79ac67d.jpg -1381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it7864fedf-1cf1-4707-a50f-847c68442244.jpg -1382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it7b77ed49-45b8-4a2d-8fcb-5b554f189154.jpg -1383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it84659348-eff1-4051-8cb4-aadf819ba9b4.jpg -1384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_it965fd1c5-afda-41ed-938d-935beae09203.jpg -1385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_ita5ff35b1-dbe7-442d-b15b-4c241e8c6efd.jpg -1386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_ita9219b1a-f4ea-4c5f-b390-541be35c198a.jpg -1387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_itacb00465-7d8d-421d-afa4-03ee42e2d160.jpg -1388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_itacdfdb6e-756c-4108-affa-1f738fe5cb10.jpg -1389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_itc2f32b7c-c59c-451d-b523-978459aadf17.jpg -1390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_itc7e8ab7a-de18-4627-a3cb-ffe9b4cf1000.jpg -1391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_itcd4e4caa-6d6a-43aa-bee7-7e007645e314.jpg -1392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_itcf0f2034-e9ac-41f8-a556-4b6012e2cc2b.jpg -1393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_itde07ad9f-afb2-4c22-b6d9-f4b1bb4d04b6.jpg -1394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_spoon_in_itf6b330df-4323-4026-a9d7-86c17c001de3.jpg -1395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it0313406a-fc59-4b6a-b3aa-1b72d16e0c18.jpg -1396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it12d089f6-4d2d-4bd9-a31b-cebdaeff0f94.jpg -1397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it241ce149-8749-4251-b1bd-9986549ab891.jpg -1398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it24f044f2-a6e4-4bf4-8c36-cdf0f10b172b.jpg -1399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it28949fc3-bf7c-4613-9d95-85fb5b66fc48.jpg -1400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it3580f48d-e2c4-4413-bc6c-109c645cf439.jpg -1401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it39d3f11a-5c3e-46d7-969b-19a2a962ed75.jpg -1402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it4241e6c5-8658-495f-b2ee-1ac7581f5190.jpg -1403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it44f8d820-8295-42a1-a3c6-8ebc989a2393.jpg -1404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it510ff242-73ab-4fce-b6f6-05f1758c8df3.jpg -1405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it752a0821-f806-4cc1-a29e-ef80b9fe0f54.jpg -1406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it7c00a04a-050f-4604-a8fb-640f2d2bb851.jpg -1407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it806dbb4e-2344-4df7-8bad-9f9c7c83dd5d.jpg -1408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_it9cc5fd4d-26ff-4fad-9094-448fa6db9624.jpg -1409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_ita83599f4-cea6-4a33-8893-91cf0367aaee.jpg -1410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_itb0f0afb2-55fe-43cb-8aa3-0263eee2d269.jpg -1411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_itb3548346-64c8-4358-942b-b204b172e1ea.jpg -1412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_itc07b6b2f-9af2-46c6-be97-53260be4de3c.jpg -1413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_itc163f44d-8490-4809-841e-85679600146c.jpg -1414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_itcd85b2ed-e83e-4c28-bfac-6e6409ff1415.jpg -1415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_itec56b86e-b7b3-40e3-b3ea-ceee55ca4854.jpg -1416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_itf458de0c-3d94-419a-afb7-ff9ccd7b9301.jpg -1417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_sports_ball_in_itf9ebda1b-991b-4786-8b83-511177c51854.jpg -1418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it05b342ee-3173-410a-bfa6-b74ae0e92137.jpg -1419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it1d473f77-69f2-4167-b361-f2867dc3beea.jpg -1420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it23ba89c4-6ecf-4f0e-83d7-c1748e6d7e5a.jpg -1421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it2f5b6260-28ff-42b6-914b-50b2edede593.jpg -1422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it2fe8215c-f886-4498-be39-a4e8a08ee92a.jpg -1423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it36e24fe0-2c97-4591-b38a-5db11af7c16e.jpg -1424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it3944707e-64a9-4d4b-bcf8-7dd8fc6fe59a.jpg -1425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it551ed911-c12c-409c-b00e-5b75c6a982cf.jpg -1426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it5d42959d-94b4-4d57-a796-d84e9b4ee7a3.jpg -1427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it5dd85f8e-8d8e-4994-aaf1-59106ce713ac.jpg -1428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it635af37a-d873-4f9a-9820-67109f7a8be5.jpg -1429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it643d930e-1412-4e1b-9ca1-b25850f912bd.jpg -1430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it6bb36e5d-9f20-493a-9b10-fbc667e22dbb.jpg -1431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it76a819b7-e085-42c4-aa51-cb298b7f78f3.jpg -1432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it77d2364c-b8c6-4f25-89a6-9a2eb7f83e19.jpg -1433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it9154e435-765d-40e4-9474-480e0c06aa3d.jpg -1434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_it9bd25a76-e806-433a-b517-f4995ca3ab82.jpg -1435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_ita1e0c23e-88e1-4a1f-bbd0-4f10f7d1c575.jpg -1436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_itbd0c9806-d0b9-44f1-b334-2d740800b60f.jpg -1437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_itc26bc83e-329f-4691-bad9-bc1d8ab558d5.jpg -1438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_ite30a1133-d0f5-4d0f-98e9-2497a5d98cb0.jpg -1439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_itf73301d3-8027-42c3-85f6-7eb1589593c7.jpg -1440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_stop_sign_in_itfddc5890-44e8-42fd-b6ba-dd2efad3cfd9.jpg -1441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it028c1bb0-22d0-4e95-a3db-f5302ea87bd6.jpg -1442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it0b610cac-5db6-4ac4-9dc4-fed7930e0933.jpg -1443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it1b63f549-31ba-4c70-9c6e-0a3a70555636.jpg -1444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it2b5e7103-3fca-4a06-b9f3-8239aae2704f.jpg -1445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it3387a0d5-b223-4ec1-9bcb-8c8c52b1fbf1.jpg -1446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it3bd1dc6b-468a-4c25-a6a2-dfb1387a8899.jpg -1447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it410a1d25-53d8-4010-891f-7f54c7653149.jpg -1448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it55d5ef42-68e6-4d37-bf9d-b39805d53f1c.jpg -1449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it61e2527c-6d79-4269-bccf-ad8510dbb210.jpg -1450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it7190a845-7853-4285-9f81-7ad5101855cc.jpg -1451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it875e4bf8-f2e4-4bdf-94c3-05e8cac48d39.jpg -1452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it90ea277d-3683-4246-82bd-58a514217a57.jpg -1453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it91e921a2-e3d3-46e8-a836-d5d77702f0dc.jpg -1454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_it9d0b653b-fc5b-412f-9ac0-9856463af3c3.jpg -1455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_itabcae474-7e9f-46fe-bf5c-7ba307575a92.jpg -1456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_itacaec5bb-a388-49bb-8c4e-b1d6c8552212.jpg -1457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_itb9754393-dc99-4b43-b471-4f5943ba7f25.jpg -1458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_itbfb6748e-2e4f-4c54-b0c8-22e167d5b5d9.jpg -1459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_itce5a7e8c-e267-485c-a318-dbb6d206d42e.jpg -1460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_itd5716c31-5ec9-4dba-bc84-57231d0362ca.jpg -1461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_ite36eeb7e-fabe-41d4-be61-85f187f6ac8c.jpg -1462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_itee9eab83-c16f-48fb-a183-eeda01dbb926.jpg -1463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_suitcase_in_itf7f0323e-20d9-4797-8bfa-80bd267a1567.jpg -1464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it0f1d14ed-0910-4952-a17d-e3396a091b92.jpg -1465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it29ffe89f-ce21-4e0b-9549-b32589897519.jpg -1466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it2e2698d8-9486-4d1f-9050-6247317ac091.jpg -1467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it2f443ad6-a90d-455f-91e0-e8e337b69efc.jpg -1468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it31222697-1658-4f5d-9ad0-ccc4fc62ccdf.jpg -1469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it38e1ee1b-34ce-460b-9121-3e84b7da785d.jpg -1470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it3ddf1573-386a-4de8-9117-b048ed32d641.jpg -1471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it51c10323-99f1-462a-98ce-3560d226d760.jpg -1472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it521d5823-d0a3-42f7-98df-139cb1596305.jpg -1473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it5bf04f1e-f516-49af-9824-cde0d3231285.jpg -1474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it67b0c0c9-658d-4173-b904-011957ff38dd.jpg -1475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it78e84c6b-5794-4b60-a6af-c4fdd023002e.jpg -1476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it8ecba461-ef99-4b74-a734-34c4e88828f9.jpg -1477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it90dab1f0-0d8d-4842-adc4-f10908f219d2.jpg -1478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_it9bacc7b1-03da-487b-ba25-27d7c5486167.jpg -1479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_ita9c2fea1-6bd6-4de6-a854-2c29aa24600d.jpg -1480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_itb32da6fb-5729-4c9b-8ff7-10baa4f09847.jpg -1481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_itbb321d8b-7c70-4b4b-98a8-b4f5ea6bfdac.jpg -1482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_itbcc0191c-a691-40ad-b0d8-4414be2e521b.jpg -1483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_itbcc16058-0812-4bd7-b135-ba695890e2e9.jpg -1484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_ite534b0ee-3b89-495c-a17e-c88d4ab03ad5.jpg -1485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_ite8a20082-b354-4c75-aa4a-857c36a6ce68.jpg -1486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_surfboard_in_itfc2cb54f-a322-4ad9-8388-a1ae9716e869.jpg -1487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it08755891-b142-4a73-9d64-c67b03048cab.jpg -1488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it1b1ccfbf-d60f-4e14-bd4e-d14e5b65a564.jpg -1489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it29bae025-8ebb-4a23-a583-aff556b69b9c.jpg -1490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it2c21d8fa-05eb-414a-85c2-6035c922f1a3.jpg -1491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it2cf47afe-8f53-42ac-ba6f-095c3ca3e94f.jpg -1492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it35e470b5-534e-42cf-944d-9e533c83d058.jpg -1493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it487c02d1-15df-4bd1-9527-857f32c04f22.jpg -1494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it58ea1e47-3958-416f-be81-16e2dafd6e0b.jpg -1495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it76cbf8da-aff1-4fcb-bda9-5d7c5ce0a851.jpg -1496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it78f34ade-b161-4b89-b739-5e8e5280313c.jpg -1497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it7dff309d-f0a8-4aae-a646-02370c1490a1.jpg -1498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it82a6da76-9952-4acf-894e-9636b121b136.jpg -1499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_it9bbaba1b-9d5c-430e-943f-eb5788ad7f54.jpg -1500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_ita6806b22-511a-442d-b6bc-36fd6d34d6db.jpg -1501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_itb0a8988f-5543-4ef6-847d-ee7f3dafac78.jpg -1502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_itbd94f232-ab49-440d-9963-6d3a99828956.jpg -1503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_itc76d55f5-89cd-49cd-832b-78d3b6aef5a6.jpg -1504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_itca903bdb-b82c-4c5f-b85b-7418742bb9fe.jpg -1505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_itcd4e1d34-676b-4d33-be00-6312f234a8ce.jpg -1506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_itd0d91742-c517-47f1-bde1-c24eeb579d84.jpg -1507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_itd7fadafd-c0fc-4a1d-b6b4-7c47a34cd8da.jpg -1508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_teddy_bear_in_itdeda4744-ccb0-4281-9b68-3daec9ae58ff.jpg -1509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it31877a31-3d85-4226-820d-669a69fc1cdb.jpg -1510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it31ef9b17-180e-4ac5-b7db-26e1fe3a1277.jpg -1511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it33b43a99-8069-4671-9020-121705954884.jpg -1512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it491bf3cb-78a4-4b0b-96a4-f81ab86c2ba7.jpg -1513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it4c530a7c-beeb-467f-9bfb-8838c7139baf.jpg -1514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it582fbf6a-5ac0-407a-b121-9a2b0157cad4.jpg -1515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it59ab4c06-8404-4773-be89-bd9b963465b2.jpg -1516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it5f3d85a6-94f1-4b09-8953-b47b89d31ee6.jpg -1517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it63a662ee-f628-4d23-9a8f-3168ea6107d2.jpg -1518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it6cc3d20a-c6f9-4d95-8a0a-a6b523b6fc28.jpg -1519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it703429cf-5e2c-4329-8a25-52902477a34e.jpg -1520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it758828b7-adc2-4034-bc37-c6eb127129a2.jpg -1521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it7d9aaff6-9e44-40e4-8e91-2fbdb1c77add.jpg -1522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it84487a95-5f86-4ab2-a0cf-d6a78957c6d9.jpg -1523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it8c868d41-981c-4a13-8aa9-c1ea3bb4142f.jpg -1524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_it96c28be7-32e0-4f68-b28b-fe4aabddaaf7.jpg -1525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_itc061e736-dcdf-4229-9dbc-87d381ccbea9.jpg -1526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_itc16e5bb3-fe02-4757-9d6a-81fc4d0372cb.jpg -1527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_itc2491f23-ebf7-426f-97fe-5b0e277b19c0.jpg -1528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_itc37c7325-4993-4681-a33f-13049b2b2d01.jpg -1529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_itd576882a-63aa-4a9d-b98d-b301027913c0.jpg -1530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_itd7845d61-806a-42c0-ac3b-aff8b0a38c66.jpg -1531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tennis_racket_in_iteb6289b6-5a53-4b95-88d5-6779c973dd4b.jpg -1532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it0a1cc236-2b81-4758-be59-77916b243e29.jpg -1533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it1fabcaf6-89dc-4f40-aeff-40fa8e21e2ff.jpg -1534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it4381093e-34a1-481d-be7d-15bd88eac4fd.jpg -1535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it4485fac1-c8ae-48ab-9805-f49f73cef93b.jpg -1536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it4cf11a62-6e46-4cf9-b024-a76b219c6525.jpg -1537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it500889ca-dd06-4b1d-be8b-0e3ec68332a0.jpg -1538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it51a67ed8-83c4-4a86-9b5c-4097976425e2.jpg -1539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it54372709-b2ba-4813-be6d-dc98ba214847.jpg -1540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it544d1a7f-03d5-4bcb-ade3-4f304f6e3740.jpg -1541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it6299827c-80f3-4b2d-8968-26578703ea46.jpg -1542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it7e5a8ff7-c0fc-40de-ab01-cc7905276102.jpg -1543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it82036b62-4376-448a-8457-42d250b96563.jpg -1544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_it88833202-b322-4912-a282-77c585387060.jpg -1545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_ita21ffe11-b281-47cf-910c-fed5a76c40a3.jpg -1546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itb5e9e563-a354-4269-b45d-1ba2807d2d39.jpg -1547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itbce453f0-8f0d-48b1-8f4c-f95d49e20d28.jpg -1548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itc0569465-1994-42b3-9dc8-a1632d5fe44b.jpg -1549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itc5fc2bb7-5bdd-40b9-b7e8-3ac93d8058f0.jpg -1550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itd691ed16-c3ba-44fe-b7d2-41c5d521f5a9.jpg -1551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itd86c27bf-5d9d-4831-a4ad-8a41369c34ee.jpg -1552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itd88f507c-b7f5-482b-b25a-bfb00f4792bd.jpg -1553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itd955966b-5eba-48d3-ad98-f815447f7afb.jpg -1554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tie_in_itdf5db165-30ea-414f-8eb3-59513398bb29.jpg -1555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it014ad2ed-1ce6-4283-aae5-b6bf5133f9d3.jpg -1556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it0f5adaad-646c-4126-9d82-e986c5d9654c.jpg -1557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it1b7ec41d-7965-4218-9f58-f354f72cc474.jpg -1558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it2084aef7-26cc-4ef5-abfb-7a54acb65bfd.jpg -1559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it236f4056-9ef3-46dd-a7c5-4bb49899f5ae.jpg -1560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it4806da6f-9e1c-4328-955f-1f97120408eb.jpg -1561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it48aa5216-be83-4ef7-a8ac-0aaffd805a3a.jpg -1562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it538ff670-d27a-4316-ba8b-86818dbdc352.jpg -1563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it581de842-aaa9-479c-9920-02cc2c7ca8b1.jpg -1564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it5a23c4bf-cbb2-4ae6-b02e-71d4b0561707.jpg -1565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it6c912fcc-1c68-4a99-91dc-51539baf4cda.jpg -1566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it6e55488c-3ef9-403b-b4fb-4924b69e2ccf.jpg -1567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it74cc7d80-7aa5-4071-9987-b5680aa95bfc.jpg -1568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it7c9ea633-0072-4ddf-b518-312aa0a78f46.jpg -1569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it84d33d65-4cac-4599-a595-36f04de9e7c8.jpg -1570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it989669b2-4dc9-4eec-88a5-f6ec15171e47.jpg -1571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_it9e58eff4-cb78-4d40-b489-44459f5e9f40.jpg -1572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_ita7669062-046c-4866-a3f3-61e5b5800b78.jpg -1573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_itb71b0859-c20e-4285-a838-fb568fbee299.jpg -1574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_itb8d5b6f7-9479-48eb-93a8-69c86f21ca6a.jpg -1575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_ite2beebb7-d643-4c18-8774-359a541dfb36.jpg -1576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toaster_in_itfae7f16e-2a54-4d8b-8875-c055366a8a26.jpg -1577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it0dc47957-a486-45a0-849f-a8cd4365db75.jpg -1578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it18ffacd7-ba0b-4fc3-adf4-da123142e8a4.jpg -1579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it2d5678b4-912d-4b42-a247-04c581a4e7ee.jpg -1580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it3d94dd75-efb9-4c63-be6b-7d6740a02d2d.jpg -1581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it5b23d89d-9bed-4996-9c30-3af335fc7424.jpg -1582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it69440e73-3415-4e44-b053-0206b24dd7a9.jpg -1583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it6aa1c60a-4162-4309-b9f7-60d7c631e870.jpg -1584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it6bc45232-e950-4cbd-af65-23c960119ea8.jpg -1585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it85aa9652-dda3-4bab-9b72-6811f6c65cf4.jpg -1586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_it98812e1b-bf4b-4010-9788-7188a13f5f4a.jpg -1587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_ita6af901f-d0bb-418a-8d53-fb82da934392.jpg -1588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itaa67dcdc-561a-4c74-9e51-10bf34f54b29.jpg -1589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itab9bb846-f739-42d3-b95e-e9f7890dbc7c.jpg -1590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itb02d850f-3695-4ba1-ba89-c874428546fa.jpg -1591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itc0d305c2-8c04-40ae-9bff-68684a63cdc0.jpg -1592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itc52146dc-d20f-4555-be9b-616e3f1316db.jpg -1593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itc94176c7-bf60-402f-a69e-7f480747c06f.jpg -1594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itd8969e03-47fb-4f71-9f21-3f2edd6cbe40.jpg -1595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itdb117339-821b-47f8-87d4-5286281e68e6.jpg -1596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_ite4acabaa-0562-4a8c-a863-bb640ea02daa.jpg -1597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itedda0395-90bd-4147-a71f-66ae678e52c5.jpg -1598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toilet_in_itfcd38df1-e64b-46b8-9d3a-7d8a0764feae.jpg -1599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it041f6f27-6667-4a98-bc51-b48f1609bb73.jpg -1600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it1d85edeb-ef05-4703-9516-ee6cf5b04d30.jpg -1601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it230e6b47-b01d-46a4-b14c-10fc97dc4841.jpg -1602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it2a545716-5214-4ae2-a293-0a2943ff1477.jpg -1603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it2abd64d4-0eb1-4310-9436-3fbfbdf2ea03.jpg -1604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it3911a216-927c-456e-9041-a2e695e5c9b1.jpg -1605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it53d4021a-e020-4065-b6d4-9b17010932a5.jpg -1606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it5613e1d4-771a-4161-9b92-444152d7435c.jpg -1607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it644e4ac2-2a5e-4116-a8f2-5e6575694e06.jpg -1608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it90cf67ef-27ba-4b9e-ab23-71c40f182438.jpg -1609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_it9948467e-df0d-4b61-99a1-a0c68b175d96.jpg -1610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_ita662a14c-9fe3-4d65-b0d0-93623311346f.jpg -1611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itc38ed0ba-75b3-4bda-ba7a-c416c9fc8f73.jpg -1612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itc83bd8fa-2d4b-498d-abfb-58d7d03e84b6.jpg -1613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itd0323dcf-1074-434e-87eb-8a3b89119778.jpg -1614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itd8aeb661-cb58-4940-bcf9-55719f78c50b.jpg -1615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itdc62fc9c-d8b5-495d-8a0d-fa57562214b7.jpg -1616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itdfbeacd6-f25d-45ee-9ba2-881005260567.jpg -1617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itec3f12a7-5032-4d24-96d9-93a87a95f2fb.jpg -1618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itee5068a8-f026-4240-a1fa-c01c4482db9d.jpg -1619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itfa5944e5-45cf-454f-b707-81342cc138ad.jpg -1620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_toothbrush_in_itff7e961c-fab2-415d-88e7-f948ddf2cefe.jpg -1621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it0b98049f-6017-413a-b9bb-085d8db6a9dc.jpg -1622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it1f053809-f4e3-479f-9d2c-880b3c00b276.jpg -1623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it231e5b41-25f1-40df-9e93-c5b022417367.jpg -1624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it2e622391-e336-4c37-a0c7-5b01f47ecb1f.jpg -1625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it3f026a61-8dc3-4f0e-b3dc-ed548c44cdc8.jpg -1626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it47434133-965a-4476-9501-a1d334ffee22.jpg -1627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it5c1697d1-9006-46d0-a318-4cc541010d1c.jpg -1628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it6fc26ab8-21af-4ff7-a7a6-7288f511b2c2.jpg -1629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it7c1baef5-a0d7-47f0-bf13-6be64552cbd3.jpg -1630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it7e527442-30c3-4d20-aca1-3919492f6b57.jpg -1631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it998c38a8-555c-468b-a40e-c9f144ee552e.jpg -1632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_it9a70fb9d-d0aa-419a-9270-31b65b3c6d10.jpg -1633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_itabc341cb-c2ff-4b1c-850d-81e553ba41da.jpg -1634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_itaf1724cc-3ab6-44aa-8a0c-639bbcb7d35b.jpg -1635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_itb4e0084a-708e-4aa1-833d-858ecb88353c.jpg -1636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_itd4cc8a1a-c0af-48f4-997c-7fd762d54c53.jpg -1637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_itdfe2dc59-5ada-45f6-97a4-6a9e22d455ed.jpg -1638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_ite297c1a1-e6f4-4d10-990a-ff20cf1899ec.jpg -1639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_ite5ee9cb0-f1ae-4e11-a944-192ed67e7c8d.jpg -1640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_iteca4d25f-e44a-4354-9573-7945827b2eda.jpg -1641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_itf83034e0-9a43-4143-b25e-9fbc99e33679.jpg -1642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_itfb51c39b-bd67-4ac5-a5ab-0ca91ab0d67a.jpg -1643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_traffic_light_in_itfedac6d5-3846-4d8a-a382-4f6b1d0987e6.jpg -1644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it1469c6b0-c57c-4280-ae52-d4233d809a22.jpg -1645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it2e898e01-2d71-47eb-8df7-b8d3647fc240.jpg -1646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it3982b198-696b-43d8-9bbc-1d6939b2fd81.jpg -1647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it4ba7c550-53eb-4c95-8272-4934c5955537.jpg -1648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it582a6c2f-5479-45bd-9c08-7fdc655db0b8.jpg -1649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it5e25e809-3ab8-4595-aa34-935d130a1ced.jpg -1650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it6ada3af5-1d90-4ede-ae24-eee6e46291d9.jpg -1651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it73fb4f75-f119-41b4-bde2-1986e511ec9e.jpg -1652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_it79cad0cf-932b-4bac-a655-db53f387882b.jpg -1653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itb62335e8-e7ea-49b6-98a6-90e593c012b3.jpg -1654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itb984d9ec-9806-4ce6-8b6d-324af43059ed.jpg -1655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itbdd69e80-f3df-4bac-ab26-aac98b0af22f.jpg -1656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itbf1fa067-1b2f-48e2-ac91-b6d06ab61fc8.jpg -1657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itc11a24cd-f975-4f38-a4c1-8b6a6d8621cd.jpg -1658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itc1bd4694-0806-433e-a6d3-c7e013efaa2e.jpg -1659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itcce47a3c-7f0e-4829-b3dd-cb298a5071e0.jpg -1660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itd2308c9a-910d-43dc-a21b-f00338a5fb39.jpg -1661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itd7802105-0238-44ee-b9c1-57f9d64bb737.jpg -1662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itdab3bf96-4995-440a-95ac-ece11420c439.jpg -1663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itdf7d3799-5224-45b9-8c06-2a3f40ae2cc9.jpg -1664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_ite32a0aa3-91bf-4ef3-80e9-af25981dc599.jpg -1665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itf02cb874-1464-4b5e-9275-011d7df9f3b2.jpg -1666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_train_in_itf7371d74-f535-4f96-8b58-5ecec2a3e1cf.jpg -1667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it0a749f20-e4d1-4cbc-a741-f2954440d5cc.jpg -1668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it0ad4bf73-1476-4333-9977-b2b247ebc309.jpg -1669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it10fe31bc-9921-4c2b-aded-87209de15be2.jpg -1670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it14fa2672-c44c-4002-aa47-a9a8cef296a5.jpg -1671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it154a4f42-ac8d-43cb-9b0f-19d70504aedd.jpg -1672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it15dbb690-9268-4669-a0c1-6366bf8d2cd6.jpg -1673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it1afd8e6d-700f-4621-ad9f-258583e724b2.jpg -1674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it21880730-e10f-48ea-8ed1-28e3b0179725.jpg -1675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it28eb80c8-51ef-48e8-b456-d5568dd501cc.jpg -1676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it2a96147b-9304-44a3-aaef-63ba199017cf.jpg -1677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it3d3a7306-9fa8-4762-a380-8069e982ed40.jpg -1678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it4250af14-0606-40cc-91ff-d6ef42a2dc35.jpg -1679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it43dfa939-0075-4a18-9c08-f0f6b3753d63.jpg -1680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it703a10bf-fcea-4a0c-b80e-6dd5b3cc9725.jpg -1681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it76def7fd-51e3-4294-938c-de2dce3fdb07.jpg -1682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it787ee720-1807-4eb5-b530-728cd2d4bc8b.jpg -1683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it78e15153-177d-412c-ba2a-41fb28d33e73.jpg -1684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it81d497bf-597b-41c0-9730-c0612cf0aa5c.jpg -1685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_it936aa7f4-c9f8-42b7-b301-5e1e4850c766.jpg -1686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_ita32f30de-66f2-42fd-912a-8cade508c4bd.jpg -1687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_itd10b5365-57bc-42d0-94a6-73ae519d61fd.jpg -1688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_iteaddecba-b439-4eaf-a3cb-5b4879afa2a7.jpg -1689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_truck_in_itfbb7ae46-b2c2-4d93-bad0-db9b964ec77b.jpg -1690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it0046905e-3923-4796-8a33-2a435880b27d.jpg -1691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it0b8b79d4-8dff-4340-b883-5f393c4857d1.jpg -1692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it10889d17-735e-4090-a2be-d783aecf214d.jpg -1693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it138b1483-8e06-4f5c-968a-7d00f1a0c78d.jpg -1694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it1b737e79-fd79-4505-974b-71a544bac319.jpg -1695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it47878dac-5eee-4ff1-b183-135d86d5f21c.jpg -1696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it47ad6fcc-141b-453f-9df6-d7a5079e137b.jpg -1697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it4c0f5363-a66d-40e9-8795-8acfac77a0ab.jpg -1698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it4dff9d7b-9f0c-40d7-b8a2-f4c121a2f2e9.jpg -1699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it5eb0b59a-8255-45d4-8a1e-b2d631b351e0.jpg -1700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it760da9b5-46e2-4cca-814e-773a99088f2e.jpg -1701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it81007e1f-c4ee-4a8c-af6a-b406000dfd00.jpg -1702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_it8dc52e7a-8ba0-43ba-9573-2855d57ac95e.jpg -1703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_ita72b36b6-a398-4e9d-a8af-b856a408a600.jpg -1704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_itb409b496-bb18-42b0-acab-9a5be558f1f1.jpg -1705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_itb6e73085-4d50-4015-9e79-1a52f29f8f76.jpg -1706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_itc1c6d7d7-eb72-4da0-a292-b48ccfc55b12.jpg -1707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_itcd361817-eba2-4980-9839-e96d86cf68f0.jpg -1708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_itd695420d-8d0e-4d26-bbff-3209f89f58e4.jpg -1709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_itd8086b48-d52a-4d26-9e89-1b772c90bb71.jpg -1710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_itead49770-58f7-4781-87c6-9d8ed11e18e4.jpg -1711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_tv_in_itf0c3d475-2c68-46d3-a5a6-3a1931f464cc.jpg -1712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it010c8580-70d8-4f8e-b8cc-9a61fe687bbf.jpg -1713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it087068cf-755d-4ddf-89c9-db0dce1ff2b3.jpg -1714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it1164d9d5-7918-4248-b26f-d366af1b0770.jpg -1715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it14febf03-a438-4f8c-becd-0f1e7818dad5.jpg -1716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it156d47df-b9d0-4a69-a653-558ba380b990.jpg -1717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it2af1a898-e2b8-4498-b166-6d4ce37a37ed.jpg -1718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it40e01dd1-98a8-4c15-b141-e57aa9e10298.jpg -1719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it41957960-fa7e-4414-a373-527f6044a479.jpg -1720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it5bb29bb2-a44d-4036-aec1-f1cf9e3c4a46.jpg -1721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it6eaad8ca-d627-4b2a-a50e-09b5db7e3df8.jpg -1722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it6f792094-8a57-4ca8-96c4-464d1cb94a5a.jpg -1723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it89817a78-5cd5-4dbf-9180-e1f4961eae79.jpg -1724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it9368ad79-ce39-408e-8cb2-9867f9474e7e.jpg -1725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it97713668-85dc-48f4-870c-839724170023.jpg -1726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_it9efa54d1-f901-4402-877e-1439a39f1e4c.jpg -1727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_ita538a44e-b25d-4faa-9f6a-92ec11604757.jpg -1728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_itb61589ab-8eaf-4542-b16c-a255c1a722e1.jpg -1729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_itc451de6e-bc81-4d32-b364-3320610a32f4.jpg -1730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_itc7e3f90b-fb08-4c48-b911-5c6109153f92.jpg -1731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_itd5294a95-330d-434d-a417-0df93b1c6f82.jpg -1732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_ite8478529-7a6c-4d07-bb9c-29511bc1a9d0.jpg -1733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_itf0784b2e-ccf3-47a7-ab5d-ae559c5af8a3.jpg -1734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_umbrella_in_itf678eb9e-0785-4db8-a6b3-73b0c1a3d741.jpg -1735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it0039e601-7e4b-4806-8aee-cd47942b2c29.jpg -1736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it00bb3d3c-4d2f-4f5e-bfd6-069bf99a70d8.jpg -1737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it0eac7182-ccf0-424f-9228-1f450524625e.jpg -1738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it0f5cf766-6043-4797-9e29-8c3d7b3209d7.jpg -1739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it1c6827f4-e85e-443c-a92e-41590c0a7f5b.jpg -1740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it1f576ab7-22a9-49c0-8d10-0645da4cbc75.jpg -1741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it2e3a6ecb-3d65-4915-a4c8-3b43e538ed4e.jpg -1742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it4b16e702-4a5a-463a-92b5-a5e23b6bb373.jpg -1743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it57d519a8-d66c-45cb-bde5-d2630320038c.jpg -1744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it5b6891a4-f1a7-4990-903e-5c0e3db95e35.jpg -1745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it5fc77190-6b78-472b-a96c-842bb7998763.jpg -1746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it7666608f-6b51-4e62-9825-74bc575a2868.jpg -1747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it7dcff866-b3d6-460a-aedd-96d125c3eb2f.jpg -1748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it7fc026b0-9554-4ae4-a8d0-4c9f9411d272.jpg -1749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it89cfcfcd-bb5a-47f7-9597-81c4e6c45aec.jpg -1750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it8daf4535-ff8e-4ce6-91b3-9ae528bdc881.jpg -1751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_it97a89a24-4771-4de4-afbd-50ddb53deb7b.jpg -1752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_itaf072a0e-c974-459e-89fa-437b3a56bb89.jpg -1753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_itbe0e5d1e-75b1-4dc3-9152-033e91bdafb3.jpg -1754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_itc3eb35de-c962-43e7-9bb3-6e336a727f19.jpg -1755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_itcd16c3b6-2905-414d-9ee5-874478261ae2.jpg -1756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_vase_in_ite2466591-6e43-4afb-984d-3b9ba232df23.jpg -1757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it1f59a44c-9449-42f8-9568-9ff700b35fb5.jpg -1758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it272dae58-0409-4980-8373-fcfe9be21a59.jpg -1759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it2a4ab72f-7ead-46c9-97c6-526cb6b6ac62.jpg -1760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it2bb75770-d763-41a3-9f1e-651aee5d6ba4.jpg -1761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it34c18e4d-afc8-452e-a064-3cda2790c757.jpg -1762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it3a9b4438-b753-42b3-804b-9129d0d2329e.jpg -1763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it44ba35c1-aad9-46e5-9e92-700885139af3.jpg -1764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it59385c21-ae16-4245-8d9e-b68c09269b1a.jpg -1765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it78e79ab5-3772-4689-a17f-712561b819be.jpg -1766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it7bab31c6-734b-48f1-92c1-00ff64b5f0c7.jpg -1767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it807275fe-f3b2-4d5b-adf8-447de6b4cec7.jpg -1768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it81b05436-de22-4fb4-afd8-e2517c7c02ab.jpg -1769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it86a9e09d-3200-4c97-b56a-a0bdce0b63f8.jpg -1770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it8bd4d913-e209-4b7f-8554-f98f72119bee.jpg -1771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_it8d0214ad-cde8-4786-8e39-53996c87b7c0.jpg -1772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_itb668a6c1-eee6-4140-af71-aba52bd9649e.jpg -1773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_itc80d88bf-bb94-4759-89b5-b3d69db75616.jpg -1774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_itd1ed7a4d-f220-4758-8b6d-0772619d0093.jpg -1775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_itd5707de3-2556-4de4-908e-491b6b0b7feb.jpg -1776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_itd591ebc2-ab6e-47a4-b050-92a12f02eb7a.jpg -1777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_itd5b197ae-c672-4bf4-b16f-ca5ab7596ca9.jpg -1778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_itdb1db99a-f536-4abc-8f50-84b4ee95c8a2.jpg -1779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_wine_glass_in_itebb00852-3318-4302-b7d7-331495152795.jpg -1780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it09e36dd1-0ef0-4a91-a884-79862a56eb4d.jpg -1781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it1eb8a6ff-ac3b-4691-ae29-b145ff0784ca.jpg -1782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it308804ca-0f31-42d0-a24b-01472d24dd5d.jpg -1783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it3450e3b0-5215-4186-9fb5-66b92b7268e8.jpg -1784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it3b2f4449-d22f-4381-9269-e235cdca2e0b.jpg -1785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it3d6c48cf-77b3-4bf8-86d8-530970c6ae60.jpg -1786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it47883b72-8827-4ba0-b766-a6ea032b87e2.jpg -1787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it59bce39c-0477-4fe6-999e-866340550af1.jpg -1788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it654e73e8-0b2e-4b13-bf94-470e15b6ebba.jpg -1789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it7085dfd9-902d-460a-b444-3c1c492a475f.jpg -1790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it746908ed-937a-4119-bc0f-106c895e24ac.jpg -1791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it76ac689d-d104-4d12-837a-0adb731faf0b.jpg -1792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it83bd9d8b-daf5-41a4-bd28-d0b8df049be8.jpg -1793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_it88216f91-a22d-4992-8a2c-2a4ccf8c50a5.jpg -1794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_ita0a18840-6378-4cbd-b6f7-773fbe732cbf.jpg -1795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_ita2698126-2b6c-43e1-8fa9-761673c23e64.jpg -1796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_itb0d3a337-2458-4802-abaf-d3cc4cc52896.jpg -1797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_itb0ff8277-f4a7-4b0a-a221-7b64bdb412fd.jpg -1798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_itb81074d5-b04e-4e6d-ba62-bdb11706c6ba.jpg -1799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_itdc6dd5d5-53c2-4e94-ab6d-f85ba5c3c5a0.jpg -1800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_itde9612a9-dc4f-45dc-a5e1-146fcd5a161f.jpg -1801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_itde990cca-9456-4bf9-99b6-532d790356d9.jpg -1802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_long_distance_photo_with_a_zebra_in_itea09709e-5f75-488d-ad44-5fbe7bcf09ee.jpg -1803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_airplane_in_it9cc817a6-ad6d-4be8-b1a8-45647691ac2b.jpg -1804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_bicycle_in_it2633334e-0162-4d0a-b433-31ecd850ea4d.jpg -1805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_boat_in_itab453886-3941-4fee-9a51-d261fab9b275.jpg -1806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_bus_in_it8cf1a795-6701-423b-bdcb-dd0bc381cb91.jpg -1807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_car_in_it70b0619b-6f5b-4c9f-abee-f3f6bd3f15fa.jpg -1808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_fire_hydrant_in_it45c49c83-255b-4359-9e2f-b5383dc2be05.jpg -1809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_motorcycle_in_it70df2222-54f5-4a75-b910-71db8e8f6887.jpg -1810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_person_in_it8109b7dc-7bef-461c-a587-39cf3fdfe137.jpg -1811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_stop_sign_in_it615aa72e-7e36-4d39-ad52-ce0dc7e5c3bd.jpg -1812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_traffic_light_in_ita9e9de33-673d-451c-8d46-373162250b9a.jpg -1813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_train_in_it71bc60ee-4b7d-4da0-ad41-481959e061c3.jpg -1814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_scene_with_a_truck_in_it3f074fe4-096d-463a-ae27-b425611e699b.jpg -1815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it011cf6c4-7b92-4385-aebd-baca306fd134.jpg -1816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it015eea44-2096-45f0-a9aa-321e486ac9e8.jpg -1817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it0177524e-636d-4e21-88a9-72740d2ad965.jpg -1818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it0615aeba-d21b-4eaa-82da-1231fe908b62.jpg -1819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it0881b80e-6b0d-463d-906e-753710152c1c.jpg -1820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it14ff6472-4d55-4607-a9e3-82b6b317db3b.jpg -1821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it18158617-0f81-4468-ac50-66cad6cc8479.jpg -1822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it199c3de7-7223-4fdf-833b-a2aa2a8cb702.jpg -1823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it1a641011-fc97-4afa-97f4-c2f024a97eb4.jpg -1824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it1e7f9b98-020d-4367-8315-28506055a50e.jpg -1825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it1edacfea-2f10-44b7-86a6-3a0e90275183.jpg -1826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it1f0b2ab1-3a54-470f-ab6c-4c1578165a78.jpg -1827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it24285d32-3121-46b4-ad07-98759adc08d2.jpg -1828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it25c8b55b-4dc6-415a-8a54-06311291c35e.jpg -1829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it29cb1baa-56bd-4132-a792-8a0e6e633228.jpg -1830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it2ccd60b0-e32f-47f0-b5f2-237a7544219f.jpg -1831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it2fbc6933-ac0d-4552-abfa-8abc9c6002f8.jpg -1832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it2fbe8b28-6a13-448a-9ea9-028e56ef940d.jpg -1833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it345d6aea-4e4f-4991-81f6-a052d8feb165.jpg -1834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it350d9693-378f-43f6-bd86-dbcd608a1a78.jpg -1835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it37009aa0-829e-4ba2-877a-0eb13f44614c.jpg -1836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it378307f1-4517-484c-9786-f76729da4484.jpg -1837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it37a3377d-7f25-4335-8ea1-652dc1cfce0f.jpg -1838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it37c88c97-d230-456a-9f30-d924bff258f9.jpg -1839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it38278ceb-4153-49e9-9de4-ff6459116cfe.jpg -1840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it3ae1f68b-42f8-49d6-a131-f53331fe2af6.jpg -1841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it3b9643a8-af21-43e5-8488-a956688648e1.jpg -1842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it3ef02416-3b6a-425e-8778-354b93efccc3.jpg -1843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it3f0b5c56-28cc-4c17-9b37-279911480b5a.jpg -1844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it3fc1c133-447b-446e-99af-e016884caeac.jpg -1845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it425f1b40-58ed-46d6-b851-f84ae7aa6a3d.jpg -1846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it42f1a06d-1fca-4833-9d9e-932561939890.jpg -1847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it43511eb2-11b5-4ecd-ba09-c10c20a81972.jpg -1848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it446b882a-631c-4eb2-8414-385d7459cf6f.jpg -1849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it45db337a-3dfb-40fe-b780-b0067a358d15.jpg -1850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it48bb5b13-9be2-47d1-ab68-a0167bf2bc2f.jpg -1851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it4acc330c-09ba-4deb-ad8f-da9501dd0c65.jpg -1852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it553fdf77-826e-4e31-be8b-0d6cae6e0fed.jpg -1853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it557cb95d-3522-4ce6-b55d-1221bf12230a.jpg -1854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it667e1eee-8f60-4d6b-9a71-1ab26b2eb24e.jpg -1855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it680f7ab6-6449-4d2f-a211-703cb7709a6a.jpg -1856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it68f1eaf5-c188-4c56-932c-ca2eb1dbf5cd.jpg -1857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it6e7cc18a-1aa1-4065-9aeb-b11a29f49b53.jpg -1858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it725b6bdc-db77-4fa4-af24-ecc76f4589cd.jpg -1859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it7294cf98-ccfa-45b5-99ce-1f58bedc71e5.jpg -1860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it72e35a0f-58a3-4a9b-91bb-c40e7dde2d97.jpg -1861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it74013f60-1589-44f4-a32c-cec1e57f7fac.jpg -1862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it75f39fd2-6f07-48ba-9947-c1c859e0d755.jpg -1863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it7a1b374f-3500-4b11-92c1-4a7dd123726c.jpg -1864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it7a3560d8-2fef-49a1-9b20-a3e25adf381f.jpg -1865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it7ca01a82-d4e5-415c-a992-2ea90c64a3f3.jpg -1866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it81c4906c-fb11-4771-ba96-23b958feafb2.jpg -1867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it8974ff6f-e028-4e5e-9020-c2fdab5bea63.jpg -1868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it8bf59d55-6913-4d7b-be91-34c19c98a6f1.jpg -1869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it8c4ed44b-b659-4b26-96fa-5f97853049cd.jpg -1870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it8ce700d7-5f86-4d66-90af-cb120a9ca0c1.jpg -1871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it93d128ce-b5fb-4809-b7fc-7facb9c9deee.jpg -1872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it953e2e62-d5d6-4261-9294-90f7bb8bbfd7.jpg -1873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it997046ae-cec3-4e7f-b406-69ffe967a401.jpg -1874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_it99c9ce74-c25c-456e-8ce7-5ab9ddc1cf9b.jpg -1875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_ita1aeb786-c847-4291-91a9-54c98f0f51a3.jpg -1876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_ita2c08147-3e46-47de-b17c-2a22685d10e7.jpg -1877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_ita5410f52-e562-490b-b9a3-be68289de02f.jpg -1878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_ita549a29b-f3bf-4ac1-aad3-7a3a5687cf2d.jpg -1879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itaa418b35-452b-4b22-9892-d02b32ab7d06.jpg -1880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itac167c0b-748a-48e9-80a7-6a15bb035273.jpg -1881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itaf389710-c456-4abc-b68a-920a79b24891.jpg -1882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itb23c6612-eaa6-4fbe-8a87-e179daab0d09.jpg -1883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itb9ae6993-e0d6-4bd1-8524-ab3385313d3f.jpg -1884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itba85488d-6e41-4ee3-b31b-e4269f44bc21.jpg -1885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itbbecff95-745e-4ac2-9acf-b66ec48714f2.jpg -1886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itbf3a8783-b536-4be3-a326-fc6c55a943fd.jpg -1887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itbf53c231-a7c5-4894-a168-7cdefe956d05.jpg -1888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itbf570b5e-3a94-4e44-bafb-794b20aabcd4.jpg -1889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itc0506a84-d8ba-4f93-9583-344f1c282ac4.jpg -1890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itc0543a6c-f0f4-4bbb-8437-9d2b5dbbf793.jpg -1891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itc1c3f808-bfb8-4059-9ee5-db1c58190abe.jpg -1892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itc3428733-dba3-4e9f-a80a-4b1fe5bd5299.jpg -1893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itc6a4377c-b5ae-44ed-b9ee-96c3eee26d64.jpg -1894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itcf9a73cf-8f9a-41ff-ae62-57c303bfd473.jpg -1895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itcfca5bfe-369c-4d48-adfa-0ab6025a8a3f.jpg -1896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itd055e90a-a6c8-4e99-b719-e5a76739056d.jpg -1897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itd0ab2f11-f696-4274-b651-10f2fdac13be.jpg -1898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itd1c8fac5-f35a-4b56-9ea4-04cba7aeb08b.jpg -1899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itd516183e-46d5-455f-baeb-74339728035a.jpg -1900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itd5b78515-58e9-4f07-bad1-8b4527d86e99.jpg -1901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itd630ff1e-e56a-4492-988a-3826ae23da94.jpg -1902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itdc96c34a-8aa6-42c8-b0b3-cecdfecbf9e2.jpg -1903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itdea12137-b14b-414f-ae99-396efd81dfd4.jpg -1904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_ite45d8bf1-1886-43cd-aaa3-1bf5b7cbc5a9.jpg -1905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_ite68e0348-4ab2-4b76-93fb-624725ca07ff.jpg -1906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_ite720b340-2695-461a-ae27-c9cefdc61d7b.jpg -1907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_ite914ba13-eaad-4e84-b9d9-95f88b53e997.jpg -1908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itea78a023-da50-47a0-ad22-029f279f0448.jpg -1909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itecc1a6c3-01d3-403a-9e54-994b06478379.jpg -1910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itee782caf-6b2d-429e-bae4-e9b01766d1bf.jpg -1911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itf5c1e196-a24d-434d-8821-8d07f2198036.jpg -1912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itf5f1462f-4865-480e-bb16-c1d5dde708e5.jpg -1913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itf6a4ee8f-2d02-4ac5-b565-68293629ed9f.jpg -1914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itf79455fc-4556-46c7-97bf-af312c426fdd.jpg -1915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_airplane_in_itfd4b426a-0494-4153-b89a-a3adadd33cdd.jpg -1916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it048bd2d6-cc5f-424c-ac86-1ad7d61df665.jpg -1917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it07a9b9ec-58a7-4ebc-9a5c-59d8d6edad19.jpg -1918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it08afd026-9afe-4465-a0cf-c86a0f135ced.jpg -1919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it09805588-1909-4d50-970a-bd7a820d1c59.jpg -1920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it0ac36445-ca63-4cb7-ab3d-ca43e285924f.jpg -1921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it0df4c1e9-b47c-43f4-ae3c-90ef3b1930c9.jpg -1922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it139c85ad-61ce-42fa-a9a3-97da2816463d.jpg -1923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it16f83dd1-5b40-4a03-98a5-8de4b333a70a.jpg -1924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it1ce289b5-85a7-463c-8d93-d56709d8eda3.jpg -1925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it1d475f98-1349-4df7-a24f-70316e53d36a.jpg -1926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it1da4dc27-7901-466e-8aef-290d531a19cd.jpg -1927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it1f3fbe90-328f-4aed-b890-a32a3953d5a9.jpg -1928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it1f60a6e5-342a-452b-b57d-e1cea76cda2a.jpg -1929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it211da17f-0b78-42f4-9d03-93e7658d5603.jpg -1930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it213fc074-63ad-47bb-93a2-2745051bc146.jpg -1931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it2f1f0933-f9c5-4e55-8793-139fdc6b21d9.jpg -1932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it308a064c-c743-4ffb-8fb5-83a2611d7ee7.jpg -1933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it32c01d1b-f9d1-4de4-a4a3-96e43c418605.jpg -1934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it359e3e47-820f-49cc-91a5-6f9d99cf59f3.jpg -1935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it38e0bcb4-0e57-4739-8ab5-4fcfc37df9c8.jpg -1936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it3bc21939-548d-4efb-9777-72e7b5833c5f.jpg -1937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it3c6701bd-13ee-46dc-bcab-2a89b74d3d52.jpg -1938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it3fb92cfa-072e-430c-ba6c-c0c669653a15.jpg -1939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it420c78a8-598e-4fa5-a54c-90d059e8b3b6.jpg -1940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it42617f80-684e-4ab2-90ed-b0901e6a21b1.jpg -1941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it444ff938-991d-4741-8401-e27ec909e40c.jpg -1942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it48e5cdc8-2a7a-4336-af29-f79595239ba6.jpg -1943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it49bc4df3-cbad-46a4-8379-0c6edefc1931.jpg -1944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it4b581a03-c7f5-491c-b621-36e7403f84db.jpg -1945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it4bcb0783-5a62-4ca2-a09a-312c0e6bdeec.jpg -1946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it4d3ef6b9-955e-44e0-a48a-46b245145347.jpg -1947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it4edab505-3a41-4aa8-a089-83649661cc98.jpg -1948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it5035414c-aec2-40b3-a118-34559db227cf.jpg -1949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it51f8a390-8c23-4060-94cc-31c48e2102c9.jpg -1950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it523e647d-52a3-46da-a30f-ec317dc1cde8.jpg -1951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it528f14b3-92ff-47b8-b075-27eea30de73f.jpg -1952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it52d03107-f95d-49ff-a6be-c719a25c552a.jpg -1953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it538a2d9b-27a2-49a0-b1dc-566e3160218f.jpg -1954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it57169fb9-6798-40ca-9f8a-e1eea462a2ed.jpg -1955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it58b99c15-7c3a-48d2-9653-f801cace08f3.jpg -1956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it5a3e6075-a87d-4efe-808c-50fbf4cfbe00.jpg -1957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it5b488bbd-7755-4e5d-a05d-c5224066e342.jpg -1958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it5cdc5045-a3c6-465e-af24-c5cb43239545.jpg -1959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it626aa69e-6cb4-4594-9135-e218396d4976.jpg -1960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it68461724-0b85-4d51-933f-2b911695d843.jpg -1961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it6a8b8a32-3d0c-4ea6-9dad-ab7252b343a7.jpg -1962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it6ba35fd9-0f5c-461d-b874-1eb38830027c.jpg -1963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it6f817f9a-8552-4e6e-b29c-848737489127.jpg -1964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it712421db-6f2a-4c0c-a30c-d7dd98ea9c2a.jpg -1965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it72da92f8-b14f-4cd6-9803-c723b301031b.jpg -1966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it78863a2c-b173-496e-b512-5863d9e90bfc.jpg -1967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it78ceba31-f5d2-478a-8d11-188ee9964fad.jpg -1968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it8232c88d-0afd-4a26-b90f-a99dee8dcab9.jpg -1969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it8235306d-f1b8-4388-a4e2-72c058a27281.jpg -1970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it8246f535-7e1f-44df-8ecc-fa880692adb4.jpg -1971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it834e788c-995a-49fc-838a-6c27da50e6cb.jpg -1972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it8a596110-f755-4506-8813-af0acab1e9b7.jpg -1973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it8af7d00c-9ff9-4b56-a1eb-212af85102af.jpg -1974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it904ce6b4-101d-4e53-9a84-9f3a9ec5a4b5.jpg -1975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it911db596-9d36-48f2-9904-3f42156d6dbb.jpg -1976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it9476f72d-1e76-48b7-834c-e3f0cf772ce3.jpg -1977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it94a36e8b-afe8-4761-9a25-1f261d96324e.jpg -1978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it94bcdaaf-d6d2-43f2-a1b5-132bc8399d40.jpg -1979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it9717c1a5-86df-4688-9198-bf2bf2d0b054.jpg -1980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it9bce04cb-cbab-499a-9360-7bb8c6744aad.jpg -1981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it9cfe2f61-4a04-4abe-93bb-c2ff77d589b4.jpg -1982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_it9e962195-b92b-4650-b935-6a12f5565e2e.jpg -1983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_ita1a8d188-bc33-45e5-b87c-bf30918db807.jpg -1984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_ita4289442-72ff-4c55-a827-d870b1d9940d.jpg -1985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_ita87a3748-66c1-4fe6-94f8-eae7daf92860.jpg -1986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itaaed0d1b-1913-4e0e-99e4-730ac9a300e9.jpg -1987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itb60bc516-6b8a-4da4-b123-143eb1bddc78.jpg -1988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itb73214ef-a062-4842-b0c6-6214103b5fff.jpg -1989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itbaf21ddd-caad-41c5-b81e-d68ca03b09c2.jpg -1990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itbb9aabb1-f9a2-45f7-a227-fbd5e507cf02.jpg -1991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itbd82a808-10b6-4dbb-9672-612a2c6c35f2.jpg -1992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itc090de43-fa9d-4bba-8049-f48da478ee9a.jpg -1993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itc1259774-8ebe-4f05-aae2-4cad01d21f8b.jpg -1994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itc758dd1d-effd-4120-9ed6-1ff860780882.jpg -1995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itcbb62978-2f0f-4d48-aee1-5bbcec4f6d59.jpg -1996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itcee7d509-8c96-44cf-b3a8-76090f5101f1.jpg -1997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itd31b85c7-7ced-4596-b18d-b190146f8335.jpg -1998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itd439444a-4247-4449-ae87-92142bbbf91f.jpg -1999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itdc1b0b25-43bc-4c73-a01c-8bcd34e8a4dc.jpg -2000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_ite019f2b7-76b5-42e4-9bc8-172b92a5c4af.jpg -2001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_ite3d4516f-f1a2-47f2-9f2e-57a99262d415.jpg -2002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_ite61154dd-1698-42b7-982f-98319388e8fc.jpg -2003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_ite88f0b2b-9ebf-4813-a623-47cbd7bc8a4b.jpg -2004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_iteaafc998-0f5d-4f05-94d2-c40d29d39219.jpg -2005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itec832ca8-0a49-4b8f-bf46-e308074e433b.jpg -2006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itee16c20c-9963-4568-8b65-b51c5645b6eb.jpg -2007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itee181cbe-6c31-43e0-887b-9ad4a3cd46cd.jpg -2008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itf03e8885-c013-4fe7-9ecf-f9387c4d1caa.jpg -2009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itf0a9b735-a29e-4260-ab85-79f75d104a9a.jpg -2010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itf47018a8-d627-4db1-9e2a-d85d6d4540e2.jpg -2011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itf8bd3f0e-b2c2-4813-8d45-ae51c76e2c5d.jpg -2012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itf9699855-cd1a-4a7a-9e61-9e2ba16e22ab.jpg -2013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itfad80ea1-1f70-4a3c-9817-2045a5773c14.jpg -2014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itfb40001f-1635-4b6b-aac9-73475a343855.jpg -2015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_apple_in_itfb81fc19-e4bf-44d2-a2c7-7c9db709f09f.jpg -2016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it0473b993-14f4-4c53-b761-8895edb52dd0.jpg -2017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it047b1e54-a181-41ae-b3e4-c4f3bd0d3b1d.jpg -2018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it0afeaa25-086f-4358-a105-499ba2a2a2fc.jpg -2019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it0c3d99ac-f40f-4ce5-9c7e-1491193ee392.jpg -2020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it0c64613a-9860-457e-adc7-c17a5e3c4eb4.jpg -2021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it0e7c8e9f-f563-43fa-968b-9f53eae17e0a.jpg -2022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it10acb7a6-6505-4112-ba15-6316bd8cd249.jpg -2023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it175cc2fb-d434-44a9-bcf3-741a268c1bcd.jpg -2024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it17cefdcd-0c98-47bc-9f38-a0381bc8a929.jpg -2025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it181b4d66-e35e-4d9c-88e8-604a57d0ef3a.jpg -2026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it1b2214ac-840d-422e-967e-6d5d4ad9259c.jpg -2027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it1b38e8ef-ddbf-47b7-99d5-2254f1c63536.jpg -2028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it1e48e4ad-7ff4-4e47-8bb3-f34aa9f32f9d.jpg -2029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it1f3caf01-ee62-459f-bf0c-739c5528cd9d.jpg -2030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it1f7f1abc-4d65-4932-9cbf-a878e59466e4.jpg -2031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it2c2ecbd0-df20-487d-b4bd-f5761cd01fb0.jpg -2032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it2cff1e26-f830-46b8-a01b-92afa6357e0f.jpg -2033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it2de7f14c-7f36-48b2-9921-cdf92e965719.jpg -2034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it2f3fe33b-35a1-4b1c-9857-2edf5d71fae2.jpg -2035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it3166c0af-6811-428e-83e1-c3efe20e5ab3.jpg -2036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it379a5d2d-0b76-4fe3-a9ce-a78b3e6adf6f.jpg -2037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it396a89d0-4549-4893-bcaf-5a323d21c822.jpg -2038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it399a0072-2793-4622-9e36-e0dfccfb2010.jpg -2039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it3a055f9f-6081-4b90-845b-6157ae1d8d2a.jpg -2040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it3f86b41e-59a7-41cf-990f-9d69b77effd8.jpg -2041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it40f88dba-4733-4cb8-a8f5-9dfed2c2fd4c.jpg -2042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it42397187-af66-446f-9467-34544ed18c71.jpg -2043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it460d1c71-cf53-456b-8839-3cf572b7f34b.jpg -2044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it4a811b4b-068a-4a27-a66d-117ef2735f6b.jpg -2045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it4ff91600-b532-4ae5-a9ef-4f726bdad747.jpg -2046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it517b38eb-76fd-4c0d-9819-02ca43b1618e.jpg -2047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it529b0f72-57a9-4c60-b0e4-7ce9d0885437.jpg -2048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it52cfb70f-8b83-4c03-8806-8d755a58f404.jpg -2049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it55078604-e373-45cb-a605-3aa17f9dd84d.jpg -2050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it557a469e-d93e-4bbd-b74f-3e683a9041b2.jpg -2051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it56fd0251-fb0b-4ed6-896a-c4d5ab508804.jpg -2052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it58331bb0-4b0d-475d-9e83-2452d015a577.jpg -2053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it5cce7496-5984-4de2-a88f-abdfb10a73b5.jpg -2054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it60d4ffb0-e7fa-4e31-9ee8-0fcee87d0b11.jpg -2055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it6695773e-6a84-44d7-8f77-85ae1c858eaa.jpg -2056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it66cbea86-b353-4a95-8bbe-57a4f77c76c4.jpg -2057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it6e198b7a-c63e-4e68-b1de-501259e18fad.jpg -2058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it701a537a-f24d-4341-9116-3159f7eef90c.jpg -2059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it70710c7c-7168-4f3f-bb6b-c5dadb0575cd.jpg -2060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it709a7eb4-423b-41ea-afee-4ebbfe4a26e6.jpg -2061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it716bc7a4-26db-4337-974a-12621e4ff38d.jpg -2062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it71c37734-ac71-406b-8235-ebb5bafeb3bb.jpg -2063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it74033398-1d03-4671-b106-4e6f08e60cf9.jpg -2064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it74d500d9-5ad9-4d99-a016-c2862a1f5cdd.jpg -2065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it7508ac04-e417-49a2-b558-9711d03fd634.jpg -2066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it801729f7-ea6f-4753-8494-eb9fa4ef6cd4.jpg -2067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it8107bc24-1f09-48e6-9ddb-973ffced4e4b.jpg -2068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it8176489a-40c4-4dcb-b8df-b7d9826c9368.jpg -2069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it85149a57-0f23-45ff-b2f4-993ad9f4245a.jpg -2070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it86aa1e8f-d893-4aa3-b18f-249532877d88.jpg -2071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it8defc8af-71f4-423d-9b28-0707ba4a23df.jpg -2072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it8ee2c7d3-88e5-4c94-ace8-f7bc46dca852.jpg -2073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it8ef834e4-8577-4612-b708-89fba1a17bc7.jpg -2074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it91fa6d24-16e4-405a-96b5-35d1c3c79c8f.jpg -2075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it9449f201-751d-4911-8173-38f6047666f4.jpg -2076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it9745a280-89c6-4b0b-a4c4-2a4ad55be187.jpg -2077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it9a6e921b-4cf6-4c98-82fe-ebd5c97bea27.jpg -2078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it9d570024-5901-45eb-8935-b0240f8c13a5.jpg -2079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_it9df458e1-8b56-4c8a-83d7-abaa5cdeee9e.jpg -2080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ita25b4570-b8f5-420b-b0b4-64d0d5b3a6b2.jpg -2081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ita39df04b-1a6e-48e7-b0da-700254af06ef.jpg -2082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ita4bc043d-0761-4030-93ae-2b30a6ee6c0d.jpg -2083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ita712b07b-9b70-4139-b8cd-83eaf25c4cac.jpg -2084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ita795112c-7d77-40e1-885e-00e433318e05.jpg -2085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itae834f6b-d8ff-4c25-a763-8a1c074a653f.jpg -2086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itb253902d-2079-4d28-a657-59e55db6a208.jpg -2087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itb4641e1b-7096-456a-a400-19f321a83922.jpg -2088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itb84d618e-00b9-4aac-8e23-c3bf0daff0d4.jpg -2089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itb989210c-a572-43e8-b853-ad4a9ff7cc8e.jpg -2090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itbb9a7e84-ec3b-4cb4-bb97-e562e689f62f.jpg -2091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itbccd76fc-5eba-4c8c-9c64-206dae8cd6e9.jpg -2092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itbce78a08-16ea-4814-80eb-e47178390509.jpg -2093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itbd312ae1-76c5-4bbc-acf7-58c7de5ae703.jpg -2094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itbd66ecc8-37c6-4684-87f5-a8b093037b04.jpg -2095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itbf072981-1c4b-4dd2-92c9-6c3de974d19a.jpg -2096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itc10ecf54-573a-4491-9189-d0cba9f87838.jpg -2097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itc1e5adec-cabe-4cc1-8f95-20322c365fdd.jpg -2098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itc7d38df0-3996-4b5c-aab5-cb0e90c01bc5.jpg -2099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itc95a56f5-49e4-4253-96a9-4d050b89c82e.jpg -2100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itd02ad370-ba06-47ff-9979-586d98edc07e.jpg -2101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itd0f262a3-ee04-4065-afdb-76bb2d8fd389.jpg -2102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itd360b79b-6bb5-48ba-8d52-aeb09e8a593b.jpg -2103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itd567324b-912a-41d8-808c-f88bbbcc6f1e.jpg -2104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itd58c1854-e7cd-4663-9588-711bc63173ce.jpg -2105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itd5901fec-6589-4557-9d48-c36b41f9abb7.jpg -2106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itd5f843d4-123a-4002-8f86-63979a1fa572.jpg -2107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ite018e925-6a7b-4302-896c-5ea014cca6fb.jpg -2108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ite5de776d-a9ad-410a-8488-061af3502aab.jpg -2109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ite6d45f69-c742-433f-80e3-ea297617c644.jpg -2110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_ite83bb9ea-71e5-46f7-8306-f326a6427796.jpg -2111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itea4c992f-9c1b-4d94-9571-2706d04268f1.jpg -2112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itebd7603c-8fbd-464c-8dfd-9a51c3b7a13b.jpg -2113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itf3eb1fd4-3504-4846-be1e-0d3659d06568.jpg -2114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itf4fc4f70-2c15-41fa-a596-a4812799c8e5.jpg -2115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_backpack_in_itfee247b8-eff0-445b-86c4-d7c206a9e411.jpg -2116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it0017ae40-5dc2-4498-93f9-abc2b15db1a2.jpg -2117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it079c0211-3423-452d-95e8-e284dc0e87d1.jpg -2118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it085f3088-ea38-47b1-a4ac-38e3b3f1f410.jpg -2119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it09707ebe-5077-4e4f-aeba-20e0f5225b4a.jpg -2120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it0ae30bfc-a195-4d8c-9994-0c9a04ba57c8.jpg -2121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it117d40f7-4de1-4b3a-b8bb-6886c369f6c5.jpg -2122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it11c50d58-1876-44bb-b9e5-2d1cd4ebfc45.jpg -2123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it135df20c-fa94-45eb-9a52-0aa8b47b201a.jpg -2124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it148b7aeb-97b6-4d2c-a9cc-cf3963959b7c.jpg -2125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it1700a2ae-042c-4f2e-93f6-9276ba301aaf.jpg -2126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it17ee6af5-ff16-4a58-a36c-70348bcd594e.jpg -2127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it1ecbf537-ebc4-4fad-8d18-a5fe59f8ac78.jpg -2128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it1ecd7bce-8c33-47fa-8624-b2eca45a2510.jpg -2129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it20f1b869-5b45-462c-9554-a4a460e8809b.jpg -2130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it20f1e52e-ede3-4b01-bae3-3e05e30b0c96.jpg -2131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it2bc510d4-ac11-4ab6-a8d7-204dc9c5a8fa.jpg -2132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it2c218d96-39f0-43ad-a5e5-10cdd4f17000.jpg -2133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it2c668609-fb53-4471-a44e-c580f18e6fa5.jpg -2134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it2e1b5ef7-1562-4b89-8287-5cab0424914d.jpg -2135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it33401252-a752-47de-96ea-4c7912906fe0.jpg -2136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it361d259b-fb91-4048-afbf-ff6f7e7fadc5.jpg -2137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it3bfa2780-4b28-4a94-95dc-4a1ea1c80cd5.jpg -2138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it4000423b-7225-4918-9bd2-42b35ef42957.jpg -2139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it42290bcb-29ac-4074-a7bc-c36644e97f0b.jpg -2140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it43212756-01db-411b-a054-a0e9b210dde0.jpg -2141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it471d30c0-385a-44f2-9e1a-e661c538a730.jpg -2142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it48cb04a0-8ba8-4e45-a00e-cb159cfabd28.jpg -2143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it4b1481b3-b447-47ab-b5ee-512a2f363452.jpg -2144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it4bdf6f4d-6d7d-47a0-9ff3-c87e52e07eca.jpg -2145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it4caaed9a-4cb6-4054-97e3-4339b073b340.jpg -2146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it4ff5a084-593e-4202-bfbc-be08df53e0bd.jpg -2147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it505b4f60-4437-40f3-8471-193bad7f5f01.jpg -2148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it50752829-e409-409e-8ad0-95b88dbea598.jpg -2149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it53b604eb-6b59-4471-8f74-7972f03df07b.jpg -2150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it55f0306c-437f-4b4d-9689-60b71ed58500.jpg -2151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it590ec56b-34ca-4b10-8a25-679afd5e76c4.jpg -2152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it59752c3f-33a9-41e5-98c0-6f72e3f8e066.jpg -2153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it5caabb8a-daa9-4f39-bdb4-a7c9dd2d0b26.jpg -2154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it627bed70-be4e-41ba-8baf-73cbf8d2f401.jpg -2155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it62eaa7a4-20e3-4600-9787-932e378802c9.jpg -2156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it65f8bbd3-6df4-4006-89ad-dffb43a46376.jpg -2157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it67da0af9-bc49-4b38-ad24-e17cea9bd417.jpg -2158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it71ba3eda-5c99-44f3-86ed-df8d90da5f94.jpg -2159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it74754307-0aa0-4a7d-9e6c-75c082534de8.jpg -2160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it752a933a-e037-4eca-8558-d15a584b670d.jpg -2161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it753f113f-fd8c-475b-b370-f94c90b18634.jpg -2162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it7577193f-0dca-45ea-a1b3-e01828539de0.jpg -2163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it7778294e-105f-4b18-bb40-31cf2dcd0fe5.jpg -2164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it7a4a3858-eb49-4425-91e3-1584b8bff7a2.jpg -2165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it7b6b9a20-1928-4a0c-a012-85dd69de09f1.jpg -2166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it7d3abcf1-cfb9-47f0-b9c6-90e03972c300.jpg -2167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it7f92257d-29cd-413f-b539-2e36d7aa95c2.jpg -2168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it801d0e6f-5079-4c55-b02e-e96eac23a9fd.jpg -2169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it822d898c-e124-4d70-99b8-cf0645b91249.jpg -2170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it829e8f37-1319-4e1d-9bcc-f4a9343a228d.jpg -2171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it84f33c02-1e18-40cc-aadf-5c652401b2da.jpg -2172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it89128428-400d-432b-b7f5-ebc04a417283.jpg -2173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it8cb90fe6-d1ca-4bca-acd0-5408b2bf3146.jpg -2174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it8efe9030-9deb-4d98-84c6-4767cff2f401.jpg -2175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it92a7ddd8-43a5-4f4c-a57e-1853147a9da0.jpg -2176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it965416d2-8df3-4c03-ba44-651e3f92ff0b.jpg -2177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it967ac229-be42-4282-8b7b-3ed3603bd7ad.jpg -2178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it98e130de-abb8-4ab7-bc5d-4bc9a816ff5e.jpg -2179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it9ea84227-3b68-48dd-b6eb-1a9d56e50c93.jpg -2180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_it9f17542c-0db2-429e-adff-b42016e4d2fa.jpg -2181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_ita3752f74-fe64-4136-8f47-94de72d98d5c.jpg -2182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itac08803a-b994-4b96-b799-8052f3a1a78c.jpg -2183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itaf27994c-d017-43f0-84e6-b391aedf75e4.jpg -2184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itaf53db2b-1ae6-410b-b53d-b26a2405bc48.jpg -2185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itafcd1187-0318-4e1b-a862-f5c5d2a517e5.jpg -2186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itb4c2cbf8-9f2f-42f8-a07e-2a2cb2d0de95.jpg -2187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itb8f811f3-74d4-47d9-bbc4-fb2cebee1ac2.jpg -2188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itb980c0bc-ce4b-474a-b4e7-6fbfd07ba4c2.jpg -2189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itba84d005-21b9-4f94-9dca-5c58e66485bb.jpg -2190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itc51f1e5d-74ce-474b-abf2-7ebd9c5e1bab.jpg -2191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itc60666ef-9290-41ea-a681-152ad026c137.jpg -2192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itc76e0d42-9dfd-48dc-b09c-5222c4920dcf.jpg -2193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itcba5712e-6bf7-4ebe-a5bc-f2ff6a956c00.jpg -2194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itcc3af88c-7224-4608-80e4-962bc0eb8d33.jpg -2195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itcd683bb0-f228-4d84-bc40-96d4b780d63f.jpg -2196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itce7b4de3-7edf-4f30-82c5-f8b790f2703b.jpg -2197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itd236cd01-a566-4c59-8406-182eb22157a9.jpg -2198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itd4aa0a0d-6198-47a2-9ec5-0058080cc6d2.jpg -2199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itd558921a-070e-485e-88e1-a1ac3c2e2d18.jpg -2200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itdc0de1cd-16de-42ff-b32c-aa465d081c56.jpg -2201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itdea8a45b-1ebc-46bf-aa85-face4e472521.jpg -2202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_ite7c7b915-ff3e-4503-ae7a-306ae376254b.jpg -2203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_ite96e7c91-b124-4ce2-8e19-a98ba7e0099f.jpg -2204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_iteb11e555-0a37-4090-b034-8b98daa6a424.jpg -2205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itede09e07-cf24-44c3-a898-ec2e704b76e2.jpg -2206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itee2a6d2d-ac00-4a94-abc0-43935ac93312.jpg -2207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itf20f24b7-0896-4c6f-bd4a-cf3a33d4d17a.jpg -2208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itf355c494-87c9-4c75-8671-d4cba4733830.jpg -2209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itf3c74f89-2ee3-4c96-9a6f-29261f99a5ba.jpg -2210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itf6d4a171-40c6-46c6-9e8d-f92283920bd2.jpg -2211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itf7c97047-0103-4938-814e-cf05f22b1e68.jpg -2212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itfacbfbbb-45e4-4875-a5e4-faab3c29f615.jpg -2213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itfc3552a0-0dee-4817-a705-0aa49e2038b9.jpg -2214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itfddd5634-22cd-4a4a-af4c-76de3400f6ff.jpg -2215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_banana_in_itfe18267c-dfc6-45c6-89e9-ff06bfc33280.jpg -2216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it00700493-f454-4a99-bde6-72ef65e54f2c.jpg -2217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it00f156c5-8dc5-4295-af03-59447b70b886.jpg -2218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it035048fe-03b7-4184-b9e6-9b6850b95943.jpg -2219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it040ebd51-938e-4080-800d-38e08b7eab8c.jpg -2220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it0a25e973-77ff-4d34-9a13-54f51f9d7e0f.jpg -2221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it16b43757-31dd-4eae-bbee-a79c5376ed4f.jpg -2222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it175977ee-47c7-40f6-b60a-904c4d8ba43c.jpg -2223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it19e10973-73df-4fc2-8d0f-c6b9ed089aac.jpg -2224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it19e75c54-9ab8-4f86-a585-2a06978969cc.jpg -2225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it1af1a4d2-e1ef-4937-9f17-97a86d2f7aab.jpg -2226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it23969503-9ae8-46eb-843f-00f3410e518b.jpg -2227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it24d2ee6f-988b-44bf-a991-2d99b51639b0.jpg -2228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it298fd1a2-181d-47ba-bcd5-8d9030f6419c.jpg -2229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it2aea030a-1023-49f3-8b65-6e778e77fd79.jpg -2230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it2c26a915-1928-424b-ac9a-147d9596289e.jpg -2231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it2cc5d377-0125-4f52-8d6a-22d0846a2737.jpg -2232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it300fb902-6be4-478c-a6a0-3120ba7f571e.jpg -2233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it31359f2e-ace9-47d7-af2a-79af3f75d9ed.jpg -2234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it31995497-6f75-4758-a70f-f15cce491502.jpg -2235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it34220838-9b10-4105-93fe-cc905678a71b.jpg -2236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it36996a17-8ec5-459b-a0a3-cc422f77728d.jpg -2237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it37fb04d7-52db-439e-8420-eb0d6386bf88.jpg -2238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it3cad1a02-4557-41ae-a70d-2550bfa63348.jpg -2239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it3d87ae93-cbe8-432c-9a0a-4d25638443a8.jpg -2240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it3e6d4183-7428-46c0-b7b4-efb5e2bd5469.jpg -2241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it408ab12e-f044-4139-b57c-84b8908c4d4a.jpg -2242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it434303be-efc0-4fe0-8493-8067e3f99e6e.jpg -2243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it4855dc88-72c3-42ee-832f-bca9176b62dd.jpg -2244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it494fca58-26d8-4287-ac18-9dcd9f339077.jpg -2245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it4a64c73f-2b28-4571-a156-ab801d081cbd.jpg -2246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it50f7ce41-910b-48bf-9772-37c6188fb297.jpg -2247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it5850fbd0-62c0-4925-85fd-f9ef61f32db6.jpg -2248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it58f4f4a5-2538-44f8-8b22-b6b7245aa7f4.jpg -2249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it59f77c9b-de72-4196-9fff-c4a7f0ff1754.jpg -2250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it5b19d2e7-d086-4744-a3df-b51b4794291c.jpg -2251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it5bc71975-d881-41a2-93db-c479b5172308.jpg -2252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it5d2d9c92-7d96-46e7-bd42-51edb9c5a033.jpg -2253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it5f2c87da-aa34-4b02-b05a-675d00b15d20.jpg -2254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it60731767-5199-401e-97c3-97efe820d8d6.jpg -2255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it61d72f9f-e6ba-489b-9c8c-e73d475b5bd7.jpg -2256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it6244454d-2583-4bab-976b-426ec6d5e6cc.jpg -2257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it62a02c47-fb23-4a40-b533-9802285220c2.jpg -2258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it63729ab7-7464-4319-b923-2438f8b64200.jpg -2259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it66bf8255-7fa5-474f-b813-b91c6dec0128.jpg -2260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it6751ec67-8937-44ef-b67f-30d36dbc27fe.jpg -2261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it694f323e-2069-419c-bda5-554c8e4d8f23.jpg -2262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it6be08778-2ce2-4542-9a6f-b2473cd1b90e.jpg -2263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it81260b6d-e22d-4bdc-9c9c-328d170f09b9.jpg -2264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it83f41c1b-9aec-4ddb-a772-62fc93162cf0.jpg -2265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it84554783-f530-49c5-b68d-84a8b612a457.jpg -2266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it8459f110-5ef7-454a-90d1-7204cd69dcab.jpg -2267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it85d9d1b4-ee59-41aa-8ebc-5d07cad092ea.jpg -2268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it875b9877-b35b-415b-881b-f571ab8f16c2.jpg -2269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it8b13957f-d1a0-4742-bd02-0285b5413c9c.jpg -2270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it8d954d24-e561-4197-992a-ffcec85a8512.jpg -2271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it8daaa9c2-9dd6-4fba-b52b-1d5306cdc60b.jpg -2272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it9402028e-e329-4c9c-b67c-fddb022742a0.jpg -2273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it94a9c6ed-0a40-4ab2-a64f-d97829768fa9.jpg -2274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it98095e6e-6c5c-4989-9731-4732af9355d1.jpg -2275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_it9c5f48a2-a7a1-4c7d-bbb8-4b8e11f3a631.jpg -2276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ita07febe8-977a-4ea5-b6d7-ac4d629f3dda.jpg -2277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ita491a3a2-dfda-4c81-b914-38281228a807.jpg -2278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ita6e4c487-3f13-4207-b980-b072519f4cd7.jpg -2279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ita81fa488-6430-4a9c-b8d8-f077eb05eb2a.jpg -2280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ita8572c4c-52c1-47d5-9c1b-c4931c8e5644.jpg -2281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ita89c9692-1031-41e6-a2a1-f161b09d21b6.jpg -2282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itab22e9ce-fe7a-40f5-a517-453e0e49bc5d.jpg -2283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itacbf695a-1947-4380-b600-3a92db6005cf.jpg -2284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itaf984c40-c3ae-497a-8cd9-969cdd492a7e.jpg -2285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itbbf72d55-1808-46b6-836c-c692c1ea3362.jpg -2286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itbe752ba0-049f-40cc-8eee-baa24852e03f.jpg -2287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itbfb9d0da-fb5d-4978-91f2-e81b56a1a0fc.jpg -2288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itbfd36192-d943-4c5e-a188-e1e91f339dee.jpg -2289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itbfdec9bf-9467-43e2-b0d9-900471eff085.jpg -2290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itc020dd15-0548-4962-a3a7-3a505a52b971.jpg -2291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itc0fd8438-dc51-476f-9b90-7af2bf53ad0f.jpg -2292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itc1ef29ad-6b44-4495-9c26-063853b9e81b.jpg -2293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itc57e2dd7-cf60-47f1-a82a-985284af450e.jpg -2294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itc5d990ff-5013-4007-b6cc-4e557d91b95e.jpg -2295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itccfaeafe-eb7b-435b-9b49-f501880a8d45.jpg -2296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itcdb26eb0-3b93-45e0-9920-e6095947f8e3.jpg -2297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itcf039971-5a7e-479a-b4ae-7a5c30de0561.jpg -2298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itd0e99f0c-3d94-4ec8-9bbb-b6b47585f713.jpg -2299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itd8ff2e85-addf-4979-8c61-1d2bf9b8cd98.jpg -2300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ite04aee91-5238-42e7-8932-bf74d84e5e81.jpg -2301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ite22bd79f-b5ad-4259-9c1b-c64eab414abc.jpg -2302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ite28a6a40-5929-4871-a954-eb76a1042958.jpg -2303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ite3308736-f703-4e31-8198-0b4058729b34.jpg -2304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ite4d478c3-b26e-4843-afb5-6bc64e30a2d3.jpg -2305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ite744f44d-c907-42d9-9116-e18b518140f9.jpg -2306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ite89a80f1-fc69-41b4-a499-4d3fafe891ec.jpg -2307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_ite95fd5e4-83bd-45bc-9f1c-db4b2301c457.jpg -2308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itefd3cab0-4a9a-4fc5-ad8a-0a8f44795c39.jpg -2309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itf1d15989-29fb-49c8-8260-e17559f9c453.jpg -2310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itf23f8cda-b1a4-46d3-b25d-5ebe8bbd97a6.jpg -2311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itf61e8064-a38b-4ca5-98b6-ad88297165da.jpg -2312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itf63d6a99-4aba-467d-98f8-cf3e490aec9f.jpg -2313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itfa818acc-2647-4d16-8083-ae6684856964.jpg -2314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itfe3e8685-1849-4509-9b34-2636a5c12372.jpg -2315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_bat_in_itff5b5e3d-28ba-4c9f-ab22-740cde5ed386.jpg -2316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it00ead0fd-79d9-4f54-a839-2897a9cc4cd8.jpg -2317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it03b0fdef-6c88-4115-a2aa-966e86448c38.jpg -2318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it05ed44e2-e0f0-4d4f-9aa2-817e94d8bb67.jpg -2319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it0e7617fe-37c3-474b-a582-8710d152dd03.jpg -2320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it0e9dd84d-78e7-4042-82cb-7067b12477b6.jpg -2321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it0fac3a68-a22d-4149-83dd-37d68c8a8214.jpg -2322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it11cba6d4-66dd-479a-90e3-e5b604ad3893.jpg -2323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it1408612e-0314-42ff-849c-bb84f2ccc8d9.jpg -2324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it15d8ec28-8326-4cf9-a0c8-af5aab42212c.jpg -2325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it15e7214f-8734-41d7-8916-1eca17ebb617.jpg -2326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it1bcceccb-8ada-4a71-83a2-3efb7cd095aa.jpg -2327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it1bf6bf43-8e18-42ba-a253-bcccd972ec87.jpg -2328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it1e7e82ed-c0ed-4698-bedc-aa60af881799.jpg -2329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it23596d5f-81d5-449f-8a44-51f98be41886.jpg -2330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it23e6e1c6-1056-4a33-8236-91f7f26763cb.jpg -2331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it2400651d-1dd2-49be-9a56-75e46f615427.jpg -2332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it24957bd7-caf5-4d7e-9246-fe12342802d2.jpg -2333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it24d7432b-aba7-4d81-9b87-a8445f94e946.jpg -2334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it24f7fecb-0537-48ef-9bdd-b8488f3bae3f.jpg -2335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it255cf268-0151-4f8c-b1fe-22fda6153637.jpg -2336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it25bfd016-1f71-45cc-84ac-1245ac456857.jpg -2337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it2c3e3f0d-4444-4836-ad74-1a99e856a25e.jpg -2338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it2e50a2ef-488c-4852-86ad-5d93e52ccee7.jpg -2339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it2fe11e04-a53e-4331-9fc9-33d60c6078fc.jpg -2340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it32150875-8e52-4a3c-b002-38701d53653b.jpg -2341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it34c9660d-e805-4922-ba65-732c72c98650.jpg -2342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it36614bf0-eb73-403f-85bc-6295054c7cb4.jpg -2343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it389960a2-95f7-43cc-9496-ae4ac3f860e5.jpg -2344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it3f42c772-e49d-40e1-aeeb-d5873ac0febb.jpg -2345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it42dd59da-d285-4d82-ae10-60b6cca14e61.jpg -2346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it4458cf61-dba4-4b38-b888-5ca7cb50c602.jpg -2347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it4484e589-0302-4f3c-abe7-a381d6d65917.jpg -2348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it44a1580b-7a15-461b-b1df-92a460a2786d.jpg -2349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it44da3e71-0603-4e1a-a664-2e6f2c747f0a.jpg -2350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it485751fc-c5ad-4e6e-b8a3-1b87675b4f29.jpg -2351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it4aa46e29-8d31-4944-93d3-ab140c60ee1c.jpg -2352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it51ae744a-ad54-47e6-8e22-79ace6870515.jpg -2353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it5a4812cd-0c3f-47ab-ab82-d644087ba04b.jpg -2354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it5c846118-9482-4287-aaaa-dabbbb822399.jpg -2355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it5e92e062-4595-4867-9458-c8946b9ce9a9.jpg -2356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it5ebc522f-b0ca-4fd2-ba67-cadc44759163.jpg -2357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it62112986-8864-47d6-9bfe-c6f5270b3d99.jpg -2358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it64183b1b-97a0-436d-83e5-9a008895d1a2.jpg -2359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it69a67901-4511-48c5-92f9-13a36d87330c.jpg -2360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it6df94182-4944-4a3b-b8cf-fc8abe2a5ee2.jpg -2361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it70269c74-5174-4c4e-a021-995ac88475f4.jpg -2362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it71e0ccdc-2893-4ed7-844b-c156bbc619dd.jpg -2363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it751fad26-1a1f-40b7-8b53-f2030b12151d.jpg -2364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it75ac755f-1bc1-4877-b89f-ad4809c6eda9.jpg -2365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it7654db8d-2b1c-410b-aa7e-4c4fccc4b948.jpg -2366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it7b0be9c3-6697-4d68-b3ea-41a9b0b3c032.jpg -2367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it7c90c5cd-1570-45b2-bac4-f6d00c855aa1.jpg -2368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it7e7f4c9c-670d-4f99-8d88-6ff85380d803.jpg -2369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it80eae3d2-d56b-44f1-ae33-6460708597bb.jpg -2370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it838ad999-996f-4295-b2a0-3f00fbb8bb99.jpg -2371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it840915ae-d293-4147-9cb7-e466cc9c1d03.jpg -2372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it85b4c34e-502b-4748-b99d-e1a06192c8fd.jpg -2373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it8c3a7525-dbb5-4922-bb15-93b363df341b.jpg -2374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it8d8239a6-9e7c-4ba6-9f27-2a1edd5e24ac.jpg -2375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it8db5bacd-83fc-4032-b0e8-c97b5f5ff08b.jpg -2376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it91fd55af-6275-4419-a585-e41056ca8d98.jpg -2377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it928f4d7f-5936-4f1b-9f3f-0a9ad8120cfd.jpg -2378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it93e561db-e200-4512-936e-f183c9464b05.jpg -2379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it96e01754-88e8-4440-b39c-27afeb2ed446.jpg -2380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it97809651-4989-4fe0-bc80-570023fc5971.jpg -2381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it999a0509-2673-4187-bc78-6965c70ed53a.jpg -2382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it99e9e7ec-0c17-4ebc-8524-3eba292a1a03.jpg -2383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_it9b3f0be0-6ee1-460a-ba21-25cabd2e77e6.jpg -2384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_ita8d8842f-4a54-42e5-99b9-8a9d410f2487.jpg -2385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itaa6934e7-4c03-4a34-a62a-0cf8227616a8.jpg -2386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itb268c212-c317-463c-9817-52bf79bd9fef.jpg -2387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itb343e0a5-6594-4eda-91d5-d6d7a68488e1.jpg -2388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itb4e734ac-0b51-4021-bac8-636ba14b7a57.jpg -2389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itb7ac11a4-4621-4532-8f2b-4c878b8e885d.jpg -2390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itc86beca1-71ab-4dfa-991b-fe2f036d047d.jpg -2391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itc8dfa6c7-acd9-4823-95a5-cc08599d996f.jpg -2392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itcab0ec0e-748c-4796-b586-fd07433e06b9.jpg -2393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itcb893e86-27af-41e6-8734-6b5ed3371e1d.jpg -2394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itccf2898d-1f09-4fd3-9993-ab03ec62973f.jpg -2395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itd0058955-52b7-451d-a9cb-8fc81beee253.jpg -2396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itd236c942-d01d-4f27-9ab1-164e0e7ef575.jpg -2397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itd6b843ad-1261-45de-afb7-d801b0ee4fb0.jpg -2398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itd88f1aae-c739-402d-9ead-2ccef8b8be5c.jpg -2399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itda61bd5b-1956-41b2-9b32-a26286078ec2.jpg -2400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itdbe6cc67-4384-42cd-b2c9-dc1ebf1ba8b8.jpg -2401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itdbf10255-f418-4290-baae-3183665e6b94.jpg -2402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itdc12d229-0204-4e0b-8bff-47160c4a53af.jpg -2403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itdc723890-aaa3-46a5-9ba0-8ed0e71efff3.jpg -2404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itdccc15aa-2403-40f8-807a-ec8449dca0f7.jpg -2405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itde26e160-3a82-4244-8ab7-9d5a5844cd52.jpg -2406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_ite208ac71-19fe-4339-a8b3-eb9dfdec8673.jpg -2407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_ite38727ca-6c8c-470d-ba72-643bd5eab4b7.jpg -2408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_ite4c592b7-3d2d-47ff-aa18-dc7cd4986660.jpg -2409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_ite58aa5a8-322e-4b70-82ea-8a39019c9339.jpg -2410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_iteb12ee37-c461-447b-804f-1da526b15be6.jpg -2411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itec16cb87-c3d4-4d4f-89e6-a7f55d41a33b.jpg -2412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_iteca8bc8f-4d7e-49a2-8fc3-6900f1a180fa.jpg -2413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itf1e82819-010f-4d72-b48a-d86c9a409602.jpg -2414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itf8e04658-3b4d-4eba-8e66-cc3a1a31e16e.jpg -2415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_baseball_glove_in_itf9fb5f05-f942-4b65-8e7b-8550b5824cb8.jpg -2416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it0725d7f0-653c-49d3-98da-fefe2416ef18.jpg -2417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it0b0447fd-4fbd-457e-815c-7a3d2618d371.jpg -2418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it171a313a-0340-45ed-a0a6-d5b436efd714.jpg -2419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it18e147e4-84a2-446e-8b56-29c99629331e.jpg -2420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it1a5ed38e-cd03-4238-a1ec-11588c8bd53f.jpg -2421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it1b19c937-935a-48b5-887d-3810a34fea22.jpg -2422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it1ced393c-0409-42fc-baed-cefe24892c88.jpg -2423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it1e1f1238-f824-49b0-8391-24c35ee0153f.jpg -2424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it1fccdeac-3247-4244-a102-66007b04b073.jpg -2425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it21c5aedb-77ff-46b7-9545-257fa67ca1fc.jpg -2426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it23dc308a-2d1e-4924-ae6c-acc4d8387ee2.jpg -2427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it24c65e06-ea41-4658-921e-78098b5be0a3.jpg -2428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it271a1f29-9528-437d-a0bf-bedb421b3c32.jpg -2429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it2e9513d7-6eb9-4227-a06a-7ee59b08b9e7.jpg -2430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it32e0be4e-77ef-4e1a-a8fa-927807196a92.jpg -2431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it3be97d52-978b-4704-883e-f57a66450bf9.jpg -2432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it3e013d58-923e-4043-9cb9-ae42a63a0eb6.jpg -2433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it40cfc131-6bb5-4d29-944d-52e604d58162.jpg -2434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it4351c000-1410-4efb-964b-5e5783f5256b.jpg -2435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it44227a9a-152e-4eb2-8a7d-edf1a3bbf80a.jpg -2436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it44972aec-57ba-464f-afb7-0899e13b6222.jpg -2437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it454ad869-7c9e-4c7b-b2af-5a47880871d2.jpg -2438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it497a5ae1-f7c8-4ecd-b668-c1f371dfe7b1.jpg -2439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it4992de50-f8bd-48b2-bfdc-906023510eb7.jpg -2440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it4c7a1182-b96c-4d85-a2d0-9644e553f871.jpg -2441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it4f7f0dbd-14e6-41a9-8cf1-f3f26366f6da.jpg -2442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it52c5d7ec-2a6e-4f15-9d6c-4a89a527e62b.jpg -2443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it52ca24bf-fefd-4d4e-8c47-825c5329e141.jpg -2444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it5e146225-b24d-4038-866a-89723dbde0f9.jpg -2445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it5ec7f0d3-c8d9-4b3e-89b3-778c665cdcb0.jpg -2446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it5ed0053f-87ea-44b6-a83c-731777a05746.jpg -2447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it5f5cf42f-c58a-4048-9b41-6150203b4a2d.jpg -2448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it644c85b7-f96a-40a9-ba3e-5c61f3a492b3.jpg -2449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it679cf0bb-19e9-4c08-ad35-82340ae512ab.jpg -2450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it69216c1c-c564-427f-a86e-cc97dd042b65.jpg -2451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it6a6668d7-4ba2-4d07-b301-2c5783b03266.jpg -2452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it6c8a77fe-1894-4632-a72e-31ac23a34ab7.jpg -2453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it72730997-73d8-4385-826a-edefd096a844.jpg -2454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it751c50ac-64ed-4426-aa64-120369914251.jpg -2455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it776729ed-f4e8-4396-8fe0-e842871af2c0.jpg -2456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it77700038-38bf-4334-b4a9-b501a6f50fc3.jpg -2457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it782f13c5-fb84-4288-923f-c373792ae1e2.jpg -2458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it7dfa3090-6146-4ede-b078-21fe11d10f05.jpg -2459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it81bd5634-2bd5-4ffa-88a1-560b92809c6a.jpg -2460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it81e4022c-6d1b-434c-8071-ab0091ebd313.jpg -2461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it82fb12f9-ade9-4d70-ae66-9354cb5b7d26.jpg -2462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it8be4be0c-84bf-4b2c-ad39-7ddeb560f925.jpg -2463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it90895282-bdb0-4802-b995-3b66cc8a3f98.jpg -2464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it9564f9f6-0ce0-4ea0-b914-2478fd93470b.jpg -2465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it97d6c5f5-12d4-47bb-b653-c736a2203acb.jpg -2466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_it991cebc6-4110-4d22-986c-1c1424401484.jpg -2467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ita2809b75-e3b2-4d8b-b424-743ec9bd4cb8.jpg -2468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itb03db56b-84d6-45d4-9336-a141df44c3c7.jpg -2469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itb960d563-d440-4782-9b33-aab8bf4a3702.jpg -2470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itbaf5ac93-17f6-446a-a465-612a4901efdb.jpg -2471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itc0f09ee3-d66b-414a-8611-9bd304c1fdbb.jpg -2472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itc1a1899d-972c-4cdd-b4c8-5902aee759e2.jpg -2473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itc5739d17-8e80-41d5-a38f-6c26244e9425.jpg -2474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itc6395ce3-69b7-4ae2-b759-060e319ec70f.jpg -2475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itc77f9b59-d156-4fab-9e5a-23a54bb22a0f.jpg -2476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itc77fd0e1-1251-4493-80a5-ed566c65bb89.jpg -2477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itc7955d47-e4ea-43b7-880d-3e5b6efe4581.jpg -2478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itc9c425cd-d662-476c-9022-d4b05ae6c198.jpg -2479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itcd3f7deb-83b0-4c95-97ae-c8a21cf7233a.jpg -2480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itd148ef74-fbf3-41ff-966c-57ffc6bae716.jpg -2481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itd832f256-6bd4-4506-9bee-6cdb54a1b571.jpg -2482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itd8c027a2-e547-49fd-897e-2a205840d2df.jpg -2483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itdb2bc414-462b-45eb-b3c7-29307bcbdbc6.jpg -2484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itdb7d8e2f-681a-45d4-b696-5fe45581d4be.jpg -2485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itdd8ba53d-5d38-493e-a50d-a8024604d841.jpg -2486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itdeae77a3-ccd3-4ee8-8a0a-81ed0655fb7f.jpg -2487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite1eaec46-3764-4a1c-abf3-465cc98487c3.jpg -2488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite1eb35fd-a25e-403b-8a5c-afeaf98e5e74.jpg -2489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite3c2d6ac-fecd-43bc-9c32-c86381bea29f.jpg -2490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite3e35212-d69b-4121-9a4d-0afa5c8ba7fc.jpg -2491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite4ff7651-b143-4071-a00a-2a16694d4c9c.jpg -2492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite5458156-5aec-4608-ac0b-d58244096d26.jpg -2493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite5ca86c6-e738-405b-82e7-a96625d7ac04.jpg -2494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite691cfbe-e347-47a9-b874-bec924c7afaf.jpg -2495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite6b4655d-c17d-4bc9-9519-0f9550757abe.jpg -2496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite7e59978-580a-4981-8dab-163f6accdc68.jpg -2497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite9302d05-a0dd-4021-b96b-a4b12d124c9f.jpg -2498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_ite9fe90f6-86c2-4384-a705-a43a4ddb55d7.jpg -2499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itea98c41c-f6da-4e26-8a2f-dc38f48a9077.jpg -2500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_iteb2d911f-c6f8-4aaf-b41c-44944cbd0a84.jpg -2501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itec41befe-1568-4b77-8c7f-ce6b318964eb.jpg -2502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itee6b5f36-0a10-486a-86a6-3747bb55d706.jpg -2503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf1a74eab-9df9-41a7-bf26-0cf48295360a.jpg -2504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf2408c0f-485c-4db1-9bf4-07021acbe4ee.jpg -2505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf3146248-ef85-464e-8735-e25bea686718.jpg -2506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf444d3d5-5cb4-4040-8b62-76e199961de7.jpg -2507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf447a2a5-55eb-4b6a-a589-d51848747ca7.jpg -2508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf5428119-8713-4aa7-b241-54f57cf700c2.jpg -2509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf607f4f8-11a9-46e4-a932-d029793f0932.jpg -2510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf63d4dc5-93e9-478b-a707-e4d8b12f67ad.jpg -2511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf688797c-210c-44a0-96b5-fcc52b2657bf.jpg -2512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf73ac4ee-f762-4f99-bc4c-a6ab09092e32.jpg -2513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf782ee72-f7f2-4a97-a650-2130824dd2d2.jpg -2514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itf8863961-c512-4d76-ac7b-9cc97430ffbc.jpg -2515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bear_in_itfbb101a8-df8b-426f-84a1-78a63b0accc7.jpg -2516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it00a35cc1-8b52-4b77-97c2-f3357fb36d87.jpg -2517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it0304562d-3c1e-4b27-a2da-1102d2ba26a8.jpg -2518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it0348486c-4291-4a62-9cd8-fab33643544e.jpg -2519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it0c200b55-aeee-4327-9934-f57a3ca0bc19.jpg -2520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it0cf4a01c-54a7-43b1-a9b0-5a848de0c217.jpg -2521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it0d0383d6-8c6e-4b73-8a48-9bfc5c525368.jpg -2522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it10599770-5879-4298-a77a-baf522c14de0.jpg -2523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it16faa1f1-ece2-45e1-8c8f-6fda97a1158f.jpg -2524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it181f1395-8183-43f5-a364-c75513dd5cea.jpg -2525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it1da4bca2-5dc7-486b-a9bf-4d211d7edcd5.jpg -2526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it1e1eda7b-8744-483f-9944-fd0230bc3fc7.jpg -2527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it1e66c554-d9e0-41d2-918d-ee7accdb0990.jpg -2528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it2879fd0e-6d7b-4315-91c5-8ee09d90beb2.jpg -2529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it2a174e12-e86e-4998-9c15-7fe9ac4572a9.jpg -2530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it2e74ac88-d404-482c-8b06-3a5f4e817f99.jpg -2531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it32eaf885-5ef8-456a-bbac-7f3c274ce01f.jpg -2532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it3746b13b-7ad3-4277-9cc4-c3833fb1ed69.jpg -2533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it376283f8-09e7-4a6e-bd5b-920939b6901d.jpg -2534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it3832007f-e11a-4977-ae92-bb8e726d4fec.jpg -2535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it39e99524-b5f8-4fd4-bf01-8f657944ce37.jpg -2536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it3b2cb0f9-7a54-499c-abce-7c1ba6f48e5e.jpg -2537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it3eb6c69b-3b86-47dd-a28e-a5df12d96d1c.jpg -2538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it40976da9-58d8-46e8-996b-f37baf56f2cc.jpg -2539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it46ce3ecf-3afd-404a-bbc6-66cad031b954.jpg -2540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it4a56ea84-f37a-48d2-82e2-c04477b58dd7.jpg -2541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it4a7e59ef-e085-455a-9742-13deb450ec50.jpg -2542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it4ecb537e-37dc-4a17-887a-066020d6c44d.jpg -2543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it50ba8cc5-e6e8-4abf-ac2a-dfb3635d6af0.jpg -2544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it511861f1-1b43-4002-9122-83f80bf1f29a.jpg -2545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it515d2306-6ef4-44c1-bfdc-32a11db098ff.jpg -2546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it535d30b0-68f9-4180-8ca3-ccf113ae91c6.jpg -2547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it536a70c6-8a5b-4156-be26-57269722d70b.jpg -2548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it53a58486-7302-4d36-b6ee-c14779e60333.jpg -2549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it55806f05-554b-416a-9cb9-434693b02be0.jpg -2550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it563344f5-cd6f-4d25-a105-aca0c4160911.jpg -2551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it57c20e69-6cbb-420e-a957-e944449c1ee2.jpg -2552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it5bff07e0-58e9-482a-9b4f-898ba671bf1e.jpg -2553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it5cec4c16-3a67-44f6-b241-8ff9bfbe1343.jpg -2554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it5d4f3f55-b554-4331-878a-4536b629e486.jpg -2555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it60e973ac-90fc-439d-9907-59a4becdbf17.jpg -2556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it62b54ffc-508a-4204-ab78-e44b52a0370a.jpg -2557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it64c1ef7f-5bfe-4e9e-86d6-70972b9c24dd.jpg -2558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it66685cb9-f2fe-4861-8a72-91736b93f697.jpg -2559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it6a257908-ec07-40c4-ac15-478bb95e9652.jpg -2560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it6d7304cd-9203-4179-922a-df604be66ee6.jpg -2561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it730c6d1d-2694-4bfc-a880-b5152b6a7ec2.jpg -2562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it74405c16-3847-4091-af86-c0d23ffb77fd.jpg -2563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it771760ed-0fc5-4324-a579-4bb232e038b9.jpg -2564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it773a8094-c35f-4a97-aa2b-a15bc0d74863.jpg -2565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it79ff5052-58f9-44a8-a1b8-34ce8558b593.jpg -2566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it7acf289b-4d4f-4e5b-ba75-743e68243217.jpg -2567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it7af3a05b-65ab-432e-9bd4-ae7e16bbac82.jpg -2568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it7c0d5bb6-81bb-4169-9b80-bb15307a4b1f.jpg -2569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it7c89c734-14b3-464e-b894-dcbb67d558d7.jpg -2570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it7ed1a57c-9288-46bf-b6e3-cf8207c765dc.jpg -2571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it7ff03d78-04b6-45bf-956b-08de9b3b7298.jpg -2572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it81ea225c-fd7a-4b6c-8126-a72f4a96b3a7.jpg -2573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it88e071cc-e310-4026-a658-9ef310cbe43d.jpg -2574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it892a7fac-dece-40e9-b558-ddeda4dd86a0.jpg -2575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it8af5b320-c9f4-4f04-8daf-e3259076dfb0.jpg -2576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it935c88dc-b396-4030-bf3a-e970a47e97be.jpg -2577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it9a397262-2894-41fb-82ce-881ccc1c06d9.jpg -2578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it9b3b138e-266c-49a6-9bac-a0ed08649a30.jpg -2579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_it9d31d0dd-8cfa-4c83-955a-46e967a6b027.jpg -2580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_ita14b07d8-feae-49dc-b0f1-0fac192cc901.jpg -2581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_ita3ed7448-2333-4fbd-99e4-d4191999450c.jpg -2582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_ita58e43c5-c199-4a08-add3-6bc55aeb21ec.jpg -2583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_ita799c943-5222-4ed4-9048-036b1a90f91d.jpg -2584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_ita8e6c619-6c19-4db0-afc6-f2a4ce5719bc.jpg -2585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itaa04ca91-b526-4852-9fbc-c9525a8e3508.jpg -2586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itab622760-2212-46f7-adce-ad89e403c365.jpg -2587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itb3c22066-d2f3-404b-9a40-d2967c4faafa.jpg -2588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itb5a29b32-d6d2-4766-a2f8-7184598d4bbc.jpg -2589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itb81c163f-8e1a-4794-b74f-f654fa38e556.jpg -2590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itbd3126a1-773f-4fc2-a713-d17b4a650526.jpg -2591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itbe492ad4-be26-4eeb-9a29-d871b770c021.jpg -2592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itbfae23b9-badf-488d-9b6f-fc7c76084cfa.jpg -2593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itbfeceea1-8554-4557-9741-39fb4ae85acb.jpg -2594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itc02c4e16-b1c7-4c71-abdc-69b830ad87e5.jpg -2595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itc0ccd0f1-a8e4-4e2e-bae3-b09a03659a07.jpg -2596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itc7db3995-3c15-46de-b9f3-14d2f57ab5f3.jpg -2597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itc9e2c471-1be9-4d52-8088-9cf5ed0d720f.jpg -2598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itca05993c-f41f-45bf-9772-4241b7170869.jpg -2599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itcbf8e766-f2c1-406e-8ddb-0861a1a5f361.jpg -2600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itd087de7e-8a24-4deb-93df-f168c22af6df.jpg -2601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itd33fedf3-72e4-4085-b364-f5decac0393e.jpg -2602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itd4dce4ea-651b-4c4d-afe6-97d52c47e59f.jpg -2603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itd5436bbc-6523-4e20-8ebf-1cc093edb763.jpg -2604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itd8022513-4fc1-45d7-8fb2-ace483ca7e66.jpg -2605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itd9c9079a-19d3-42e2-a5fe-c0c35c815e3b.jpg -2606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itdf339488-8c7e-4fe8-b2b8-912f6d1f152b.jpg -2607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itdfa87996-b9b1-4820-8ea9-c70966dc6fa2.jpg -2608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_ite18bf85f-5bac-4954-9686-e51bcf792407.jpg -2609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_ite641db6a-1226-444f-ab89-996b7d03ed4d.jpg -2610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itf38b067c-485c-4bfb-91de-bdcbb34bd593.jpg -2611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itf4d636d8-5130-49de-9eac-691f7bca9af7.jpg -2612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itf53782df-c396-4bd7-90f1-bc2c55b73d2e.jpg -2613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itf6de8543-ff63-4619-8d84-5d009b6dc06e.jpg -2614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itf850e4de-bd91-470c-a53a-e7dfe3a65859.jpg -2615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bed_in_itfb495057-e070-4db0-aaaa-552893ef3278.jpg -2616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it006aea05-ca0b-4e2a-aab8-9b44347a3a6c.jpg -2617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it0675f354-fdf2-45de-bd16-2b20eb90d7dd.jpg -2618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it06f8eeb3-c5ec-4ade-ba10-a98521f217d0.jpg -2619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it07de4a18-07dc-44d7-989b-429dd48595c8.jpg -2620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it116877b5-c4af-48f1-afea-fdc65732cd54.jpg -2621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it1a896de7-8f65-49ac-ab37-63d223345253.jpg -2622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it1adebf96-b718-424b-914a-fdbbbdc0cd27.jpg -2623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it1d1d981d-ffc6-4b1f-8cfe-226c0f20f561.jpg -2624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it20e04ef5-5b65-47a7-bdfb-8a710bb36742.jpg -2625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it21e0b043-8651-4d7f-99cf-2a2143b78c5d.jpg -2626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it24a2ea78-7d7a-4bd8-bf60-33a386869985.jpg -2627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it24d4881e-43df-47c6-a04f-55836ad74a34.jpg -2628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it260081a0-9e6e-437d-90d3-3dc2658b564b.jpg -2629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it261ca4cd-10e2-43ec-a2a4-1ba77f3091d5.jpg -2630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it27cdea03-abee-4a96-943c-7f21f55215dc.jpg -2631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it27db5a54-38e3-4b70-8bf7-8180f00d830c.jpg -2632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it29a3dd93-ae07-4889-a1ce-562b27215313.jpg -2633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it2ad4468e-3f08-4f2b-944d-988378171205.jpg -2634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it2bc913e1-d73d-419e-a0d0-ac42c259d295.jpg -2635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it33e102d7-934e-42b6-8551-70b196bceeac.jpg -2636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it355c17b8-06b7-449a-abc6-ac165599634f.jpg -2637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it35bd0871-beb5-4cc6-bc3a-0f57a0bd38b8.jpg -2638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it3aeff83f-7199-4a1a-b80a-849ebe47fa81.jpg -2639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it3b66da4e-a669-4820-bc67-7341db619d02.jpg -2640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it3fa83244-7806-45d1-bdd3-1e86a499e441.jpg -2641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it43b1fe43-add3-48ff-8934-a26a773b8402.jpg -2642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it46f998f3-6c5a-41bc-a388-6d12d005cba6.jpg -2643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it4968db2a-d915-46af-932c-e722116a3695.jpg -2644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it4ced7bbe-2f86-4fbf-9c27-d55d468bac9d.jpg -2645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it5440ac4a-ce07-4cca-bcbd-28cb1cce435e.jpg -2646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it5495ba1f-08d5-4a2c-aa13-bd5ae96a88d6.jpg -2647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it5739785d-a528-4884-bf1c-ae2908665047.jpg -2648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it589fffaa-1dd3-4bd1-ae68-a56c7d0527e2.jpg -2649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it5eea9e8b-259f-4b7f-b106-640226680cb3.jpg -2650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it6035012e-1711-4f7c-96c5-88d53bf68694.jpg -2651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it62772af9-9758-4158-905f-a63661671534.jpg -2652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it668ce3fa-198e-425f-95f1-c2c202462a2c.jpg -2653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it68d727fa-c2f8-4a11-a25b-57e6e1bc864c.jpg -2654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it69f9db18-cc08-4675-82ef-35347b9f1200.jpg -2655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it6a677541-0ae1-4d54-a578-f79f1f9d49ec.jpg -2656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it6e58184d-0adf-4412-aa27-772e4caf0e05.jpg -2657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it759235ce-da29-47fa-bf24-057a23f4dadc.jpg -2658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it767c190b-893f-4025-a9f1-bac1f1150b7f.jpg -2659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it76c4ed8d-b885-4184-a39a-4a9db85dc2fa.jpg -2660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it77094a8c-7601-48aa-98eb-0ba2b7685122.jpg -2661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it7a843dcb-cb60-40f4-8a0f-d41234d68ae4.jpg -2662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it7d359233-78c8-4a03-ad0b-4aaf6d7037c9.jpg -2663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it8381fde5-fe84-4709-a7e9-f158f0d56f7e.jpg -2664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it83ba4c08-307b-4421-8240-be8dd7f13261.jpg -2665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it857c6bcb-79e5-439c-afbc-bbdd60b7eae5.jpg -2666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it85ff9363-b578-4213-8a0c-17c0ac7fd58e.jpg -2667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it8714919c-248c-4580-bfa4-8a39faadf3da.jpg -2668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it87d6974f-5882-448e-b762-e2c8cb130e30.jpg -2669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it89a5dccb-c3f0-4931-b702-bc1df61d84d6.jpg -2670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it8a244b60-0c12-41d7-a118-2fd639f0d704.jpg -2671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it8d3b258f-e4c5-4a45-9a24-03bf7c433c83.jpg -2672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it96f87dcb-c0c5-4dee-ad38-9a53d3eca9da.jpg -2673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it9776c519-525e-4ceb-bdaa-0b9ec5e70558.jpg -2674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it98c548f3-cc8d-4670-ae53-e5bdfa9783c0.jpg -2675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it9a313f4e-2370-4d96-86cb-1a13c49c5c1e.jpg -2676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_it9a537ff6-afed-4572-b482-bb586a2d12a7.jpg -2677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita038d946-5412-4c2f-ba22-094bb2e814cf.jpg -2678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita07d54b6-f3c7-4685-8e27-56cc93878e7e.jpg -2679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita194d401-09f9-4d2e-98c2-2161d640a92e.jpg -2680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita29ec2bb-4d17-4035-b7b1-4353789205ef.jpg -2681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita2a6375a-1009-412f-9033-aa50266a1855.jpg -2682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita377575a-212e-40a1-804f-db72389bc1f4.jpg -2683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita81d67eb-27ce-403d-bccf-0d3f8b38dd75.jpg -2684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita871a10e-69ec-4e95-ad24-07b5f28b0273.jpg -2685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita8acb5ce-36a1-451e-9486-95dcb8e1d760.jpg -2686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ita95d152f-b548-4db6-a60c-044694cefde5.jpg -2687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itaa28ad67-4418-4dce-9731-3f13179e63ca.jpg -2688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itae7b3d5c-93aa-4b93-a1b2-b581567b7c03.jpg -2689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itb0b16a45-2b3f-4a13-82ad-ed9f68ec8781.jpg -2690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itb96845a7-482d-48d9-95ec-9532a535dae7.jpg -2691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itba0e2230-793c-4c7b-a458-7c72e9767c7f.jpg -2692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itbb8f1a6f-f45b-446b-bf6b-a7d23d4237d4.jpg -2693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itc36d2688-90c1-4131-bcbc-29baef082a41.jpg -2694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itc7f3ff76-3b9f-49ab-8fe2-a2dcc5bcbd38.jpg -2695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itc8a2889b-d998-45f8-a699-71567ef81f28.jpg -2696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itca321b20-ba42-4e9b-ae8c-82e818bf5a80.jpg -2697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itd0f4e6ca-304c-4bc0-a546-58dc1937b267.jpg -2698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itd593d63a-f847-48cb-a011-f54c561e2db9.jpg -2699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itd7a733a1-e18d-4f4e-aa73-5be700baee87.jpg -2700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itd9bf71e9-7c20-460f-a3c4-1cd9c40f193c.jpg -2701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itd9cbbb5b-8a9c-4e76-94b8-bdf7b8fb9b33.jpg -2702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itdb9e9100-f100-4e97-a725-e9c0e72c3993.jpg -2703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itdea7d909-04de-4b5a-b3c1-0035a6c54c30.jpg -2704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itdfa38d85-b2c5-404b-82dd-de7cdc1362a9.jpg -2705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ite18aa10f-56bc-4c6d-b278-ff81bc777724.jpg -2706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ite2390211-f361-4b0c-a594-f718a5f95e9a.jpg -2707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ite26b6466-c742-4615-bc97-f2f1f71d4e1a.jpg -2708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ite2aa92b4-31d7-4bce-a048-95a6d82a0a2c.jpg -2709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ite391cb79-fdc2-43a0-aabf-9d1b2584a49e.jpg -2710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ite39f87b0-6820-4db8-822c-648bf05eceda.jpg -2711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_ited19ab6e-e3cf-4f94-bfad-b516f3954804.jpg -2712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_iteddcbd9f-9449-4734-97d6-f03899883a6b.jpg -2713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itef28b9f0-4403-4456-96bb-690a30b717ca.jpg -2714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itf6a1adec-bdae-4bd5-a5fa-5b5213167348.jpg -2715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bench_in_itfe230ed3-e21d-49a3-99e4-c7550da3490c.jpg -2716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it013f7f0a-8c57-42e2-977f-5953b9813209.jpg -2717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it0441594f-b77e-4cda-a13d-4a6bf153e8d4.jpg -2718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it06d29a49-32e8-4b04-b670-61fde2af0d56.jpg -2719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it0cc8caf6-7226-4e46-bfa3-c1b528ae1c3c.jpg -2720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it0fd49dec-ad8d-417a-970e-1ab02ed4e575.jpg -2721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it10bc8f5f-a92b-4db0-b976-56d8ff2b1c63.jpg -2722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it155567c2-b83c-439a-98a2-5d8433806fee.jpg -2723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it15a5cb80-458a-4ff7-a934-6b14da99cf89.jpg -2724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it17190dc7-bf03-4b2c-8016-046f3640499c.jpg -2725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it189cef1e-d651-4cb5-93ed-03c3ab9ba7b6.jpg -2726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it1bded00c-3dcf-4713-ad50-dd5cf57a0ae1.jpg -2727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it1d2a5c8e-333e-410a-a0bd-2b751166ab54.jpg -2728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it20744f00-8bec-4ea8-a9af-768ff2232c29.jpg -2729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it22c1aa03-5121-4b7e-a50e-43cb0ae94ee4.jpg -2730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it2626a5f5-1380-493d-b0e9-2b4d4c7663ef.jpg -2731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it267f677f-f462-415b-bb9b-7866b95ecfab.jpg -2732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it29806398-7353-4ca3-9f43-4b29ee34f30a.jpg -2733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it299e5bb8-fd83-4404-b879-e0222317c232.jpg -2734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it2a656066-46fc-4711-a7e5-280f966f7710.jpg -2735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it2c21f0aa-e74f-4867-a8fa-2a8e42d92b75.jpg -2736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it2dadcfd5-a793-4903-9d4b-8247a9c3d551.jpg -2737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it30525c55-5649-4c70-beaa-c1b314780e36.jpg -2738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it30d4e9d8-a1e2-45b8-a351-d155c59fddee.jpg -2739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it3a0ef1df-3a9d-4712-92b8-825479069b76.jpg -2740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it3a8f525a-a14c-464b-ae13-3b46c1b127a0.jpg -2741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it3b48d778-a728-47d4-a517-42b9b0cb349a.jpg -2742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it3bc50e86-9e87-4ded-9e7c-03f7d8fd697b.jpg -2743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it3f3f8f95-f49b-4d87-9995-87fa98f1132f.jpg -2744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it48ed0c18-8fc0-4a49-9e7e-31233d097d7f.jpg -2745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it493487c9-2513-4ac0-948a-e3916e3dc7d9.jpg -2746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it4f1ed400-5438-4412-9487-309570de7695.jpg -2747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it4ffab6a8-a47d-4f4c-af59-402f470258e2.jpg -2748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it63566c6e-ed57-4903-bb5a-95ca0619975d.jpg -2749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it63f4bbd3-9184-4097-a0e0-1457aa0b13fc.jpg -2750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it654558be-8246-4896-a2a3-bab588a1c679.jpg -2751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it66be39e4-63b6-49d1-8da5-92e9569e604a.jpg -2752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it69527e14-f378-44f8-9661-c5a0a03a8cd8.jpg -2753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it6c1e9db6-4af2-479e-a162-61dfe396a6bc.jpg -2754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it6c28c665-7411-450a-8914-aa5f29464afb.jpg -2755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it6d28e3b0-ef33-42c8-be2e-8e02c5608b66.jpg -2756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it6dda0890-7888-4e51-b2bf-e8a0df2f5780.jpg -2757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it71509801-5f8f-4ba4-b5e7-419edc7a53a8.jpg -2758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it71e9b90f-f0f1-4f0d-a1db-8d7a1e9f9f49.jpg -2759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it7256784f-2d90-4af4-9f5a-69b6c9edfa0b.jpg -2760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it72a4d349-9d60-4405-9327-a8d513af165c.jpg -2761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it7340cdce-1aee-4d08-91ea-f4342b3375bd.jpg -2762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it7888c318-4bb0-4c72-8dd6-3df9d24a8183.jpg -2763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it789ccf2d-f8b5-4968-b819-accfe6bb0506.jpg -2764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it7cf038d5-328b-4688-817d-585a3483b838.jpg -2765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it84044108-f897-41d4-890e-344765596c3b.jpg -2766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it84ccd1fb-d7f6-4f20-b435-9e2d059349b3.jpg -2767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it8acee0f5-7100-498f-b25a-e1506b4a7e3c.jpg -2768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it8c1accb1-8357-4408-8c6c-d1bf6aeef2f9.jpg -2769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it902154e2-99ea-4f26-be38-d05feb876bd2.jpg -2770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it93e2cf3e-8d9d-4f3f-a1f0-9747368109b7.jpg -2771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it94eb5879-c22e-41d8-83ed-d5d42f0880df.jpg -2772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it999cf0dc-cb44-42ae-8a4e-7103170bf1b5.jpg -2773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it9a2538da-106c-4810-af82-9169838dc6c2.jpg -2774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it9b53a75b-de5b-4bfb-b431-9423849bdb0b.jpg -2775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it9eab8254-2c09-4153-9572-e8c67a6066b6.jpg -2776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_it9f46ef16-1459-41e7-a416-044e9ae611a1.jpg -2777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_ita24ded1e-2cdf-4b87-8fff-51e164f1575b.jpg -2778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_ita7f203ae-5db0-41e5-9cac-c01f05618831.jpg -2779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itaa500012-9f25-41f4-a97e-91d0d97658a1.jpg -2780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itaa914d74-4109-4ebc-9671-7265a7b0329f.jpg -2781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itaf16c30e-3feb-417a-ab03-5a378de2a268.jpg -2782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itb2dac1cb-0d42-4186-acd1-c569bf5d8b94.jpg -2783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itb5dd8915-38aa-43d7-b820-7974e8803089.jpg -2784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itb61f40e5-df8e-4897-b110-a219dcf23ea8.jpg -2785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itba045c93-9554-477a-8f34-074aff905479.jpg -2786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itbac5f0e5-9226-4841-8d6b-b909a63399b0.jpg -2787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itbc159276-334b-42b1-aadb-c9750628c25f.jpg -2788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itc13c794a-ae3e-453c-88c3-ea1f593bdad1.jpg -2789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itc2a24d43-5f6c-47a1-9482-cd656aab25d6.jpg -2790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itc37fe03a-c351-4547-b6a8-76a771f3ba14.jpg -2791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itc471f334-9b1a-4051-8523-7062edff754a.jpg -2792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itca7d4fe6-3ca5-4226-8252-aacb5dedae75.jpg -2793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itcc3c786c-7d0f-4c5e-94cd-22e54e69bc7c.jpg -2794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itcc50d73e-eb74-4a8a-a71c-a582832a768c.jpg -2795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itccab09ec-935c-426d-a507-a246d01045ba.jpg -2796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itce6ef967-d1c6-471d-9c33-8675cbe7d6fa.jpg -2797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itd00731ea-06bc-4e99-bd9a-8ff34fc19859.jpg -2798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itd4349059-99d7-4717-951e-ce18e380db33.jpg -2799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itd63e486a-ac94-44b7-83a1-0c7c517a7f66.jpg -2800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itd83d3a90-7c40-406a-903f-f6bc93ecce3d.jpg -2801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itd9e65d69-adee-41d5-91d9-c31ffbc8e6c3.jpg -2802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itda0ea819-a431-40c9-be2d-831c52f92d88.jpg -2803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_ite41be822-e190-4d1b-b75f-f47dd247f274.jpg -2804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_ite43dc509-bfb0-49f7-b8db-c391902a5682.jpg -2805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_ite4dcc576-9a89-47cf-9329-6403e99ad3b4.jpg -2806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_ite7e095ce-4917-4e9e-8670-1f497c51d51b.jpg -2807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_ite9f19c24-e9f8-4ae9-a47d-620c673bd8bb.jpg -2808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_ited5a785c-0f27-4169-a1b1-072647367f88.jpg -2809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itee0e1395-a89a-48ab-82ca-b4d68b7b31fa.jpg -2810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itf423a5bd-63e2-4beb-a97a-af469d36aba5.jpg -2811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itf49c87a5-1dd9-4c11-afa4-2ff8a9897eb1.jpg -2812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itf6302b30-4ec6-41ce-a399-ebba4c75dcd8.jpg -2813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itf7bdf133-0b49-4417-86bf-8c37f70bbcde.jpg -2814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itf7c573e0-ec93-46a8-9c20-b1b8458c4357.jpg -2815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itfd1b467f-a430-4f84-9e42-f0d314f48d2d.jpg -2816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bicycle_in_itfd405268-a24b-4f3a-9cbe-119ab71bfb90.jpg -2817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it04910568-dbfe-4612-8907-be5ce29708d6.jpg -2818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it04ff7d24-8e14-4580-be57-690dee8e6b7e.jpg -2819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it0703b0f1-ccc3-4c97-b1f1-7d8b9cbb36c6.jpg -2820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it090386c2-6c26-42c5-bb23-87aad63c6339.jpg -2821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it0a259a63-034e-4c65-887f-e11c53d73df1.jpg -2822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it0ac88072-2257-4dd9-909d-1f2bb40fd2a5.jpg -2823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it0ce6a2fc-6ab7-48c8-a79a-3af89db1cb39.jpg -2824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it11f13dc3-80fa-492a-9227-06dc9795b9e0.jpg -2825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it13d27153-c4e9-4cf1-8898-de1b4b166bec.jpg -2826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it141ead69-eae6-41a8-a864-3e93bd90cd56.jpg -2827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it15eca349-bee8-4a20-9b82-b84d4f761775.jpg -2828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it1684be73-691d-41a9-a39d-d4b3a580afc9.jpg -2829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it1a208796-487e-48de-9364-97b0dd794754.jpg -2830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it1af915a1-e7fb-4b81-8db6-e1d217bee7db.jpg -2831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it1c483372-b794-41bd-aeb5-99fc4be3d34c.jpg -2832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it230bb129-5c0a-4ed8-baa7-8cb82ca78065.jpg -2833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it25e60bbb-c916-44f0-8187-11bfd1a3cea9.jpg -2834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it2654a7a6-0d83-4b12-b401-31d770e84e24.jpg -2835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it291363c3-d550-4ad9-8f39-f951bdb66057.jpg -2836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it2ce35836-a114-4757-a1e0-c4bbcc3b0b19.jpg -2837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it2d11ab28-73a8-4607-95ed-83f4ce890f2b.jpg -2838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it2fcf70e9-2e2a-4427-a948-c20030c74097.jpg -2839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it35ed7e41-ba80-4f0f-ad2f-8ad4687b2505.jpg -2840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it411e63ad-90a9-44c1-9eb9-8e69d0f1c4fd.jpg -2841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it41da33f7-11fd-49dd-b783-0cd218f9fa08.jpg -2842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it422d3f04-4f7a-486a-aa7a-8ef10d73f416.jpg -2843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it4425bbba-771a-446d-83db-8355bcc916d4.jpg -2844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it48fdf767-d8f0-482e-b096-f7541e2a22eb.jpg -2845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it4b891339-ffb0-4569-acac-c7f680f389f6.jpg -2846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it4de0852f-80c1-4122-b946-accbae51d1b9.jpg -2847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it4efc4fda-3826-4255-851f-ceddd3b84209.jpg -2848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it565858eb-0174-4ece-a388-86535a6aa99c.jpg -2849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it56705b88-2097-45e2-a264-bf8f7739cd77.jpg -2850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it5b2412d7-a557-499f-8f97-e4bd8b4c74c8.jpg -2851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it5d11fbe9-f9a6-497d-825e-0669428a2006.jpg -2852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it5e83e89f-9899-4ae8-b76a-d6fc67df8d6f.jpg -2853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it612fe4a7-ff75-4ea2-aa72-1e4a55cd56df.jpg -2854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it61a4da54-c213-4bae-b695-94c7d8d694e5.jpg -2855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it6789e499-30e6-46ed-a2e0-07eea6d22e1f.jpg -2856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it68a5b5f0-ae0e-459f-a0ba-e855e1a6e885.jpg -2857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it6ecc42b1-896b-458d-88e4-07e206d3db66.jpg -2858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it7306c129-49ca-4ee1-a4f9-390bef9acde7.jpg -2859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it731af13a-619f-471d-ba4d-8e35f5bb6a76.jpg -2860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it741f6d8e-2215-4907-a9f7-13ba9c780296.jpg -2861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it785b1723-2942-4b97-9e9d-f75068062f09.jpg -2862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it785d10b7-6f7b-41de-ba06-1939d5d07cc8.jpg -2863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it7b40f3d3-8817-4478-b728-503124b03b02.jpg -2864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it7b827abb-9f3b-4104-b9d8-22c691bca810.jpg -2865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it7caefade-6cd4-4bd3-bdda-bdc4ddf971c5.jpg -2866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it7d28762b-f4c3-4319-abcd-30e6883f709c.jpg -2867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it80b669c8-f4d0-467c-8ad3-1eeae993cf90.jpg -2868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it81521773-43a6-46d6-8611-c22b26fba684.jpg -2869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it835072de-a4ec-4761-a49b-9968365bad3d.jpg -2870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it87d42d90-fa74-49a9-a330-449ce86d270f.jpg -2871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it88aa1dfc-c168-4030-87fe-f5479bb4d89c.jpg -2872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it8b928b19-e9f3-4323-9890-fd33a32b1b15.jpg -2873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it915c4a75-613c-4a83-90b5-138ff89915d2.jpg -2874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it91bf934e-b3a1-470e-a9c9-c1c4b596d5a7.jpg -2875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it934b83a3-1648-4c1f-af89-074da7d9bd9f.jpg -2876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it98e9c21e-4fe8-4cc2-aad9-776f76f89a57.jpg -2877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it9957b2f7-9d33-4a78-918b-aafd774bd0df.jpg -2878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it99e79cda-419e-4767-a703-f140fdbbd009.jpg -2879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it9e726343-298d-4d78-a320-0d84534d56cc.jpg -2880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_it9ff5375c-73d7-4d15-b2f6-aed06db762bb.jpg -2881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ita0aa743b-bf41-4051-ad1a-d74ddc56497e.jpg -2882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ita224498c-a374-429d-b5a5-de6d25d9e4bf.jpg -2883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ita3463b1c-07bb-4d6e-8b45-d8b09cdb42df.jpg -2884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ita4b680f0-6501-4dbc-ad46-121fbbfcc5a7.jpg -2885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ita6e0fe51-6d31-46b7-9f17-ed04f457049b.jpg -2886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ita72d2574-9908-42cd-91d4-90f1042caf9d.jpg -2887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ita9b14140-771a-4159-b776-cdcb0a7cc825.jpg -2888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itaa345ec6-3151-4e13-b6d2-ca972743e53a.jpg -2889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itabc4efab-5f85-4f90-a3a2-9c0ada26d489.jpg -2890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itad139ab0-9e4f-49cd-a2c9-0805b0b80c58.jpg -2891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itaeac1188-cb9d-4dd3-b465-42ae7da700a5.jpg -2892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itb2e513ca-a2d5-4e46-bd63-2323dc9426cf.jpg -2893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itb3056701-8a9e-40e8-b346-6b220f776b1a.jpg -2894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itb329e475-d57d-4334-bdec-6ff0910e8606.jpg -2895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itb41f79e9-272b-4435-9234-9fa95944ab67.jpg -2896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itb4b06806-f43a-432f-b3de-8c03bc605043.jpg -2897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itb8397378-b319-4c3f-ba12-a8efd10ecaed.jpg -2898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itb8b147a5-09d7-4c8f-befe-44894e234e65.jpg -2899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itbcb67c87-ef89-4f02-aff6-363538bbaf90.jpg -2900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itc19ee9f1-89ed-4ae7-a11c-2cfcfc7b893f.jpg -2901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itc21d1515-5338-4dd5-8ffb-83b865570b86.jpg -2902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itc389a54c-089b-4057-ad81-5a2b73855bd9.jpg -2903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itc74f3279-ecc3-4f1d-8cd3-730cc19260b3.jpg -2904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itcd535b9f-9137-4cbe-92c3-3236b18704bb.jpg -2905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itd213368e-b244-4c11-9aad-b442aea78a39.jpg -2906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itde8c6f53-5d97-4f79-ae56-011420df98ba.jpg -2907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ite0607fcb-5f6d-4a41-b567-ccfe37fcf0e4.jpg -2908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ite180890e-e663-45c2-9941-4e1da78c8528.jpg -2909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ite26fb398-fe33-45b4-8eae-07963df15986.jpg -2910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_ite293a4d5-0033-4fd6-bd1f-f05614c00795.jpg -2911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itf3073208-fec9-45c6-93ba-46f068f7ad88.jpg -2912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itf7bd42a1-be49-49ad-a9d6-0c95fe379e6e.jpg -2913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itfac7499d-3cf1-419f-85fc-ab5a038227b5.jpg -2914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itfb709287-caf7-4cfe-9bd3-0bdb07fa6229.jpg -2915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itfd97868b-fc9a-4058-9df7-8e679764315e.jpg -2916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bird_in_itfea496dd-e2ef-4e7d-8895-020126df2a24.jpg -2917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it0d60b664-7e03-49cb-a48c-511cfd51b5fd.jpg -2918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it0dc73220-64a8-4e2d-8384-c9ccf1269445.jpg -2919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it10f209e6-0da1-4dad-a8a3-c1f2ee678251.jpg -2920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it130eeb9b-a8e3-4dd5-b2db-8e84d8a42005.jpg -2921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it14828d3d-e8c2-4b22-9894-16134868231f.jpg -2922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it157ea55e-9d48-484e-b9f2-b276892543b0.jpg -2923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it1b81e0f7-b171-4cc7-9944-f0121a6d956d.jpg -2924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it1c7d56d8-5fc1-4e03-b1a2-d28025b98cb3.jpg -2925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it1f8c7df3-4cd9-4cf5-89ff-c1514be8ef61.jpg -2926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it207a9f65-4473-479e-91b9-430cb59e9773.jpg -2927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it20bb3865-86b2-44b8-9166-9ffa723a9bfb.jpg -2928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it20cc3033-016a-4855-a6ed-f36984f2eec1.jpg -2929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it25e93e52-f835-454f-8a81-2a4487573efd.jpg -2930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it277a3785-d32b-4981-a7c2-6c4eee69124e.jpg -2931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it2d12ad99-86bb-4e0d-b3eb-545aaf0d5d2d.jpg -2932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it2d9137c1-eaa2-4f7a-aa7a-c20b6b867ccf.jpg -2933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it3011645d-2cbf-444a-92fd-66b22fd94905.jpg -2934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it30214816-fc6c-4964-a35f-d1064b752c0d.jpg -2935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it31f86be2-2898-4c9e-b3d9-68782c76bed0.jpg -2936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it3400cec0-9f9c-4b65-b241-99c9e52ad094.jpg -2937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it38788302-4364-485f-bd91-3eb264a8c58f.jpg -2938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it3f6f4320-3975-4d29-b340-5ab0faa06f9e.jpg -2939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it40d7293f-319c-43e9-b8b5-e0267ed87f5a.jpg -2940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it41e19c7d-7a0e-40d2-b443-2b0b2ad9b0a0.jpg -2941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it41ff3a9b-24f2-4f70-afe7-432c90610207.jpg -2942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it426bfdbf-2dd6-4a70-9436-291116f64673.jpg -2943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it4c4138c6-1344-41d2-b542-a89a2ba6ad14.jpg -2944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it4eb28150-3da9-401c-b781-49de4108b9ca.jpg -2945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it4f0e82ff-4d0d-4c16-99b7-343d79674721.jpg -2946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it5003e98d-ac2c-44b3-b1f5-085ad5affadd.jpg -2947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it5151c30f-8ba6-4061-a571-54bbf4eb4303.jpg -2948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it51f84c15-b7ef-4768-bb53-1f0b6d1222b8.jpg -2949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it59d09d3a-99e6-462b-add3-33c51f05e448.jpg -2950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it5d0761c7-bde9-467e-bd8f-8dbb96518e8d.jpg -2951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it60de94d5-3f7e-4dd8-ae33-c2638d1a7c37.jpg -2952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it66d2d793-7ffe-4299-892f-82056c5c6cd1.jpg -2953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it70ea1187-3f2d-4eb3-850b-b1c018b848c1.jpg -2954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it78ad4d8e-bd92-4063-a745-0425b1a7c627.jpg -2955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it7a33d220-3715-4841-ba59-fd3b413b60a0.jpg -2956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it7a606325-f2c8-4362-bcbf-0f22f94f2df4.jpg -2957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it7c90c02f-df15-4f18-9a19-e43e8b8c8507.jpg -2958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it7de976ac-8953-4d54-a1b3-ab62367d17b2.jpg -2959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it7e449be0-63c2-4b5b-8475-d3206d6e860a.jpg -2960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it7e75b52b-70ac-45ec-8b4a-191e5d5ab6f0.jpg -2961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it80066a93-9650-48ae-b2a6-cc97955b9c5d.jpg -2962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it8051ad7a-4847-4ba0-9700-8aff1d034be9.jpg -2963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it819e15f2-dfa7-48b4-ade9-1073d823e34e.jpg -2964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it843afa19-e373-499e-a14e-c2176ff04abb.jpg -2965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it86782f47-70f9-4036-84e6-babde48aa7b9.jpg -2966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it8708dd1b-f85b-4ae3-8813-4ffeab079f14.jpg -2967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it88d151fc-1a7a-4b12-a3b2-0dda20c45938.jpg -2968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it8a85f69f-27dc-4efe-9c3a-7cb26b2a790d.jpg -2969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it8e7f6bc3-513e-4ff1-ae57-836c71bc0442.jpg -2970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it8f3883b4-0a30-4b66-ab71-39e8cfc473ea.jpg -2971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it92d29903-bf17-45da-8535-c678efc80f46.jpg -2972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it94b79623-a827-4424-8942-20a7b36e9466.jpg -2973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it94f0fde4-f7d2-49e8-a23b-74c9d61f1362.jpg -2974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it98cee53d-fedf-4c6a-a5a9-33e80ddec1fc.jpg -2975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it99a3c6d9-1d30-4027-a294-17b8816dfce1.jpg -2976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it99cbde4d-cdc2-4469-893b-6ca38c1457bb.jpg -2977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_it9ce92fff-ce1e-4014-8b74-c3aa4ebf7440.jpg -2978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_ita34b2a6a-b990-4747-a589-edb4aabc072c.jpg -2979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_ita36177e4-afd0-49eb-a4d3-fc9cd3465dab.jpg -2980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_ita416869b-5147-4e9e-acbb-41444b4d4987.jpg -2981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_ita5150121-1067-4ee4-8658-6762b8945a3c.jpg -2982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_ita762f41c-f2ac-40ed-92d7-df36818fbbb5.jpg -2983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itacb5d150-3028-4bfb-bfa8-cea613b89f31.jpg -2984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itaef263e1-a2dd-4171-8d5e-24af6a7a4e73.jpg -2985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itb4de9271-1fe2-4d42-b711-8f49115b6d49.jpg -2986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itba61a8f3-14c4-461a-9166-26c8ab40d8a7.jpg -2987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itbd80940e-de4a-4e48-8433-0d9f509e41d3.jpg -2988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itc0105180-ffe5-4495-bcd3-4513f89e9433.jpg -2989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itc20a6d61-06af-4446-9f96-1ef4dfd9563c.jpg -2990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itc2b05bb1-dc6d-4fe8-9826-2af03b9ef425.jpg -2991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itc3199a37-4d5c-4162-85e0-ec743a7bceb9.jpg -2992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itc6bc0625-4277-4cfb-b130-cba830269d27.jpg -2993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itc89bce16-a5db-4bf9-9dfd-5383f75427c6.jpg -2994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itd4652c19-dafd-43ad-86dc-94ee6eb4c46b.jpg -2995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itd768c3c4-f52c-46aa-873d-546c5dbb47f2.jpg -2996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itd9465c4f-b2b6-4afc-81ce-cc6c7597961f.jpg -2997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itda891848-53c2-461f-b369-871f0c95ce65.jpg -2998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itdcb79466-705e-43f4-9406-465dd1c4fe8c.jpg -2999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itdd97526d-ca82-4cc9-85a8-54e09f7daab0.jpg -3000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itdf3e6dfa-154b-48ca-9f67-f81c31be30ab.jpg -3001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_ite2710d14-8a45-48d0-ad5d-b349423a88d9.jpg -3002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_iteb0faecf-34bd-4c67-88f6-730a0280def8.jpg -3003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_iteb26442b-6c88-455e-992a-6c08eec089e9.jpg -3004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itedb5022e-b209-4935-91af-c55396b153b7.jpg -3005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf10b4b59-87c5-4633-868d-78575d9f440d.jpg -3006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf1e16fbe-82aa-4c09-acd6-dd00686c4a71.jpg -3007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf281a7a2-b085-45f4-90b0-768188bb9de6.jpg -3008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf4501697-d827-491a-a470-d6e7f752a374.jpg -3009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf4c16bee-fe1d-41ae-9016-7f1dfbbb69f7.jpg -3010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf7683ab6-7938-49f8-8019-a2ec29e6d3ef.jpg -3011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf7c8dfce-dfc7-4628-b1c8-5f2e0e2c4e25.jpg -3012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf867d0be-66cf-4fdc-940a-60745fd5bf3d.jpg -3013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itf966ffc2-0254-4d1a-9456-aebf8772416f.jpg -3014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itfca55904-9e87-40f5-bcf1-e2bdd442c9c7.jpg -3015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itfed7ba75-2045-4164-bf33-be0feebbb9bc.jpg -3016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itff3b6250-8a39-41b5-98a9-5080f73504ca.jpg -3017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_boat_in_itffc00ac2-2324-44c8-befb-ae0bd85fff2c.jpg -3018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it026ef6e0-3cc0-41b4-8041-9b2cdac9cd27.jpg -3019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it05809cc2-473b-4277-aa75-79efef38f799.jpg -3020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it06847940-e304-4849-a180-d506b02dcb9b.jpg -3021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it0a1611cc-4231-478a-9f0c-a6bbc332894e.jpg -3022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it0aaa0145-0b86-4b47-80e6-0b542187c8a4.jpg -3023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it123fc21f-246c-436b-a2db-7e40de3beee8.jpg -3024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it19a4afd8-8d78-4218-b2bc-9f544f25d6a5.jpg -3025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it19d867c1-377f-42ba-a053-5ae1a76be176.jpg -3026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it1ad2fd73-1b19-43ce-97d9-906a74dc63ad.jpg -3027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it1f28915d-d2a5-45e4-9b5a-6297bcdee270.jpg -3028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it231ec59a-dea1-4b01-b044-62b7b15bd3e7.jpg -3029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it245f9f0f-0f87-488f-8f7f-6b337deff35b.jpg -3030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it257cadb1-8788-44bd-a4b6-b40b15c8b46d.jpg -3031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it2a8c35e8-e823-4f42-b05c-d977ddff9bde.jpg -3032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it2bc68c14-64c1-4c75-b4e0-cfad9273fd4a.jpg -3033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it2d0cda67-e68e-4a7c-b5ac-95dab65c1f3d.jpg -3034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it2e9f53ca-de80-4208-9c6c-792dc40c22ad.jpg -3035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it315196f8-8ef1-423f-b6ec-14d71cc12b4d.jpg -3036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it31f5d4b2-e940-4265-94b7-62fa31be80e4.jpg -3037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it347eca77-75e2-4127-bf19-b49e5e096fce.jpg -3038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it359d3975-a82a-43e1-a9a1-34a588e1b862.jpg -3039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it35f826c2-48cc-4511-ae57-254dbeea9cc2.jpg -3040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it36f092e3-e763-41df-ad4d-b67ca374fbcb.jpg -3041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it376cb0c2-0969-4a62-905e-5d3ab1de12ef.jpg -3042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it3c12a334-f5e1-4fa9-a275-61120ace42d9.jpg -3043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it3d368a77-1600-4400-a740-8b831532e09d.jpg -3044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it3d7b6403-2131-400d-a0d3-758ced788a62.jpg -3045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it45ceb5df-938f-452a-9612-975f00a40591.jpg -3046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it4cf4da23-993a-4633-a9fa-2156dd05e984.jpg -3047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it4d450e34-ac9e-413d-a5ae-6bd593afb8b4.jpg -3048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it4d474312-8a8f-4db2-b3e4-0da68968905a.jpg -3049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it51a0bd2a-0494-4e36-8463-218f25e68e68.jpg -3050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it57480d66-739b-466c-b220-46fa97a73437.jpg -3051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it5a5b4ad1-aad1-44f8-992a-5f7afdf42567.jpg -3052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it5b67b005-c483-488f-b6b8-f77a033b1b56.jpg -3053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it5ccc0804-ad51-4ac4-9565-208f03bc0fae.jpg -3054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it5d9d3a12-cce9-4687-8fab-c8280c6fe93e.jpg -3055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it60fdc9ec-7bba-4567-b83c-da89bbc28f3c.jpg -3056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it643bf972-b478-4027-8089-91941bf08085.jpg -3057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it6804fb96-46f1-4d35-98f5-7b18b6b06b29.jpg -3058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it6c38926a-de81-4906-8e9a-ae4da362ed2a.jpg -3059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it6d58f506-f722-4bd6-bae0-424417ed3d76.jpg -3060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it6eacb385-fe1c-45f9-8b2a-d4e31e0a130e.jpg -3061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it6f77eb4b-a0b3-48ea-a8c0-b81a17823f8e.jpg -3062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it726f0da5-8a03-414a-b09a-c46c1202d788.jpg -3063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it747345c5-c5cb-499b-bd4b-e6706bb0ee27.jpg -3064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it76b028e4-6ada-4c37-89dc-bfc941e4758a.jpg -3065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it79486738-f7ee-4e74-b468-8288df24235d.jpg -3066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it7a32069c-f523-44e5-a153-a7ebf53dabc3.jpg -3067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it7a51fe24-6ce6-43dd-8aca-c0ac83717133.jpg -3068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it7f20aefd-16e4-4c9a-8f94-8ad6c96b8859.jpg -3069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it81a41328-7a71-4f09-8d43-127eef24477e.jpg -3070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it81f70fca-ff7d-4482-991d-fd8396472fb4.jpg -3071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it82567d1c-4335-41b1-9f11-b04ffed3ea64.jpg -3072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it84e4aa29-111d-461c-8cc1-1168a4165bd6.jpg -3073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it8826ea58-cf1c-42d4-82f9-a4b72b5087fa.jpg -3074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it8974e850-3509-41a6-8243-1fa50b62c761.jpg -3075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it8b35dcf3-d09f-49f0-b258-ff49640ec038.jpg -3076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it90e68071-edf6-4d9a-8f2c-d65db4a3e9ed.jpg -3077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it93bb9eef-769c-4bc9-8abd-45ecfa026468.jpg -3078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it94407106-c6a2-45a8-a907-40cdff86bbab.jpg -3079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it97bba9bd-1c02-4cf0-8d17-1b97ec0a8454.jpg -3080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it9a715c28-bd84-49bf-9570-efd73f6963ba.jpg -3081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it9f1a3b16-1d17-445c-88c7-07ace22a378b.jpg -3082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it9f4066c3-da5b-47e5-afec-8fc24e144959.jpg -3083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_it9f7f1a2d-fbff-4529-86c3-38e488301495.jpg -3084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_ita1701fa6-37ce-42e3-9375-067fbc6e97da.jpg -3085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_ita7e3fc27-9ec7-42f9-8470-3c416a9b327e.jpg -3086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itacd30e2b-8df5-4c66-8780-97ca4b1b8aaa.jpg -3087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itaf59fe94-1ace-426a-8113-cf1464c14098.jpg -3088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itb02d3cdd-b366-4332-a721-7a3a0ff08e15.jpg -3089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itb697ba03-3e18-4fc0-bd25-6c8db168d6aa.jpg -3090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itba595f58-6279-4147-b4b8-4e6453e36896.jpg -3091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itbce9bf3a-8251-4a55-9b3b-f48aa3c28fe5.jpg -3092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itc3ebda62-78f4-48f3-8031-9f8d15b1e12e.jpg -3093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itcb255580-8df1-4730-9a11-f047b859c2ec.jpg -3094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itcdc199ce-ea56-4d5a-9997-5b4b29bd1903.jpg -3095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itcec65ffb-a867-4ca0-aae8-5747748727ac.jpg -3096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itcfb34493-22d9-45c9-8250-81cac08c7d2a.jpg -3097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itd102c35a-cc3f-4019-8aa2-ba9aac7db97a.jpg -3098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itd1dc3dd6-c8bc-4771-a113-cc08f77da4b5.jpg -3099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itd21b42f0-b2c9-4952-9e55-72ac177d8350.jpg -3100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itd3603d06-c166-4dc8-af3f-6720e618be6f.jpg -3101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itd868281f-6423-4be3-8a27-6001cf0fc7e9.jpg -3102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itd89e81fe-c1ee-4b71-8de0-8fb264708ab8.jpg -3103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itda63684d-2095-4bf0-a4c0-e6b4838b0f8b.jpg -3104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itdaf918bb-0bc6-4614-9c78-f30554f4fad4.jpg -3105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itdb4ed64c-0a56-47d9-8dca-80c2bd2c3007.jpg -3106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itdf1ff34d-f206-4d5f-b718-42d0f05d3f07.jpg -3107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itdfdc120e-d098-418e-90b4-f4f3bfe69aff.jpg -3108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_ite0526649-2bd3-477c-862a-cf920987336b.jpg -3109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_ite077a5bb-3b72-4892-9b52-839fc746bf34.jpg -3110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_ite34af500-c21c-4734-bd2d-ae607f679570.jpg -3111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_ite41ceb20-3c0e-4788-883f-5f69756d516e.jpg -3112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_iteb651e3b-09bb-47f2-ab0a-53a60226184f.jpg -3113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itf1ddb9ea-71ab-4382-a383-3fede8ca6869.jpg -3114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itf63fe12c-1cd7-44aa-83d9-9c9b97914a3c.jpg -3115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itfab919a2-32ed-4920-8c65-cbcfd4eccf32.jpg -3116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itfe59ba10-3482-4352-a1e9-e1047bbbf5ad.jpg -3117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_book_in_itff8a72bd-56c9-4072-9aff-ab93395f8539.jpg -3118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it005cb749-b5ae-4c25-824d-00041ec85e0f.jpg -3119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it0074e574-8a1a-48e4-b5b9-1c3cd1368fa5.jpg -3120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it0359ca97-92ce-4dc7-ba04-9a24dee9f9c3.jpg -3121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it04c6a73e-8fc5-4bf1-b64a-64cb52c5de50.jpg -3122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it0699e8d1-b05e-4339-94b7-6380344ffd01.jpg -3123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it08001997-b95f-47f1-9701-6b87ddf20eb6.jpg -3124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it08b7510b-e855-4848-98b5-4b1fcb11fd10.jpg -3125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it0c744405-0b21-46f7-848c-9769832e7a6d.jpg -3126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it0cc1266e-be6f-4f42-a481-cf0675ed8415.jpg -3127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it0d1fc27f-a64a-4152-914a-f9b596e3ed48.jpg -3128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it0d5e8d89-835f-4d03-946b-425ad4ecea0e.jpg -3129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it0e861e36-2582-4436-9d1e-b53500638988.jpg -3130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it11de07e3-6676-48a2-952d-4d2cc7744bbd.jpg -3131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it1a83043b-e7bb-48ae-b3c3-fc8376296ea9.jpg -3132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it1e6b3a11-8374-45b1-8f31-c7e707658be0.jpg -3133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it1f4bb891-b1bc-4799-aa02-658134e8426b.jpg -3134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it202cd778-c386-4c13-a815-dfd35fb4cc42.jpg -3135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it230587af-23f5-4df1-8b3d-30d8ee1aff3f.jpg -3136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it25563155-a383-4a97-bfb3-c60c496956c7.jpg -3137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it27c47b2d-5b22-43ac-9816-2e2e28d2d877.jpg -3138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it2bc5df96-0b36-49ea-a106-f5e8d76d484e.jpg -3139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it2c41129c-bb6b-4bd1-9b9c-fb627c37a876.jpg -3140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it313602eb-f818-4b19-817a-63b796c0dac3.jpg -3141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it3691e639-c119-4aee-be28-a8709a656c0b.jpg -3142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it3699fdbe-7008-4555-99f3-cc688cf0ad2c.jpg -3143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it36a9bc02-5b7a-4c88-ad77-e33c6ac01495.jpg -3144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it3cfe4956-1fca-4cfb-9e48-131c148a019d.jpg -3145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it3f4ef0ae-6b2f-4c21-84d5-f721ee2eee21.jpg -3146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it423ff97e-f9e7-495c-bb92-2264c46c0d4b.jpg -3147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it43eb75a5-9727-4361-9e96-917cc9434e05.jpg -3148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it49305288-8ca8-41f0-98fa-0f3b2dbec858.jpg -3149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it4b40ac71-e068-4842-bd6a-c210a0e7edcb.jpg -3150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it4dfab00b-5dc7-45fa-8ced-37e3e06904cd.jpg -3151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it4e11ce18-14d7-4d8d-97a6-54b30a45c14e.jpg -3152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it5287d22d-267b-4652-ae0b-1b15e4765b0f.jpg -3153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it5bad5886-9144-4589-b8af-f04e7ba1ae54.jpg -3154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it5c3af77c-3f76-4142-beb6-d9bab7514867.jpg -3155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it5c9c79dd-1470-4a3c-afdb-c6683fecde78.jpg -3156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it6356e3b4-dd87-4a36-bd72-51596121e7bd.jpg -3157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it641694bd-df63-4195-8922-aff7e6db2ad3.jpg -3158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it666d313c-15d6-49c6-b23d-6726e61f34d1.jpg -3159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it66c56f80-d72c-4687-b22c-17d9465f10de.jpg -3160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it67864dad-14fd-41df-907e-e301326138cc.jpg -3161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it682828a3-9b78-49dd-b07b-c5fc8ad2b8a4.jpg -3162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it69fcd21a-91ad-4079-942e-84cee81e717f.jpg -3163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it6d6321da-c984-4cd6-b8bf-22032388ca65.jpg -3164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it6ea0ea35-720d-475d-b4ed-e763d039fed4.jpg -3165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it6f1329ef-d3fd-412d-b15d-8bd284aae1aa.jpg -3166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it7099e18d-a850-4d0f-8855-a8d0a1049b61.jpg -3167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it71ab9804-6e3f-4e4f-b53f-871627d4fb82.jpg -3168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it73d2c83c-c00d-47d4-aaa0-3d77808a8556.jpg -3169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it7439dc15-6437-4d93-8999-1d4c43a2b857.jpg -3170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it79c42f0a-26f0-4d8d-995e-0ea416b8e5e6.jpg -3171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it7bd8c292-2c4f-4e28-a4ec-ddb1ef6802f1.jpg -3172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it7cda4766-1f1d-4d5e-a6ca-b7cd58b49828.jpg -3173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it7f1cfa93-eba7-4cd8-a9de-b478a744f1e4.jpg -3174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it7f7161c1-059d-4a1a-ab4f-f279b467eb81.jpg -3175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it7ff6b02f-04d7-438e-94ae-da30ab8fe552.jpg -3176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it8931fce2-30d7-4909-a718-226a1556f04c.jpg -3177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it8ecd8c46-e58e-49bf-9f5b-62efecec5e8e.jpg -3178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it902b5aee-fffc-4683-88bd-cfc74e9b232f.jpg -3179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it91ba3376-f9bb-4095-878e-47de52e8c7d7.jpg -3180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it921dd14d-f516-481a-9416-ea67a0ad4187.jpg -3181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it9afeb768-8ea8-4e66-b414-0f5be668062c.jpg -3182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it9b582325-ebc1-449e-81d8-d2ace1dfc3e2.jpg -3183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_it9e7de3cc-6413-4302-a5a1-1d2760d8b812.jpg -3184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_ita4872cfb-d332-43d3-816c-a996bb8fdb95.jpg -3185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itadbace94-5836-4657-8940-b1f03fdaab45.jpg -3186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itaf8da7ab-9267-4378-879e-64528295636e.jpg -3187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itb30dc9ab-ae05-49e7-ad4d-29226eb4771d.jpg -3188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itb6edbf17-c42a-4bd4-8e1c-f637f2a02360.jpg -3189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itb831188e-4c6f-4b3c-8c69-a974fd4a957a.jpg -3190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itbb496bfa-54e5-470f-9f71-d4023b60efb3.jpg -3191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itbb6f21b7-7020-4202-8fdc-1f74bdd4ac06.jpg -3192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itbdf2320e-51f9-4d31-9709-83f86106595b.jpg -3193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itbf327114-0b5b-4185-b81f-40619b49d06c.jpg -3194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itc20fa714-e27e-41a8-ad41-d3c40a278000.jpg -3195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itc75e8d7e-92df-4bfe-a176-9392deabae9d.jpg -3196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itc8f60e52-7e50-4b20-b9ab-d5f689c6b0c7.jpg -3197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itca117698-af4d-4a94-8538-ff4fc5de1bdd.jpg -3198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itcd91b850-f25e-4a21-bacd-741683fb4af4.jpg -3199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itce295ad6-a798-4fe8-b684-9e9b7c8ec0bd.jpg -3200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itd2c9b0c7-1e69-40de-940f-6489df564315.jpg -3201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itd7e5d5a7-53ed-4b8b-a76f-cbef02affbcc.jpg -3202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itd8b6bafd-a1b1-43b7-95d8-d2f1b2eaecfd.jpg -3203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itdd8cddf6-b233-4720-9ee3-702353d72d86.jpg -3204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_ite121fc6a-2048-4ab5-a258-309aadaa6c4a.jpg -3205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_ite156724a-cb79-4714-8ab4-953c69004c48.jpg -3206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_ite4906e55-cd46-46b7-89f0-433290d4b950.jpg -3207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_ite49fdecd-b21c-49e7-b377-256b8079465c.jpg -3208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_ite78e0d8c-eff8-4916-8b51-ce9046c51729.jpg -3209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_ite820b78e-6041-4607-8742-d28efae7efaf.jpg -3210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_ite9b6aa3c-c4f0-407a-b385-7880cdac6dc4.jpg -3211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itebd7543e-b6fa-46dd-a0ad-0ce7bb07ae84.jpg -3212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itebf6aafa-2e55-4813-8f38-763dca5904c1.jpg -3213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_iteff3fe8c-cc11-4bee-91f2-c221405a4f82.jpg -3214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itf2f3cfa1-39aa-43d6-8e99-18d2de68b333.jpg -3215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itf3f80ee9-bf79-4461-b877-ee7452d8fd30.jpg -3216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itf86370ae-1291-44ce-8121-448aab1c4207.jpg -3217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bottle_in_itfbe28538-e78d-4453-9b93-7e399d88f1ca.jpg -3218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it02943f57-e955-44aa-a851-807620929ec1.jpg -3219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it02cfe549-3bf4-418f-9381-a7db3a8cc873.jpg -3220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it06de571c-9452-45b3-bc66-210df31d5e7d.jpg -3221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it1146773c-d7b7-489a-8ae2-a82d32d1985e.jpg -3222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it115650c4-eb13-4928-9c64-fa45819d0e7e.jpg -3223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it12437f58-88e8-41cc-b9d6-112d2dba55b1.jpg -3224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it1825860d-acea-4ca3-a147-24d40865a563.jpg -3225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it188ed45b-e56e-4739-a93c-0e97df02f550.jpg -3226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it21c4ec17-fdfe-4583-8124-2fda6725ff24.jpg -3227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it225409be-99aa-4233-b846-573ed1e0039d.jpg -3228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it25156d6d-f41f-4ada-a305-38a03eca2a59.jpg -3229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it2549d40e-a86e-47be-8fe0-8a174cb10819.jpg -3230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it25bf0423-1743-4e30-bc8e-c480d624b717.jpg -3231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it263e3d59-981a-4a36-9ded-a339af4ba872.jpg -3232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it272945b0-9e6b-4861-aeec-db0ae5072a65.jpg -3233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it28981f57-d874-42ed-93ed-3b7f4178c43d.jpg -3234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it28cbc7f6-b980-4b2c-9006-0f3f2886865b.jpg -3235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it2aa7b97a-d84e-4e04-8d4f-d3de9d19ec9b.jpg -3236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it2b09113d-386c-4637-afd2-18221bcbd5f8.jpg -3237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it2d03e949-080d-4ffa-9eef-0e8bf023f242.jpg -3238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it2f69e89a-40b0-48ab-83ec-3a53446813f7.jpg -3239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it30aa81a1-c3e2-4b6b-9c26-5c4ef5bbcf80.jpg -3240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it32f34ed6-6d9a-4da4-b955-a7438cf1d38a.jpg -3241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it34792806-eace-4b67-9997-971bcabf7db5.jpg -3242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it3e80a37d-019c-4420-8f52-10004afa550c.jpg -3243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it429560a5-1780-44fc-a6dc-01aaef1681d1.jpg -3244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it42e72c97-9a9d-4523-a44e-d9fa6e9bd7ed.jpg -3245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it43a7ed56-cf4a-4641-b800-ce89cf9ee0ef.jpg -3246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it472eb56f-2d7a-4dda-988b-ccba4b14efb6.jpg -3247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it4cba4f08-907a-4ac2-93a6-43aa8b4883ca.jpg -3248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it4cee9d53-9231-4357-a5da-1dcc1f4c051e.jpg -3249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it4f57a709-de5b-49a0-aaa2-cd1107bd9656.jpg -3250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it51b85a48-25d4-4ddd-8942-9c33841b1fe2.jpg -3251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it5259f27b-089a-4809-8a55-1873debcebe9.jpg -3252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it52c853d6-548a-46c1-b285-3c4fdfa901ca.jpg -3253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it541255ca-85eb-4784-b03b-d94abdfe9bf6.jpg -3254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it5952f553-444c-4e7e-be64-56bf72c67a8d.jpg -3255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it5bc32ede-950b-45bd-a1fc-b391291de6b6.jpg -3256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it5ff80a92-ca99-47e0-b5be-0092043afc93.jpg -3257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it620e21c6-3729-4806-aeb3-8d35f1c9b687.jpg -3258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it62336a23-c962-4c47-a98f-e2cc66ae49d3.jpg -3259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it65cd3cbf-d9c1-4969-a05e-c5f7910f03e9.jpg -3260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it66e2a3e5-2e92-4229-bfd6-bc52d9349f1a.jpg -3261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it67e3b02e-9cc7-434a-a7e7-5270c547ed4f.jpg -3262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it68808349-887f-41c5-973e-d56b8d62b8c6.jpg -3263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it689fbe97-d707-4a47-a18e-99c8b00615d1.jpg -3264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it694de3a3-442c-467b-89b0-efe2be62f5ad.jpg -3265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it6e3909d9-a3de-4276-ab9e-660f35eacbbf.jpg -3266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it7388043f-4f65-4bfd-949c-9b928b717bed.jpg -3267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it74446926-d285-463a-a40b-be3dc7ffa2d9.jpg -3268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it753d72ed-d2b5-4246-924b-9b085bca291d.jpg -3269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it7d5e233b-ae7c-4caf-9945-0e737a245892.jpg -3270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it81023518-fce8-4e98-a24e-b547afa08007.jpg -3271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it819d9ea2-4a31-483d-a083-af3fd0d76774.jpg -3272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it825a3280-1763-4f79-8062-59f4ac8b4011.jpg -3273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it844a4071-6c67-4fd9-97b5-20b042121b55.jpg -3274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it888c1c75-7919-4dd9-8d59-bff8cd28e485.jpg -3275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it8d9f3a69-3a61-46a5-b895-985b31fa0836.jpg -3276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it95cb9c57-5cb8-439c-93a0-398e632cd681.jpg -3277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it975bf878-1743-46f1-8418-9a4f690b552c.jpg -3278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it97c68f91-19ad-4fe4-bddf-b4c795876456.jpg -3279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it97e89bad-4785-47a2-9d24-94d35af2f6a7.jpg -3280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it9985a787-ed43-401e-9123-11874277057c.jpg -3281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it9c5ea86c-996b-4da8-98e0-40da8eefdc9b.jpg -3282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_it9cd2694f-2d31-4348-a337-be201d06743c.jpg -3283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ita03ae90c-3814-4d3b-b10c-e22799f1349c.jpg -3284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ita23d1834-bd36-4b32-aa54-d5e7411a2c20.jpg -3285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ita5bb803a-4d07-4ab9-9843-a92520a55085.jpg -3286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ita6c9433c-9452-4d36-832a-3ac882bee91f.jpg -3287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ita9f246e1-4b45-4568-b258-1f302786200f.jpg -3288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itaa566df8-b908-4bcf-a60f-9f1223f2f23d.jpg -3289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itb1ff59e7-18c7-4816-8afa-3b4e428a072c.jpg -3290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itb41955a9-2a15-4d11-83a2-df3364114edb.jpg -3291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itb467d19b-f14a-42bc-9ed9-330bda61ceef.jpg -3292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itb956f574-101c-45b3-988d-3a96e916919a.jpg -3293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itbc854cec-a888-4c7d-b715-40ec3a7374dc.jpg -3294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itbe44bbda-e684-4613-b431-09d7f3108ed3.jpg -3295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itbf79b224-4d99-4bac-921a-f714326b74f0.jpg -3296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itc4e96ed4-4df8-41f9-8d42-0bd2785ae06b.jpg -3297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itc63327b1-bde0-4471-93bd-fd11066f9f4d.jpg -3298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itc85f669e-f630-4ed1-aa66-5fa17208e167.jpg -3299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itc903839a-990f-4cff-85d0-3f82f4da1b3f.jpg -3300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itcc97194e-074a-44be-be6d-9e577a24cb46.jpg -3301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itce236644-2656-439d-95e9-4ba4725d2c66.jpg -3302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itcecc2f5a-2381-4d00-8c7b-f537a9757b76.jpg -3303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itd17a5931-75fc-4ae0-bfaa-c39b4e8d4dbc.jpg -3304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itd5195932-67b5-453a-b657-53bced8ef5f7.jpg -3305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itd520e67c-2c8e-4174-89ca-af94d5e6dcad.jpg -3306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itd7de0570-4e6b-4d8d-b04e-88e2fe2edde9.jpg -3307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ite3009f22-d89c-495a-90da-df09f18871ac.jpg -3308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ite41d7524-056f-47ab-b2f5-da38eb5cc66a.jpg -3309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ite56cb9e7-d163-421e-aa16-8e6197526cc0.jpg -3310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_ite9a781a1-cf39-42a5-a38c-fbac3ed248da.jpg -3311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_iteb7c78a4-7afe-4d6e-b382-97b461cef1d4.jpg -3312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itec57d244-1915-464b-a6f7-82d0c6464107.jpg -3313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itece735e6-c21c-4f44-8af4-4173ada54793.jpg -3314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itf2a741e4-7e8d-4fb9-950c-09f42b8a1ca9.jpg -3315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itf921eee0-cd74-408c-8e53-0accb766efbc.jpg -3316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itfe6b0425-175f-4d21-9dfc-dbc2f37416f5.jpg -3317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bowl_in_itffa18663-2a8d-4ffc-a822-325275b594ae.jpg -3318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it02486278-de05-485f-97ee-576481876d19.jpg -3319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it03bf96aa-74ef-4976-8422-9c88a7b1d6e9.jpg -3320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it04ef37ac-1af0-495c-8b40-0e335a032916.jpg -3321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it0630ad82-1dd8-4875-b16e-b9fe00fee870.jpg -3322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it0ae2a7fa-909c-471a-b0e1-e8b22491ba93.jpg -3323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it0bac7c93-6d75-4f85-a7b6-4995a313cebc.jpg -3324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it0c49b2ba-2a9c-4abe-9719-b5cc6a3ab61d.jpg -3325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it0ecd116a-fdf2-4c77-929a-135e7067c3a8.jpg -3326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it0f1428c4-bdac-4b0d-b9fa-38f89e07a176.jpg -3327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it1bdc4ad4-867e-4af2-9579-d2e441b2e3fa.jpg -3328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it1c64ba2e-71f5-4b44-88b3-039d0fdccd84.jpg -3329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it1d52bb3d-fa79-429e-b273-192cb9b93c98.jpg -3330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it2136b0a8-38fe-43e3-be17-50900de08789.jpg -3331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it216f07b8-65da-45c0-a5ff-cdf00601f8f3.jpg -3332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it243748d3-0f95-4315-babc-dfead4e50867.jpg -3333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it2a43df63-8944-49f6-8053-bece976be8ae.jpg -3334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it2c9f908d-50c9-48e1-9bad-798d3d6e4532.jpg -3335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it2e48eb25-435e-498d-a577-76e555394699.jpg -3336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it30007e1c-37df-4ff2-8b21-c9a3a10e61a9.jpg -3337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it30892de6-8021-4975-a5d8-0970165b9f84.jpg -3338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it31ee77f2-54d7-4d01-ae05-98f9a45909d9.jpg -3339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it36641c86-f8b0-4b44-b398-03b55f83b697.jpg -3340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it394215d7-0b6d-4b2b-9a17-ad0e189d0a8e.jpg -3341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it39a74e19-58fb-4bb6-affb-475f38b7e721.jpg -3342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it3a3e0f95-818a-4a7b-aea7-8c0eae1a093d.jpg -3343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it3b395281-855f-45fc-bd0e-3acfc9a3a773.jpg -3344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it3bf14c78-0bde-4708-af0c-66df24d56cb5.jpg -3345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it3f678222-527b-46ad-9d10-8766d5e7336c.jpg -3346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it40c295bd-6e3f-4444-9c5e-ef382e9cb5a2.jpg -3347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it4295f83c-7117-4f14-b09a-291d23ce1997.jpg -3348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it478afbd1-03d4-473d-ad44-1bcf2914701d.jpg -3349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it48247046-9956-4a40-a299-0828dadf5cab.jpg -3350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it4bd19c44-0cca-453b-93d0-51923e05dea7.jpg -3351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it4cfdc7bc-d53f-4af1-a16e-d9d146c6c5b3.jpg -3352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it4f8b7723-8b17-4c0a-b2f1-90587d1e5de4.jpg -3353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it50a4e1d3-3c8f-4456-858c-0fb9d7959835.jpg -3354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it51cac883-8b9c-4e29-b3e2-3ba6bb1cfceb.jpg -3355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it51cd3670-9f39-4988-8809-dc7c554fc2e7.jpg -3356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it5296fe85-aafb-463f-84f8-459511cdccaf.jpg -3357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it5343f29d-211e-4db9-83bb-11343a2c806f.jpg -3358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it56ae28d4-ccce-4fd0-8a6b-85c8b37b850a.jpg -3359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it59bfc3f1-5594-4479-b7c0-35907341dbcd.jpg -3360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it5d5f18c8-d4d6-4168-921a-285d52cbd0d3.jpg -3361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it64d5ffa3-79f8-4a4e-9a34-3662b2865c80.jpg -3362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it6ad2afae-44c6-4116-8fbb-b46ecec60cf1.jpg -3363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it6bf40244-23e4-422d-a3f8-3b067e1e16e0.jpg -3364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it70e2150b-84c5-4e60-91a8-80f0d676ae7d.jpg -3365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it7454f4b5-7220-47a0-b4ef-f15bfa1bad3a.jpg -3366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it74785dd7-cb0c-4419-9c35-9abfc325f622.jpg -3367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it7675f624-9baa-42cd-94f2-cf8a74ee6fed.jpg -3368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it7f05e92e-3311-40dc-bcc6-910c31d7816f.jpg -3369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it80fe8d91-7977-4565-bc7f-cd243224b690.jpg -3370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it82002e2f-fb88-43be-b2f4-e8038833ac37.jpg -3371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it820e7266-c507-4b18-8ef8-abaa294c5771.jpg -3372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it82a1efc9-cb78-400c-b480-d4aaef5b4569.jpg -3373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it83957c0d-7447-41a6-a644-ba23effa76ac.jpg -3374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it83f457d3-49ce-4fe3-aa4a-2283a5756df5.jpg -3375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it86ed4ebd-3f77-41e7-ae0b-b3e706c69ca1.jpg -3376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it87201dd3-e5e4-4034-8e42-65ab09aec2e2.jpg -3377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it8bf87dcf-692e-4fa5-8357-8279b0abc600.jpg -3378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it93ffcab5-0291-47da-98d5-5b51977ad1aa.jpg -3379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it94bbacb9-9da6-4426-bd00-7e47264cfa9e.jpg -3380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it94c82970-a321-4a64-a035-105d71a8e67b.jpg -3381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it94e17028-2f88-4729-9b7b-2a8168abba8d.jpg -3382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it98376c3b-2910-4a17-b251-8c8e773be9cf.jpg -3383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it984f70bd-00c9-42b7-967d-01de304665a2.jpg -3384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_it98b6d6c3-823f-47a5-8c0a-ffcfca97d48c.jpg -3385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_ita0d626b5-2665-4aad-bb25-ef309b624802.jpg -3386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_ita1a7e81b-303d-46b0-9cc4-81dfde8a6954.jpg -3387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_ita39f704e-133f-4942-9751-69ecc19c3ab1.jpg -3388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_ita4419257-4d55-4c78-b2e6-fb846440ac61.jpg -3389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_ita4d44579-c5c0-4cef-b993-801de150aee1.jpg -3390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_ita53269ae-bea1-4ec9-86cf-c95fd2eacc62.jpg -3391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itabc58f57-b4f4-45c9-81ff-1e18c2424d5f.jpg -3392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itacc12719-9223-4ca7-b853-8144c91dea1f.jpg -3393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itaf13857f-cd12-488f-886f-3936309079e7.jpg -3394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itc2927605-4ff6-4f7b-9423-0775f9c67952.jpg -3395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itc5622868-3bfa-4656-9734-5f9dcda6be87.jpg -3396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itc5f13042-8d28-401d-a83b-d027181c6a04.jpg -3397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itc949e45b-c4b0-4248-bcc7-71b01c9a790f.jpg -3398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itcb558f0c-7697-44ae-a3eb-b390ea0d54b3.jpg -3399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itcf0ddd03-4bb9-40fb-bacc-60d37f5b624b.jpg -3400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itd0cb8e45-885f-4245-9b30-459e7e8a67a3.jpg -3401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itd3325467-c015-4d49-9fec-ae1c1985e9e2.jpg -3402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itd3dd8f43-38e3-4b54-852c-bc19d8031d25.jpg -3403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itd578c9e8-2169-4e01-988f-c07bd691efae.jpg -3404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itd5814e35-8e60-4111-b8b0-076ca98aacfe.jpg -3405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itd81615be-5b1f-4950-ad00-0aa6f432f002.jpg -3406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itda8544d1-5a6a-4279-9fbc-51ed248c7641.jpg -3407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itde374b47-f0f0-4ef4-8c6b-2d4d2bd99283.jpg -3408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itded003d9-f2e2-4371-8df2-0f782ea583c5.jpg -3409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_ite6b982aa-0d67-4442-a64f-90196d24f87d.jpg -3410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_ite8c45818-e3f3-47bc-97c9-d19fbc6edf5a.jpg -3411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itecb78e4d-ea8b-47cc-b1fe-3daf6644bad8.jpg -3412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itf00a0b13-c52a-4229-ab6b-b8e278e11244.jpg -3413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itf66a9dbb-2dc8-4f50-b3f3-6e7cb58099a6.jpg -3414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itf6f72427-8803-422c-a30c-a750a0665146.jpg -3415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itf8a03169-1b86-4379-be95-b966dcdb1752.jpg -3416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itfa33222d-5595-43e3-a75e-a2a951b6f7ea.jpg -3417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_broccoli_in_itfe4191ca-c424-4750-9acf-cb46a40f03a4.jpg -3418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it0024311d-78ff-4bf5-8e14-a760599f2250.jpg -3419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it00f6c944-56fa-4ca2-b68f-15521294ac0e.jpg -3420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it03d3085a-ed82-4954-b4f2-959a193d75d1.jpg -3421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it08c8fcbd-2d57-4aee-9c5a-c5c86fabbc77.jpg -3422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it096d2f5c-cfac-45d0-a518-ac458abcb1b9.jpg -3423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it09759182-d34d-4771-ae13-6b2df53ff3de.jpg -3424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it0a9a6e56-ecb5-4b81-acdd-20b454fa963f.jpg -3425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it1eca8bb4-9e53-47d5-b31b-9f8b248585f4.jpg -3426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it21bbc278-0f4b-439d-ae57-6d808466bb90.jpg -3427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it21fdedd5-338f-4b6d-99bc-89d02b55685e.jpg -3428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it223c297d-8c27-4bd8-9514-692e5e3ceb77.jpg -3429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it26230f45-dbdd-417f-aad0-b01ee423f2fb.jpg -3430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it29cea3ae-e4d3-4a8f-820d-4e49be60e205.jpg -3431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it2a92e76f-2df1-469d-be6f-c3b276902411.jpg -3432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it2b47d16c-4548-4b50-8793-fccfb8bef5bc.jpg -3433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it2c9476c3-c5db-40a3-a394-5cec38eacb96.jpg -3434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it3017e405-db3a-4208-bc18-f13fb6194cf9.jpg -3435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it30838fc9-3379-4894-a4b0-809845e2e644.jpg -3436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it31d76898-860f-4dc3-83f0-84f1c07e8f22.jpg -3437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it31f36bc3-99bc-4361-a41b-dd99135e093b.jpg -3438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it3a4c70c7-23e6-46df-bbce-6b3301677376.jpg -3439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it3bde982a-af55-46ac-8e55-935e169ff075.jpg -3440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it3d1ccd2f-318f-4e9c-be90-e1926e26013d.jpg -3441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it3e60afe6-4e27-407b-9ddd-97b0e8100cd9.jpg -3442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it409e9a87-90ad-484e-989e-42dafbe5abfe.jpg -3443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it449f1940-499c-4ad1-b2e7-eaea53cd194e.jpg -3444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it44f968fa-a2e2-4d29-b2db-4b90b9c0e495.jpg -3445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it4572628c-3c16-427d-8308-cf8106084e0e.jpg -3446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it4c8fbe0c-f034-4832-a036-6d88621faea9.jpg -3447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it4d9e4a15-6edf-4925-aae5-201ff229258b.jpg -3448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it57d4dbd8-adfc-4b20-b2c7-48649509d48a.jpg -3449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it58f08039-9003-42a8-8cc3-b3fe082818b2.jpg -3450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it5e13bfa5-5b6b-4f33-9c76-3f74698c9311.jpg -3451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it6005c47a-d979-4fa3-b7d8-b3c97b216795.jpg -3452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it6136fc06-1a34-4307-b0d8-e13581341a0c.jpg -3453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it65b377fe-2b8a-4703-a223-62b700febf96.jpg -3454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it66da1ce9-23d6-4e0c-8e01-a6469cd42b62.jpg -3455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it6ba99a28-e63f-41dd-a1f3-1091a527ed73.jpg -3456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it6bafe023-7aa9-4191-8cbf-6804a1d9f47f.jpg -3457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it6c4b658d-3c04-4ebe-826e-d3f0d0051dab.jpg -3458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it71bf647a-9928-4e40-ba86-0f001804d73e.jpg -3459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it7646e948-bbaf-4a10-ae2c-8d0d33f488ff.jpg -3460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it77afb34d-324f-4b04-a0ec-81d1070e9bee.jpg -3461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it782fb504-1986-47e3-b64f-17395a2ddd96.jpg -3462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it79b5584d-d006-432e-aa1e-23d29d103640.jpg -3463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it79f37c25-054d-4012-bd9a-0e71a14aabc8.jpg -3464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it7d6b8ea8-b0f2-4477-beb3-415e0d624297.jpg -3465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it7edc6166-17ea-4eab-8e9e-9e38074f4889.jpg -3466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it84381b07-39fb-407c-889b-97a5debb9d40.jpg -3467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it8c7124f8-6dda-479b-b7d8-0c6e32c0d147.jpg -3468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it8d6a94c0-630d-4537-852e-ed2651d5d62d.jpg -3469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it8dceb0b7-830c-481e-9977-cca3e540c12e.jpg -3470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it8e9a7065-d3e7-46ae-ba54-5cb05059582e.jpg -3471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it91dc3bd0-eab6-41d8-9cfd-1cc55269ea70.jpg -3472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it91ec12dc-65a6-4034-9aeb-2c8a8efb596f.jpg -3473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it92124ebe-7b7c-4382-8387-9b1c42feab3c.jpg -3474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it95426225-5103-4d3a-a5a0-b43bd5384df2.jpg -3475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it95bbcd18-053d-4490-ad9e-031c3794c6dc.jpg -3476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it967fd8c8-d0b7-4124-b4c7-be4ba4118575.jpg -3477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it97464660-6e6d-4830-982e-c9502e8e7497.jpg -3478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it98367488-606b-4772-a404-7df017af2416.jpg -3479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it9974bffd-a29f-4cc4-85ae-813f174105be.jpg -3480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it9d6544c1-634f-4ee8-9302-1923fd399cb9.jpg -3481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it9e065b56-5b18-49ca-8ab6-26fbd2708b9c.jpg -3482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_it9fe6d560-4896-4fdb-b04e-3ef608890d4e.jpg -3483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_ita085f3e5-f1ef-431d-9e6e-1cc85ac6d31d.jpg -3484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_ita2581d3a-680f-423d-826c-f6813499f4ba.jpg -3485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_ita3f15318-1065-40a5-8885-76af47036c8c.jpg -3486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itaba8a8ae-4263-40f9-a612-6e58bc1c6378.jpg -3487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itaf03cd23-8857-416f-8ec2-5fabd4adb972.jpg -3488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itafc68755-d2a6-42f2-9e89-c1a48974f683.jpg -3489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itb216f1bb-2f65-4784-926a-ca520afc50f4.jpg -3490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itb55ff8d6-4d39-4a97-987a-ad9cdc268a16.jpg -3491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itbcfc8fe5-8ddb-40d8-8587-2ddcfd4c96b5.jpg -3492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itc1a57679-db56-4be8-89e9-96fe3c41402e.jpg -3493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itc3c18e3a-e3eb-42d5-86c5-3ae7410a042e.jpg -3494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itc496a9df-2429-4084-bf58-a86d673e7f64.jpg -3495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itc7e639f5-b887-4636-8f45-899f48d0fd17.jpg -3496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itcbf2319f-6d10-45d6-bdf5-dc22beeef622.jpg -3497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itd21edcb5-06e8-4efa-8605-52cd05850024.jpg -3498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itd21fa56e-1b80-411e-8f10-faca8238ba30.jpg -3499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itd495bae6-de7b-4770-81fe-9c9423a47497.jpg -3500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itd5a5da6b-2060-4905-bc96-2fba2db6aef1.jpg -3501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itd6013af9-dd18-4023-8777-92e75c4ef949.jpg -3502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itd7c18436-cf80-4e11-b56d-37e2b2ee532c.jpg -3503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itd904e52f-6c7e-4ed0-a19d-4f9ce1b6abc9.jpg -3504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itda2c1794-f80a-4c75-99c6-39a7db0834f2.jpg -3505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itde04aac5-3eab-406e-ad92-478ff7c83280.jpg -3506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itde662bef-f67a-4016-9a89-5ce0261eac34.jpg -3507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itdeef013e-e6f2-4b62-9bcf-121b62e719bf.jpg -3508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itdf091753-552b-4913-a938-ef875549606a.jpg -3509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_ite392c11a-213b-438e-8c3f-1dce88b1a751.jpg -3510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_ite4d797db-6cfb-45b6-a84f-2a88bc47db78.jpg -3511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itedf8b0bb-9c9b-4539-9519-2ba16c7c21aa.jpg -3512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itf0d683fd-3319-45ae-908f-76d30826e542.jpg -3513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itf16394b8-b41a-4fec-800d-589eae5d3da0.jpg -3514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itf166e31a-0276-4545-b0aa-3b82f50e56f0.jpg -3515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itf2c95ee4-61bd-453a-a26f-ae2e38c079cd.jpg -3516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itf3865e76-8b8c-4260-beec-2631ef559f91.jpg -3517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itf9b4d3e6-e8c7-4e79-871d-69d82ae10f5c.jpg -3518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_bus_in_itfbbf7cb2-fdb1-44b5-b34e-991881b0a761.jpg -3519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it000a2efa-e48a-4c68-81ea-d979ab8cb48b.jpg -3520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it00d401ed-9227-4e00-9253-a37798b4ed31.jpg -3521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it07102a45-3edd-4bc2-bb7d-b9a9a475107c.jpg -3522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it0775a8e6-c552-41be-8c65-80415cb4a0c8.jpg -3523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it0b034361-d24e-4aff-972b-bfde85f6b716.jpg -3524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it0b48aff1-d558-4b44-bc09-08a55cebe185.jpg -3525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it0ebd1948-27d2-476b-ae60-9731f62f2b94.jpg -3526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it0f15d378-6875-4a2a-9191-c91e974f98f8.jpg -3527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it0f7bfd7b-fdd8-4552-acc1-d053eb7d291d.jpg -3528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it0fef7bfe-1c3e-4fb6-9b4a-f137ce67a14f.jpg -3529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it10fb4e7c-03c9-4d3e-9020-c4753f25e875.jpg -3530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it12c03343-20aa-474a-b9eb-b357fc24ccc2.jpg -3531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it16bb2bf5-7909-42cf-b165-927d51337da6.jpg -3532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it16e64f48-0341-4566-b7e3-30980d9c5031.jpg -3533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it18cfe1f7-c768-4a65-ae5a-596dd663e855.jpg -3534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it1915c82c-3f2e-4322-9002-0e9a7c025095.jpg -3535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it19c086ed-360e-45d4-a461-38d6b79611b3.jpg -3536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it1b1306de-8b3f-4be7-bfcb-fc36dddb0d99.jpg -3537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it1b597df3-d4c2-4681-99fa-78a6e15bc231.jpg -3538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it20f91e07-f89e-498a-ba87-d11372bc8341.jpg -3539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it24c0a5f0-dc03-4431-8bca-7531b1a52760.jpg -3540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it30f5066f-f79f-4af8-9f66-34e8b93b1f71.jpg -3541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it3560b361-8575-4687-b4b2-9fb9e968ecd0.jpg -3542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it35fe8f2f-76df-4ade-8117-b9b3a93a1c26.jpg -3543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it3662bedd-9ec7-4521-9867-8101143c05d8.jpg -3544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it38db843d-f539-4566-b642-37ff1e45a5c6.jpg -3545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it392f7c07-112b-4809-9826-c37188994435.jpg -3546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it3c4a8843-cc26-46e9-9121-bf0899e64bd0.jpg -3547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it449b1f80-c3c6-4408-a7b1-0456c294708a.jpg -3548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it4a379a19-bde0-4bf3-b175-714a5c6a1c89.jpg -3549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it4e315cd4-b4ad-4d30-9eac-966a28d3987e.jpg -3550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it4ef6dd3b-7252-41e4-a922-7e2525230ade.jpg -3551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it4f29b170-3995-4f14-84e8-6a90be5f50eb.jpg -3552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it51e0d4ef-e639-4d01-85d1-50ac28ff2451.jpg -3553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it52263ab9-c470-4ba4-bcab-61598dbeebb1.jpg -3554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it52be3269-e8e8-4d4c-b764-6c18463fbcb8.jpg -3555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it5a08ee7d-3eea-405f-8d62-43a5771901dc.jpg -3556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it5af1de93-d5c5-4a1e-86bc-362fed347d03.jpg -3557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it5b0ec48c-c308-41ac-9ef1-89a38a57d033.jpg -3558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it5c40dbd1-cdd7-4910-a753-726995962461.jpg -3559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it603fdb35-7b8b-4230-9446-6464bcd0e593.jpg -3560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it6386578a-1efc-4097-b628-28c0bb2a41b0.jpg -3561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it6955d7e1-bf6b-4820-b16c-3f51771685c1.jpg -3562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it6e18892b-7e16-4650-b9c8-3d9525eb2c04.jpg -3563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it6e5cd271-a088-4598-994b-c88326ada92e.jpg -3564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it6eda6bd9-1f51-4cea-b395-6b82b1d0a2bb.jpg -3565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it6f3dd75f-bac6-4a60-82ff-32fe14cd426e.jpg -3566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it7621c7e3-5e47-4939-9174-0580cfd2fe0e.jpg -3567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it7ef55f5d-508b-46d5-ba54-0f2e1bf6b3ec.jpg -3568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it7f5a20ea-2aad-4cc4-88ab-078dc575cebc.jpg -3569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it7fa8882f-b417-4261-83e5-7e3c2b67adb3.jpg -3570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it8499a779-e9e8-4fdb-992f-c97da4fe3ff3.jpg -3571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it86877810-1846-40f2-bf32-5d914feff67f.jpg -3572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it872acca9-39a3-40de-bc0c-a3ebbae835e3.jpg -3573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it89311239-5f97-4a04-a3c3-a9726a4dd4b2.jpg -3574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it8b9f6a34-ac2d-4f5d-9f77-a37db936c2c1.jpg -3575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it9179ee50-f1c2-45cc-bc59-12f1ae6cb921.jpg -3576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it97a8a654-97cd-49b2-9634-0c27906923ba.jpg -3577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it9927dc86-fbe0-41b2-a913-a5c1e0f05601.jpg -3578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it9b88b173-11fc-4397-b60c-7288c6606fe7.jpg -3579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it9bb8dfd0-5110-4316-9e03-3dd5b02a790f.jpg -3580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it9cd92539-d661-4bfe-9b3a-8af240bae654.jpg -3581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it9d0c12a6-5cf8-44c2-b923-cca619abb66a.jpg -3582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it9e5047df-2219-43f2-ac1a-836115868073.jpg -3583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_it9f4f3529-6b03-464a-a92b-faf4486114b5.jpg -3584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ita1263aa7-c333-4206-897e-9bee5222710c.jpg -3585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ita3d18f14-2e2d-4f54-a864-b15930476251.jpg -3586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ita700f798-f3e3-4317-8aaa-e27ee3b29e52.jpg -3587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ita7147db4-bcd0-4700-b1ae-6822fac1c627.jpg -3588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ita8b94e2f-c75a-478a-b279-9e772cba4ad1.jpg -3589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itab006b0d-1339-4dd3-b803-d2bf071a00b1.jpg -3590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itafce8505-24c8-4488-a801-a8e8cecc1e28.jpg -3591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itb0304da2-dfa2-4af7-af55-af8ac3772810.jpg -3592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itb6fb1ab2-d56f-497a-9789-993efca8ec53.jpg -3593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itc5fc8260-2d9a-4882-b0d8-1681b7cd14ab.jpg -3594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itc74362f9-42ab-43fa-9298-9131a5a2bae9.jpg -3595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itcfd223ef-d39d-48a9-a066-71ff466d2a16.jpg -3596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itd047fcef-e7a8-4e23-bb90-d2f4a191fa13.jpg -3597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itd0664080-a999-41b1-aad2-11460c89872c.jpg -3598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itd4bc2893-12a4-4a82-9ddc-0b72d6c6da46.jpg -3599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itdb1b214f-db8a-4e50-8f88-e9621dc5f2a8.jpg -3600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itdcbc99f8-805a-4b65-9e4d-9b58a2200435.jpg -3601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itde2b0034-b271-43ce-b093-e0a7e0f18ab1.jpg -3602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ite186f7bd-25fd-4f14-ade0-5f3a7dd0af58.jpg -3603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ite1ff1cbd-2c4e-4d84-b54e-615669cb7ff6.jpg -3604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ite38cae84-b0b0-41c2-9e18-d123ad8ed12d.jpg -3605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ite39cfdb3-b2b8-4eb2-99ca-5c78369dfb44.jpg -3606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itead5b07b-04f9-40f4-9f9d-b2a97fd54f0c.jpg -3607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_iteb293f76-5a24-4d32-9439-e9e8d7fe3712.jpg -3608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itecfb8691-61b7-4138-aae8-3d9fb0ad9d9f.jpg -3609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_ited8428f7-3a64-434f-8658-3ebba682a361.jpg -3610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itf362dcde-6098-4942-84d4-ad2170cd07d9.jpg -3611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itf3f6a570-4722-49fc-b6d0-a74aee82eef2.jpg -3612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itf8bf8d8f-6798-473f-9c9b-abd54ec3b416.jpg -3613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itfb2d2d9a-1fb6-422a-84fa-df7251e09754.jpg -3614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itfb9e2e54-eeee-4207-be9d-ce464f7b93d9.jpg -3615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itfcb1bbd2-dd61-41da-88cc-a59e8894ab55.jpg -3616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itfd3a543a-e033-4624-997d-f51c8651702c.jpg -3617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itfe3f8d8c-d6ab-4de5-a39d-2146001af403.jpg -3618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cake_in_itfffecac4-497f-482d-82d1-e15c3e64dd73.jpg -3619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it0054d794-3c86-4e04-bb21-6dd3e1b35be4.jpg -3620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it03185821-3da9-475c-a921-fcfba5f1d2c5.jpg -3621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it03675d76-0977-42bd-aba7-166f5a023413.jpg -3622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it054becae-a041-45d8-9c02-a07ec33c9649.jpg -3623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it068f78de-7399-4a73-a268-e72807273ced.jpg -3624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it0be6f8f9-23e8-4eac-bdb4-6ebbb0a503d1.jpg -3625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it0c2a210a-6add-4d68-801c-79760a14c84a.jpg -3626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it0ce18041-a892-42d8-8a7b-8b475ecc47e9.jpg -3627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it0e192974-74cf-425a-987c-40f61d5a6ea8.jpg -3628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it10f93579-8585-4019-baae-2274fde9f136.jpg -3629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it12c7fb9a-6142-48b6-8416-cb1c790bc70b.jpg -3630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it147ed3bc-9eb4-4af7-a1c4-1c8abf435b28.jpg -3631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it16145062-3342-44aa-b2c9-918c3a26f8db.jpg -3632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it16c37e40-1062-48fb-b8dc-49b66a9e3450.jpg -3633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it1fac466a-7514-498b-bfc7-f696f367d3c9.jpg -3634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it20cb8989-8eee-4ff4-b8fe-f67acc72b90f.jpg -3635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it220aa2fb-695d-4eef-91b7-7348f4c4eb4a.jpg -3636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it28bdc1b5-e76f-424a-a3ee-31a7bb8a3e34.jpg -3637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it29afcdf0-0d01-4b33-98d2-581f0284c4ed.jpg -3638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it2b79cd30-04dc-443e-96e9-8709d38b918c.jpg -3639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it2f57b4b0-89e7-4c07-a2e8-83e8ec63f064.jpg -3640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it3037edf1-4d07-448a-8876-d72c4388c7f3.jpg -3641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it30b9e4b8-82eb-4602-80fd-e25ade616b8d.jpg -3642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it3192a8e7-78f3-448e-a7eb-5997886e6d41.jpg -3643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it342eef18-7ced-4303-9cde-e9b8ddf6fd59.jpg -3644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it36474504-9ea5-4705-8662-5257edbcd573.jpg -3645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it3822e846-baf0-4703-b625-3ac6174d21ad.jpg -3646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it395362df-4ca4-4eaf-8c7f-73c7f03dacdd.jpg -3647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it3aeb8148-097d-4dff-ae2f-96a05ff7f0e1.jpg -3648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it404424cb-be08-4d84-8ceb-def300281390.jpg -3649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it40523525-372c-409f-923b-1bfd2d7a9104.jpg -3650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it417bd5de-0fa1-4b3a-a99f-08e4cbd2e129.jpg -3651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it4dd4f76f-3cb3-45a0-9b67-0e9943d4fd4e.jpg -3652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it4fc9bd08-f5e9-40f2-bc6d-57b34fdc969d.jpg -3653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it55125f02-cea0-4b7f-8495-271fa4136510.jpg -3654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it553aa118-093f-4aac-9334-3a64def2af86.jpg -3655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it58f2d8e2-1c33-491e-8f34-a5a382902e8f.jpg -3656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it59da78b0-8630-4d4e-8863-dcd875df884e.jpg -3657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it5aa6ea8a-79f8-4b8c-b340-304fcf295240.jpg -3658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it5ccd69e9-0d0b-49ca-b92a-886dda832941.jpg -3659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it5e301c85-62d6-409a-9802-15ff14574203.jpg -3660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it60139b0a-e12e-442f-a83a-041d544d93c1.jpg -3661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it60950ead-f7dd-4f56-9ddc-2a6b6245ff84.jpg -3662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it61724c10-0836-4605-9849-f2eff3f3509b.jpg -3663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it62ec552e-fb7f-4bca-94e5-2aa680b6ca9c.jpg -3664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it648d6a03-5aed-4608-aba8-5952b45452ae.jpg -3665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it6616239f-52ae-479c-b942-10cf76484f02.jpg -3666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it668b40e9-a8af-4cf9-a394-925e6b105eac.jpg -3667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it6732a1b0-3627-4e97-88e9-4fd8048bf975.jpg -3668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it7879730d-14fc-4d11-a435-d728dd05cc2a.jpg -3669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it79da6470-7b51-474b-b42b-5687a6d752c1.jpg -3670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it81d17479-b777-45b9-a155-335bf14d6fc7.jpg -3671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it88380600-9b88-4a62-9f40-c0b385239e1d.jpg -3672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it9672f7f5-c753-4527-b9d6-d2494e83c71f.jpg -3673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it9733ab89-b73c-4859-8b0b-70f6bf7cba4f.jpg -3674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it99220667-5078-4477-bb2a-086eb9cf6311.jpg -3675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it995e6a96-0fac-4b99-a117-e478b6b427c3.jpg -3676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it99af7124-f6db-45b2-835f-45b317699ac7.jpg -3677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it99f93459-6353-49bc-97e3-732eb099c502.jpg -3678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it9ccca09a-dcc9-4db0-a399-5df0d314dcc1.jpg -3679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_it9deb8274-9b43-44ff-b5a9-cb24be485975.jpg -3680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_ita06ddd55-d9b7-4145-927c-4f23dfb5ec05.jpg -3681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_ita2e0732a-39b3-4dd5-9488-aafe042c3872.jpg -3682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_ita6cd41fb-72e6-4f44-a3f7-ccbf20b464bb.jpg -3683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_ita8460652-56ef-4ad3-895c-538fdcc19763.jpg -3684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itad466bc8-7f66-4e84-b76b-8c31f698e663.jpg -3685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itadb755e5-c879-464d-9041-33edf160e6b9.jpg -3686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itb0b73f5e-65a3-4424-a009-2ea3462b7c2e.jpg -3687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itb5545689-f1be-4999-b213-2ed9e6147b50.jpg -3688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itb67daf39-c445-4a47-b675-15f1eba820f4.jpg -3689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itba9960e1-803f-498c-b482-655f828bff85.jpg -3690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itbfb6fcb8-6918-4574-bbae-6845d9ae782f.jpg -3691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itc17ce884-6265-4fb2-a1ee-80fc0aa39aea.jpg -3692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itc1ab2b14-ab16-46dc-82bc-550f348a3239.jpg -3693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itc46f2bc5-4ad8-496f-bcdb-deba7fbb2eac.jpg -3694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itcebdf5c6-5d48-47d3-bd7d-40e50c33d687.jpg -3695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itcf47c1a1-f487-4f72-905a-83f82dafa953.jpg -3696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itd02caab6-c4cd-4bda-8cdc-45cc842cb9fb.jpg -3697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itd1afe109-9f7e-40be-81c9-c8ad102c547e.jpg -3698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itd1cd027b-176a-43e6-8f95-07020fcd7061.jpg -3699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itd51d80b6-75d3-40ba-81ae-e4cb329f84bc.jpg -3700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itd6bb9941-4b11-44e5-8027-071353d8be1a.jpg -3701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itd84ed474-e399-42af-85ef-b25a6f1b9872.jpg -3702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itda1784ff-db56-4c1a-a02f-8316df0a4455.jpg -3703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itda824224-d45c-4ecb-b17e-028685f2268a.jpg -3704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itde59b905-586f-47b6-a57b-4c16038af09d.jpg -3705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itdef1b73d-2396-4e05-84fc-183d27d44ed8.jpg -3706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_ite17c15a5-837c-471b-ab49-316c28d6b870.jpg -3707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_iteba88fa6-4fb3-4aad-ac29-7de2ffdc3298.jpg -3708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itebdf4a16-5603-49f2-9c27-c886aaaa52ba.jpg -3709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itec81d537-1490-42fb-af73-76db8d2c0fcb.jpg -3710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_ited95e815-2911-431b-9f53-fd2393e813c5.jpg -3711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itf17f9740-d9f1-4639-bde1-3c498a24a5ca.jpg -3712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itf2fa7dd2-2037-4d48-b824-e4a8a6bdcaf1.jpg -3713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itf4bdbbdd-4835-4665-a7af-4c43d75cbe34.jpg -3714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itf59951eb-80fd-4572-976c-a33c84639ad2.jpg -3715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itf6a826f9-a9ec-4db5-8c7e-925398e66bdb.jpg -3716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itfb995be0-e8d5-4fd5-bcb5-cb2ae0ca42bc.jpg -3717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itfbd6adae-2a26-4edb-ac3a-052ce2e56b93.jpg -3718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itfdb902a9-ce12-4cbf-83de-0e82bc68d3e8.jpg -3719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_car_in_itfff9df6e-d5fd-451c-b620-9c9574d46510.jpg -3720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it0641367e-4a2c-463c-90a0-d045779ef5b6.jpg -3721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it064eb05b-f0f8-426a-a8e7-030238f23709.jpg -3722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it06d3fe03-40c1-45e6-b3ee-3c789fa2cbd8.jpg -3723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it0724d392-82d8-4927-99b4-1607ef809039.jpg -3724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it082bc716-46ac-4265-a2cb-69d77c06e615.jpg -3725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it0c141556-4a19-4f95-aa89-d4189e469e14.jpg -3726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it14b73d9e-dded-4587-8e52-54fe2fb03ccf.jpg -3727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it190709c2-e375-4580-b0c1-04c0fac3b6bd.jpg -3728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it1a6cdb38-5845-4e9d-8cb4-bc8fa91736ab.jpg -3729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it1b359fdf-55b9-44c0-b937-6042e5362be4.jpg -3730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it1f30ae40-9366-4a75-b953-5066c6545b96.jpg -3731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it2049dbb0-f332-4aed-8774-1efb86ea7ca5.jpg -3732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it208727bd-661b-4050-b3f1-1d38ef1fb2bf.jpg -3733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it2103de1e-8517-4df8-bc34-71d320cd9f8e.jpg -3734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it250908df-3842-42e8-b691-43752db13f65.jpg -3735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it29c9ed28-542b-4c99-916f-eb544dd083b9.jpg -3736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it2af27ded-6975-4131-aafd-a64c2c41e492.jpg -3737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it3463301a-0043-456d-80f8-a00802c78f58.jpg -3738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it35a2a96b-9b20-47db-b9eb-ac342a1dc7ab.jpg -3739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it35b2883a-f319-467a-babf-d0f5a4045e68.jpg -3740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it36f1b104-8893-4134-b007-605737b340dd.jpg -3741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it36fc7366-156b-48ff-b484-5f5d73f5b11a.jpg -3742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it408c9784-e2ea-4f9d-9f20-5e76d6af5844.jpg -3743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it44c96c71-308c-4b4a-adc9-bc3d65c15746.jpg -3744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it46fec1b5-aaf2-400c-903f-ff5e3a2f576e.jpg -3745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it472c0df7-850a-4957-b204-fcead5e7c6cd.jpg -3746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it47ef8589-41b2-415b-bc2b-df5a56fef8c3.jpg -3747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it4852969e-4475-4caf-9acb-bb9650c9457c.jpg -3748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it49b38ea7-08df-4360-ad3e-b8253b337aea.jpg -3749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it4d26d6b8-ef85-4620-93df-a71b273c421f.jpg -3750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it4d95ce91-14ea-41fa-ab0a-3fd815962b9d.jpg -3751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it508c8e0f-0503-447b-a9a4-94169825d731.jpg -3752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it52b0e045-1703-47fe-aa4a-c415da11a19b.jpg -3753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it53081e1d-b6e2-436e-bd53-9e6b5466c7e3.jpg -3754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it554c119b-1d8c-433e-bb74-1986b5fddcf1.jpg -3755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it55977d4c-24cc-48fc-8859-690ffc9f0e0d.jpg -3756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it55c1ab71-8b80-45dc-b984-563e03b9a558.jpg -3757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it56d38441-57b9-4899-8235-4f00b5775010.jpg -3758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it583c4200-c077-47ea-bb40-8ca2a99f8adf.jpg -3759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it5ce555d5-3221-461b-a58e-5bdf8f01357d.jpg -3760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it5e330c6f-96e7-4a4e-89ba-84d2c62fe117.jpg -3761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it61320822-6185-4f5b-a377-91bfb8f60a79.jpg -3762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it61824672-6f7c-4915-9350-4b82d8d96da4.jpg -3763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it6338f2f6-8a6d-4eaf-9e08-3a6dfa05c49b.jpg -3764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it65870cb2-7605-4978-b33f-e5ecbd4f1fd4.jpg -3765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it669d4ee8-be35-4685-9539-c3ac394012ad.jpg -3766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it6a313f14-c733-4737-8ea7-a7e4f095ea8b.jpg -3767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it6a680ebe-8a97-488e-aa45-6b1e06cce294.jpg -3768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it6b1fdf6d-f3dd-48bf-8ac9-5e7f7e597d7d.jpg -3769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it6e2fa0d5-4056-42e1-9ff5-59acace58649.jpg -3770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it6e62f7f0-df34-4f2d-a311-7a3beabbf016.jpg -3771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it6f77841f-5978-49f5-be74-7e6cd03285dc.jpg -3772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it70f2cfd9-0749-4647-9c4b-77d7041a5728.jpg -3773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it73ee2433-ff2a-4d2f-a54a-7fe729638605.jpg -3774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it798f9f51-1669-4c8c-a75f-2868a5a6979c.jpg -3775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it7a664c6f-82ed-42b4-af9d-ce8ef38e969a.jpg -3776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it7e25dcfc-3eb9-4fcb-aaeb-4e3c6539d173.jpg -3777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it7ea79072-1741-4517-ad3c-47429faab704.jpg -3778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it7ef77b54-0776-4a33-91c7-6da296feed8b.jpg -3779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it82c3d86a-6fbe-4136-b3c5-66321fcb5119.jpg -3780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it88a6effe-5d44-4362-8681-75afd841016c.jpg -3781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it8addcace-f3d4-4287-870f-f7c3f2bb24d4.jpg -3782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it8be86a4f-0a74-4c72-8000-f658b6385ad0.jpg -3783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it8df04673-2e61-45f6-b712-86181266b40b.jpg -3784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it8eefccec-96c3-40ab-8f44-737e5993c36d.jpg -3785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it93b2a8b8-bad2-4470-8a61-6564973192b0.jpg -3786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it9b1ef545-5aef-4392-81f6-c3df698ff254.jpg -3787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_it9ff5101e-369e-4a42-a9bc-39efb1d872b1.jpg -3788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_ita6ae521b-eebd-495b-ba10-32f3070cd788.jpg -3789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_ita7309372-afa1-4908-8b12-0e4e863dd891.jpg -3790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_ita7ec2c6d-7ad2-4885-b7a0-1761a2591282.jpg -3791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itab80967f-0bd5-4276-a8de-4fdd543636fc.jpg -3792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itac2ab13d-b584-4942-a986-a52916418915.jpg -3793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itae97e917-a820-4e0d-b9e1-a7179ec8fb6d.jpg -3794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itb1508f01-a5c8-40bd-9999-69619ea1434e.jpg -3795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itb43d8ace-adc0-4007-8b28-f54adfb3e170.jpg -3796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itb6b26ad1-c48d-455b-bbda-38ee1d0ae55e.jpg -3797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itbd6b084b-b2ed-4046-bd88-af0a66a573c0.jpg -3798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itbf6125fb-fdbe-4d0f-823d-7436c5678026.jpg -3799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itc1e045ed-092b-4775-a4ef-d3201c0e4c15.jpg -3800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itc24994ad-e52d-4b0b-9d64-b8acdf07f7ee.jpg -3801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itc2d98e8e-7b9b-4bcd-be55-8bbfe2931275.jpg -3802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itc6ebcb91-754e-47f8-be83-b201657ac3d0.jpg -3803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itc9ab09ba-8b15-4bbc-8887-f653b1a7c2ff.jpg -3804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itcd7ebb89-594d-4c14-9ede-eabb28b98015.jpg -3805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itcdb3494d-712c-4e7d-9ad0-168ab20144d8.jpg -3806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itd3f758b0-8c98-4e14-8f2f-0c72f082fe77.jpg -3807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itd7ef55ab-7672-4934-ae1d-7b6b05adc200.jpg -3808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itd908eda1-1f3d-4d40-b031-74612d105414.jpg -3809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itdb1fd192-c695-4f71-925b-6177166115ed.jpg -3810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itdc2bfe44-9912-4868-a7d7-eeab4c937676.jpg -3811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itdd8d19bd-11a2-4c9e-bf94-d96c0d48ef9a.jpg -3812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_ite32b070b-dd1f-43bd-8091-d23fc1369246.jpg -3813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_ite54e25cd-a347-434f-9688-57855bbbb042.jpg -3814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itea24d25b-36ca-4541-b419-dd2f7c069fed.jpg -3815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_iteb07be7d-2902-4f5e-b1da-c59661bf0445.jpg -3816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itec38e063-5625-479d-8e84-997a811ae2a3.jpg -3817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itf75aa8d7-2098-418f-b719-64b55df463a5.jpg -3818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itf9c88edd-bab7-4b0b-93d0-3f1219e9fcf1.jpg -3819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_carrot_in_itfe18b067-13f4-44b4-9802-3c4a454f9769.jpg -3820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it0027b96e-57d8-4ad9-b1b4-d7b6de015664.jpg -3821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it019c3e60-d79b-4a41-927d-8deda9185d7a.jpg -3822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it02baf4e4-5ec0-4ac7-a44b-f302c8d6e0a8.jpg -3823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it0339610b-82d0-4226-a36c-969593b61f92.jpg -3824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it06b6730f-44fd-4306-9b81-3765534cca5d.jpg -3825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it06d19bd6-85bd-41ed-ba6a-1699d471bf84.jpg -3826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it0ff5a843-000d-49a1-a563-e25c90190756.jpg -3827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it14eba03d-6909-4764-9d9f-d3249cc50cd9.jpg -3828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it1539225a-16c4-42f3-ac67-f9e4f01e4408.jpg -3829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it15fd2226-24a9-409c-86db-56ff6d61586e.jpg -3830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it1814b364-062d-4502-a8ba-f51a24748d4e.jpg -3831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it1edce3cb-d1c1-4212-9556-adb4fbf6be42.jpg -3832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it1fcb4d64-35cf-485c-a479-0d2c4bf64485.jpg -3833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it22536646-b299-4ea1-a950-95bbafdcb234.jpg -3834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it2a63b714-9753-45d7-ade8-bead28c7a46d.jpg -3835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it2bf295aa-0ca5-4c9f-8b7f-397de815ea67.jpg -3836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it2c3d919c-96ad-4913-8a43-4aebb12f7436.jpg -3837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it2ded713d-f8b9-4938-b616-e77f8bc2ccba.jpg -3838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it31f8fafb-8101-455e-9a98-964f827a8bc3.jpg -3839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it32cd9cae-048c-4d8b-b753-67cf8ab683b6.jpg -3840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it3399ff4d-1b07-4669-95c3-ba855f974cc0.jpg -3841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it360c675d-54fb-42a2-991f-2d807f48ca50.jpg -3842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it36ae8e39-f0b6-451a-87f0-c9d452becbfb.jpg -3843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it3be6a029-ab70-4d06-b9da-77d49f9d770d.jpg -3844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it3d6c7b8b-281b-4b1a-a512-d9400edf0f0d.jpg -3845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it3da37ede-3fca-4df3-a064-03e757f69f3d.jpg -3846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it450edfc0-ffac-4525-a4ed-5194646d5a4f.jpg -3847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it46188bc3-f88d-4a73-bb39-d95226108866.jpg -3848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it4826d912-6979-445f-960d-d7a682b100ae.jpg -3849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it48cc0772-e356-439b-9173-e7cd4fb460f3.jpg -3850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it49a3d3ce-146c-4195-ac57-ab6998e11b91.jpg -3851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it49bd6075-ec1b-4cac-bac1-27a6244437f2.jpg -3852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it4c65cedc-a8b8-48a0-ae42-6f5c27c3b54d.jpg -3853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it4d9d5050-da46-47a7-9948-a7917a05ab7b.jpg -3854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it5267cf27-75b4-4732-8322-212bff3759fd.jpg -3855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it532196a5-bb84-4d73-947e-30e598cb2d03.jpg -3856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it56885c6c-ae78-4160-a73e-214e118cdff3.jpg -3857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it5b3b0cd4-17b6-41b2-a8ab-fe23ca83a2ef.jpg -3858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it5c18cfd6-b120-45d7-a4c6-96156759db98.jpg -3859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it5eebca25-f17e-48c2-8be9-74cbbc10091a.jpg -3860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it5fae1fee-627a-48a2-9b09-e7dc117e722c.jpg -3861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it62145fdf-b7b7-430c-a82d-13f4ab16d2cb.jpg -3862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it62895e61-2d7a-4f31-ba1c-9ed8eaf0a998.jpg -3863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it65242e2c-cec2-46e0-94ce-afdfa50f9856.jpg -3864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it6769137e-2b22-4aa2-a923-7e56e627aa12.jpg -3865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it69eafabb-03ab-4132-8cc2-68fffdbcb055.jpg -3866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it6bdbdb33-92eb-4f18-8d5f-abaeea72f266.jpg -3867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it6c58ba65-04c7-4bbd-ad42-b797df0f3002.jpg -3868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it70c13245-c63e-47e1-8a41-f0c2f4849bf1.jpg -3869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it715785e2-b9f0-4cc9-b3c5-3c3eef3c01f6.jpg -3870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it721512f0-7b44-4d44-a918-6107e4e3e25e.jpg -3871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it76215e72-511d-4b6e-8414-905654c5620b.jpg -3872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it78a246e2-7a9d-4c31-8d38-2b0b0f2f44b5.jpg -3873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it791562d8-7640-4290-a754-f15987d6a90b.jpg -3874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it7a8a8d4c-8a4c-4f23-9049-a04469ec3e74.jpg -3875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it7c38ac58-d4f3-4c50-b098-d2745757c34c.jpg -3876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it80ab2665-a505-4a55-9f6d-03c7f8a51c50.jpg -3877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it8139b2da-681c-443f-96ac-bede30a0fd79.jpg -3878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it842671a3-553e-4c22-b355-dc6ec38f7f53.jpg -3879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it8515b452-9cad-4268-a099-e728a0d2735b.jpg -3880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it874870b9-7e43-4a34-b15a-498a72345e62.jpg -3881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it87c98321-f3e5-4e1e-827b-297bd4c09c0b.jpg -3882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it897a520f-4bbd-4f49-97a7-867dd9f4ce07.jpg -3883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it8ef7a3ac-5e51-432b-92e0-3507900230c9.jpg -3884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it8fd55bb4-374b-47ad-b295-532c5f8213f0.jpg -3885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it94bc6cda-9e89-4eb3-b3fe-8c5805d6c268.jpg -3886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it9c44cbeb-bd51-4840-9ef6-3fd1103013f7.jpg -3887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_it9f379172-e34c-40e8-9790-cdaef0910f38.jpg -3888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ita04a35db-a4bc-4f11-9b7f-9b9e81d57e72.jpg -3889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ita4309eb8-9b19-46ea-9df1-486e30dbd79d.jpg -3890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ita558d4c2-fd6e-4fa9-889c-ac44fff9840d.jpg -3891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ita74f154e-6d51-4501-8f8d-7c1ebef8ad1e.jpg -3892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ita78ba5f2-5075-4a95-a203-cfee2072938b.jpg -3893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itad442ebd-75bc-4079-9218-c3dd5737f569.jpg -3894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itb632d139-faca-4feb-a3ab-c2c16be9ee0f.jpg -3895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itb968ad90-2207-4bfe-81d2-a770b98e919a.jpg -3896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itbb300aca-8c4d-47d9-8510-5999aece0df4.jpg -3897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itc707ee63-61ed-4c32-965c-c0f7df6b7601.jpg -3898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itce2c90aa-5648-4290-8b90-fb76421d8bf4.jpg -3899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itd188b680-243f-423a-9c6e-61e20759496c.jpg -3900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itd5d05512-21d7-4175-bef8-6d31644f6c18.jpg -3901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itda58b349-5b02-465f-8bfa-a30ae789801c.jpg -3902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itdcec4438-fb5a-48e4-8a23-35dbf1646867.jpg -3903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ite1bde0e3-eb50-4045-bd16-e7873fc8dc0f.jpg -3904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ite291ee20-4ee5-40a5-8f29-3ab7b097de14.jpg -3905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ite2a7a109-ab78-4851-bdbe-a11eae709fa8.jpg -3906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ite2dbab02-7007-4082-8300-14dc6b0b5c59.jpg -3907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ite37fca89-9c7f-43c3-b678-0772931a15d7.jpg -3908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ite586d920-2e52-4ff2-91f8-d57d80d2ba24.jpg -3909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ite7ac7ea0-713d-4d8e-b029-22f862728329.jpg -3910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_ite7bba6c5-840a-4c7f-bb56-c28cbe133c9e.jpg -3911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itebb560be-0cff-42af-9d31-bd587d7db222.jpg -3912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itec8596e5-29c1-4e8e-895d-8d5ccfa1e73e.jpg -3913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itee5cbad1-68e7-43ef-a1b7-63ad73108894.jpg -3914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itf4832ee4-13fc-4656-843d-bc287fc8e22f.jpg -3915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itf4e4e2cf-e4bc-4964-ab67-219eb2096a85.jpg -3916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itf7b84a7d-e287-4e06-8776-fa37f2f2bcca.jpg -3917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itf8ff477b-97b5-4c72-b8a6-ba33a1f70d0f.jpg -3918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itfa083682-81eb-4545-9a7d-dacae02a68e5.jpg -3919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cat_in_itfd742ad3-f9f1-460f-acea-49e82d879805.jpg -3920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it0367daf8-ec43-460e-b70e-01e06b25d82f.jpg -3921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it0658c8a1-eccf-4dc1-8eed-b145ba17a9d8.jpg -3922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it06877d5f-a2f9-4a60-b0db-30f1a98b6210.jpg -3923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it0a9dc84e-32c2-4625-a0e0-5a79c1264bb2.jpg -3924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it0b5fb5a4-49c7-4b8f-aa8d-f37a1bb15600.jpg -3925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it0ea26553-2317-46f8-a145-12ab0948acfa.jpg -3926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it0f99cdb7-821c-45df-b0e1-18a765884faa.jpg -3927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it121c8e67-021c-44ec-a24c-e3614500c40a.jpg -3928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it1be36d6a-4287-45aa-9bc5-66f66f5d044c.jpg -3929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it22812289-241b-4a72-85ea-e405587fe851.jpg -3930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it23ac6298-e2a4-47d9-ba6d-48fd2a20a6c7.jpg -3931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it260b061f-b914-4bfc-86ba-f2141c7f560b.jpg -3932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it26d3ddfd-9b00-4145-bd60-460144aba2b2.jpg -3933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it27da7186-71db-40bd-9ab4-7b80f83551f4.jpg -3934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it29359a6f-4bf5-4960-9aa2-3c6b5a8eef36.jpg -3935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it29b54e56-4c85-4fbd-b6d8-df28933f812f.jpg -3936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it2d363824-71b9-402b-b844-0c3317f7ddb2.jpg -3937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it33a5037f-5433-49e7-a7e3-4536b8578e1b.jpg -3938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it3417e9dd-3725-482e-a811-3b32ae91d8fa.jpg -3939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it34981b4c-b041-40a6-840e-6c7daadabeed.jpg -3940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it367839f5-c86f-4507-bb7a-c3c4f378f8e6.jpg -3941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it3b6a06a6-220c-418b-9f76-4a2ff814f5b9.jpg -3942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it3bb29fc4-bd4c-4cd6-9c71-4d6b49c1fe07.jpg -3943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it3d35ba0f-021d-42f8-b608-d7bbd4f1f231.jpg -3944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it3ebbfea7-0765-4a29-93f2-b837886c9f58.jpg -3945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it4060e741-1405-484e-8eb3-e69260ddc1d5.jpg -3946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it43bd5121-c8c0-4a7e-b908-2d0102c8c9cd.jpg -3947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it46c2849a-745f-41d1-8896-fd6e97bcd7a6.jpg -3948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it46daa38d-ee06-432a-b79b-620310b61715.jpg -3949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it4843e18c-359a-4d02-9843-cbc7b8fda633.jpg -3950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it48d9bf3b-0fb8-4a78-a210-1dade7c6afd3.jpg -3951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it495eeabc-2acc-4547-9f95-7543544c83ff.jpg -3952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it4ecb560d-b4b1-499c-915a-90b6f5b7eca2.jpg -3953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it5086af21-5def-40f3-ad40-e3b5dbb3598c.jpg -3954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it50b4321b-f457-46fb-ab55-df355af5b465.jpg -3955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it52d03c97-87bf-41c6-a17e-60f7baeb2d60.jpg -3956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it55857f61-860d-459c-a584-7fc687c2370b.jpg -3957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it56d1195b-fa91-4578-baa9-2b5c112028c4.jpg -3958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it5cf3058b-ae6c-4f8d-9c5d-3ab7b8750d70.jpg -3959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it5ee6e6b7-917d-4606-91b5-e910651ab245.jpg -3960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it5fd66910-b063-4323-9ed6-b6861a391850.jpg -3961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it6055a6f6-ff72-4fe8-9073-b90b1fb908a7.jpg -3962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it62151901-ffc4-4546-b3a0-c1f6e33be7c6.jpg -3963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it62fcbd10-3dbb-4059-abfa-f9a313725518.jpg -3964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it66227f24-bc30-4164-9dd0-34175537b3fd.jpg -3965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it668ad0a9-5dc9-4a2f-ac56-06926c4461ee.jpg -3966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it673594e6-7241-46b2-8cfa-779a1c24dab2.jpg -3967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it6808c517-7c26-43b0-b9ba-8740623dcda5.jpg -3968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it6b400255-24e5-42dc-8fbf-e29c4e5a822c.jpg -3969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it707f1249-a351-487b-8478-76b4c26ba5dd.jpg -3970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it7159f078-2269-4d91-a265-e7a1546ac977.jpg -3971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it721e75d3-f248-4d5c-8a0c-b74e59fa1faa.jpg -3972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it743864f6-f13f-4a78-a4b2-184fceeb205c.jpg -3973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it798fed43-2636-4009-a92c-e89b53296924.jpg -3974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it7b40d27a-26bc-404f-bec8-e9cb21a4cb9c.jpg -3975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it8036aa6b-58e2-48a6-b8bf-c6955fd1046f.jpg -3976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it818abec2-1d4f-4ea2-9113-c9fb1f234b38.jpg -3977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it83f74223-0cc9-41f8-b52e-59b9666a2c89.jpg -3978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it86799efb-96b4-47cc-8614-2c2d55372928.jpg -3979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it87c5061f-0498-4c17-855a-80ac79fbe952.jpg -3980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it8d930f5b-a8cf-47ea-b585-bbacb1b2e1c8.jpg -3981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_it9c37f7aa-14d3-48c1-825c-6b22b4c0979d.jpg -3982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_ita16d96b3-a50f-4fbc-aa26-69943f08b396.jpg -3983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itac5b7f37-1336-46e5-8f0b-3655b86d1cac.jpg -3984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itadda101f-b712-44af-a5c3-b162303d727e.jpg -3985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itaf17a2f5-e261-4c23-bfb9-97f9cb426676.jpg -3986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itb31488ee-b400-4fd1-ab72-a5c121c62897.jpg -3987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itbe1d50f1-10b9-4676-a3d2-a4f9713aff7b.jpg -3988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itbe623401-4575-4832-8462-2107bb3779e0.jpg -3989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itc1905851-7bb6-4154-b5d4-32f2af82be70.jpg -3990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itc311c658-5129-448f-863f-6aa071982586.jpg -3991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itc45d7c32-2d90-401d-8658-80b44d018df4.jpg -3992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itc47bc344-ad6f-4114-bf85-d1df97852394.jpg -3993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itc6568e65-a6e9-4b60-8eea-789512542d84.jpg -3994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itc6c1ee1f-1ae5-481c-94af-1846492b754c.jpg -3995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itc72b5900-f02b-4908-a40d-37259c5dd126.jpg -3996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itc7b53ebc-de75-435e-92ac-ad2c48d731d5.jpg -3997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itcb49064e-8fe1-4227-822f-9e7770ede7c3.jpg -3998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itcb593300-69bc-45ac-8d11-eab581c36dd0.jpg -3999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itce1d12ec-deb6-45e1-af4c-714245b5db3c.jpg -4000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itcf52b46b-d2a2-4711-be5d-b7169a23025e.jpg -4001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itcfbb2c9c-0a9b-4616-ad2b-15a21bdf8a9e.jpg -4002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itd4659c9b-6e4e-46e1-bce6-43de4b1dd9c4.jpg -4003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itdb63c330-5315-45e2-bcd1-a6e009eac070.jpg -4004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_ite397da2d-d137-43c1-bfed-fec3a96ec9d2.jpg -4005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_ite6353ede-8611-4175-bc7d-aec91b49ffaf.jpg -4006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_ite711d5b6-3645-4a72-937b-dcd11b7e8abd.jpg -4007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_ite765b06e-328f-4b94-801f-039cd2cf1e40.jpg -4008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_ite862f728-a0a6-420a-b81e-c0e93ecc7e38.jpg -4009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itee88cbac-4d12-4a39-a54c-42d7b927db2b.jpg -4010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_iteec8956b-1fe4-4fe4-8771-65b7529593e8.jpg -4011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itf0831233-b2d9-43ff-b02c-dd81d8120a3a.jpg -4012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itf0e154fb-c016-4e1c-a07b-6d881e6b1503.jpg -4013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itf4574efb-c663-43e1-9df5-7e7c315cbcfe.jpg -4014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itf55d26f5-1777-4cc6-b183-0b1414018e6f.jpg -4015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itfa971754-806d-4b9e-8262-f23b141b4710.jpg -4016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itfb08ddfc-9b8d-4d88-a5dd-0205d8960bb5.jpg -4017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itfbcad2b2-2194-4687-bad3-d18e78ba6598.jpg -4018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itfbfac2aa-3ce0-40ee-a41d-40b5eeb5b9e1.jpg -4019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cell_phone_in_itfe2f9367-d92a-45c4-95dd-8aa0378a6696.jpg -4020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it0125df38-6510-4acd-932b-ccc9173d57d9.jpg -4021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it03847235-fc7d-4bfa-9f5b-46af34cad1aa.jpg -4022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it0388914b-db7b-4201-8047-62da18912be2.jpg -4023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it03e243af-05d6-4a94-98c2-78682db33751.jpg -4024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it047d2a97-d6c8-4848-91cb-735c26edb6df.jpg -4025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it0bcf4902-2962-4a02-9bfb-fea5aeeec1e7.jpg -4026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it12d5403b-e2a1-4848-8c9a-6945a10debf4.jpg -4027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it14b798ad-757e-49c1-a373-fd301cc5ccf4.jpg -4028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it157af7a3-01a8-4af5-9f86-f58f5beb899b.jpg -4029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it15cd656f-ba7a-4883-a1a9-01354587a66e.jpg -4030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it1688eeca-7e3d-4a8e-9a62-32be3809b982.jpg -4031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it1857392a-e309-4a22-a689-a74132ca1a93.jpg -4032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it1875e46a-a783-4f8e-aef4-0c726eac0fda.jpg -4033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it1d5c654c-a5f1-42ba-b995-4f9440505935.jpg -4034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it23512503-e96e-4ad1-a33f-37ceb4cf2e00.jpg -4035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it26e9f2b2-d241-4f72-80af-677f5e695b0c.jpg -4036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it2736f5dc-d8af-45eb-83aa-d534958eef69.jpg -4037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it291da1ad-13f9-4d23-bfa0-2e3dd2e14de4.jpg -4038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it2bea362e-3ea6-40b4-adfc-ecf22c94fb0a.jpg -4039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it2d9a261b-b6e9-4328-901a-6051eae3de63.jpg -4040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it2f2c7a55-bf05-4af6-ad40-08e61d614f24.jpg -4041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it2f8a2730-a0b5-4383-884f-5b58b9134f93.jpg -4042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it31039be6-b363-40f2-ac85-8bb8a2dd1b08.jpg -4043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it33163ad4-f6ab-4f97-a790-cb398e9856e1.jpg -4044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it382729c6-9bd3-4c91-a7ae-745b13b214ce.jpg -4045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it387db69f-acb3-4bac-aa71-610ea861f2d0.jpg -4046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it395a0e6c-2e44-4de7-9622-7294ee680a8f.jpg -4047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it3dfa823e-9d96-4ea7-9061-d0909acea3af.jpg -4048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it3f194269-fdba-44c6-9a35-369d5032607d.jpg -4049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it4094b349-b975-48c9-91fd-6d2e79763af2.jpg -4050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it442263ea-b19c-4ec0-86bf-b3e30d0039fb.jpg -4051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it4978785c-497c-431e-9876-1ebae3c258d6.jpg -4052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it498eaccd-89d3-482a-93a2-447576d35242.jpg -4053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it4de5ab57-8e46-4335-a325-c3397cc7bc4f.jpg -4054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it4fa13c67-e318-4f59-a905-ccb485009dff.jpg -4055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it4ff8b470-bd2a-44c7-9d09-2db43effe597.jpg -4056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it5a216658-f6a7-4076-bdde-198f9d647466.jpg -4057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it5a4ca34c-396e-4415-8e40-4dd2fb148f5e.jpg -4058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it5ae09255-8b33-4086-96f2-0a07d876a586.jpg -4059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it5ebc598b-d25f-41bb-9f39-abd20ceb9c69.jpg -4060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it60fc5743-0f63-42ad-82e5-9f5336995ebf.jpg -4061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it619a8534-9c7d-4085-a15b-9b71a9bef351.jpg -4062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it65999e34-23e4-4001-b246-c3394519f6ff.jpg -4063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it6adb9964-71c3-4c98-b6df-9353de54d89e.jpg -4064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it700f739e-940d-4f05-a060-cf7c8c49ed6d.jpg -4065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it77af7385-75d6-4593-a23b-04b83becbaaf.jpg -4066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it7880103a-423f-4834-9afa-e155b13ccbd6.jpg -4067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it79020363-841c-4e45-8df9-001daa1478fa.jpg -4068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it7a2cee42-345a-4118-9557-205a945bc4e8.jpg -4069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it7b56ffb4-a354-41cd-8c0a-b16f146c5bc3.jpg -4070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it7d43d3da-bc76-4d52-b285-684a9bdc4dd0.jpg -4071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it7dd6e3ab-1d50-4aa4-8ee5-23ff004d8d0c.jpg -4072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it8037975f-d5e8-4d04-aad8-72dee321d5a4.jpg -4073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it869d8851-359f-4d50-b6d3-5d620be859ad.jpg -4074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it88393400-961e-4fe0-9cc5-af701284254b.jpg -4075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it888853e6-8ba8-4dd9-aef9-699193a024e6.jpg -4076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it8a2a787d-f338-47fa-9d26-4adcfdda16ef.jpg -4077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it909bc745-1724-490f-9642-a67e357eb3db.jpg -4078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it9199434c-0d78-4f04-bda0-9775eaf55314.jpg -4079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it95a6bf46-082a-439e-8af4-24654519fad8.jpg -4080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it97a5c44e-2092-46f4-8013-dd1179d1ad62.jpg -4081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it990d7e7c-dec9-4e9a-b843-649623a96be6.jpg -4082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it99d53dfd-a8b8-4b8e-8fd2-082cdf108e7d.jpg -4083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it9cd135ca-4772-44bd-9c7b-c5b9dde8b4a6.jpg -4084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_it9efa3d94-57ca-458f-86ca-10f54fc98977.jpg -4085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_ita0871404-be26-4687-89af-64f7c90f8761.jpg -4086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_ita1a3ac6b-c50d-4ad3-9552-44ef83f6c339.jpg -4087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_ita1f078c5-e60a-4a52-8c81-3bb76470558c.jpg -4088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_ita36476c0-34e8-44e3-b594-754d887422cd.jpg -4089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itaa48cebc-7ee2-4517-a394-72834cf771d5.jpg -4090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itac3baed0-d072-428d-b1b5-232f3fb9051f.jpg -4091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itac6fdb7b-e444-4254-919e-871fbdd7db52.jpg -4092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itad085974-2753-4f02-b655-9fc2c86dfb94.jpg -4093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itaeeb82ed-fa83-4fa5-ada2-12e7b8bdfb74.jpg -4094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itb8390f58-5d00-4fd9-905c-f6b35afdaeb3.jpg -4095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itb89cfa52-aa9a-430a-b8f3-c784d7e67f35.jpg -4096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itb9a7137e-11b5-4fc3-99aa-6298cab4978c.jpg -4097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itb9d90a8d-f206-405d-92cd-db5e8163d86e.jpg -4098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itc0b33d99-95a5-4d5f-a4c3-34ff8e8851ba.jpg -4099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itc2042e16-27a0-4454-a32f-bc73ca791cad.jpg -4100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itca5a13e5-2320-4d30-a3b5-5d8c0c70e73e.jpg -4101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itcd7533fe-4a4e-4014-ad57-3aa7aef31b32.jpg -4102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itcd80fe95-5992-4103-a7b9-53913279a569.jpg -4103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itd202e2c8-2229-43e8-a58f-a5f831440383.jpg -4104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itd21e6c0a-4266-4706-bb67-21f84d471270.jpg -4105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itd5a43299-9817-494c-a906-fc1b63a3ab7b.jpg -4106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itd6c3f188-be7c-4604-b582-d4b5b21b5c8c.jpg -4107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itd9ba5664-b6f8-4902-85f8-25dbe48bdf2c.jpg -4108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itd9e5bbb8-0bff-474d-b922-3cb504018741.jpg -4109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itdc722c7c-041c-40e2-bdd5-e0e8d2bb1c9c.jpg -4110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itdfecc24a-d0c8-4e6a-b4ae-97a49b299060.jpg -4111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_ite112c93b-a2b3-431c-b992-0328ae1d279d.jpg -4112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_ite85d7c96-11f8-416e-9d7e-c6b67431d854.jpg -4113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itebe6af7d-85bb-4217-9c10-31c09b00be5d.jpg -4114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itedb61c62-c270-44b0-a82d-8c90b7bcc8c9.jpg -4115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itf003e48a-d067-41bb-b119-691b2f7719d9.jpg -4116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itf01c2283-3932-4be4-85b9-f07128a50de2.jpg -4117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itf1d8426f-7936-48d9-a5a4-75145cb465ea.jpg -4118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itf3a9ab5e-8612-4e3f-9079-eab81588b0d9.jpg -4119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_chair_in_itfd8e5b4b-998e-44a0-bcce-09c0e8743f62.jpg -4120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it00c968a6-3bb1-4ac4-af97-56057c4ea7c1.jpg -4121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it0183d2c0-40d8-435c-91f2-6937fc485acf.jpg -4122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it01d460ab-5f6b-4606-a246-ff8c4a42ec3d.jpg -4123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it036b20d5-f379-48a4-90d6-14c5020e54dc.jpg -4124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it06377df2-121e-4bc0-9385-2216fd4eb1c8.jpg -4125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it08604d44-196e-4bc9-8e97-b607a2c5c901.jpg -4126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it0b6c2124-faf2-4391-90eb-76f43009a380.jpg -4127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it0dd6977f-7229-4384-b431-35d3a87a3880.jpg -4128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it0e2916f4-ff75-428b-b9a2-cd7684f9ed62.jpg -4129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it0f236a6e-5a46-43d7-9e19-cd2405c6e4b8.jpg -4130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it115af50f-0244-4fd0-9b07-0b824639f5be.jpg -4131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it1420d21b-2870-4c37-9f66-7f1f1e74426e.jpg -4132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it154908d8-9608-4d81-a95e-2f888be3f917.jpg -4133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it19b6bac6-a6fa-4fe5-a0c0-45785136db4c.jpg -4134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it1b97f763-9167-40c4-96a6-17e56070ae85.jpg -4135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it1c112e91-b1db-4f3d-9bc4-0f95678aeab8.jpg -4136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it1d7265b3-fe9a-41db-9bdb-c30bf6692349.jpg -4137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it21d98f78-7f0e-47c5-93a5-20ab051b977c.jpg -4138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it238de900-d013-499c-b60f-5d56ff25a683.jpg -4139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it23db3118-60c7-4838-88d8-10c3705713fc.jpg -4140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it24c88410-1348-49fc-8ebb-d4c6945cc227.jpg -4141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it253841bd-dc48-4c42-a20e-11cbb8fbbbf6.jpg -4142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it286f8a49-3b19-43d9-95d7-91a7c4e101dd.jpg -4143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it29ca0b13-6c03-4fb1-acb9-9ed4bd10d5a9.jpg -4144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it2ab2ce98-0a14-432d-a3f5-188a304f6cbb.jpg -4145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it2c38540d-6e52-42e8-98e9-43170abf651f.jpg -4146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it2f77145d-bc15-44da-8ff9-b786718d70c4.jpg -4147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it335e7302-cf73-4e78-a243-5c1f8514cb6e.jpg -4148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it3729a889-fe00-48f8-83a9-fb86d3d691c5.jpg -4149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it3f0c82cb-bf3b-4d41-b9f9-b235a594a0e0.jpg -4150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it40eaee00-3dfb-4652-a61f-3c1f39f69fc0.jpg -4151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it42ea7028-8103-4362-a6d1-aff539b3896d.jpg -4152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it4fa3041b-8e62-4824-998b-1551cbe27bf7.jpg -4153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it5237728d-d5af-4dd7-8ee9-b173cd6c4950.jpg -4154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it53762db1-a24b-4153-855e-27697fd2c058.jpg -4155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it552c080b-26cd-4f7b-885c-77c3a3116855.jpg -4156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it567dde0a-edd5-4623-adea-24f2b778a544.jpg -4157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it571fc1b6-7e3c-49a4-b2b1-fede2e59ea56.jpg -4158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it57c2597c-ab1c-4ee1-9d8a-a595a78de715.jpg -4159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it58692181-7cab-452c-bd51-16b01e07c851.jpg -4160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it58c04659-22d4-4076-86bd-7d762944f456.jpg -4161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it62f73d80-70ab-4016-ba66-8504f074c4a6.jpg -4162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it63c9dd3d-8512-4902-aac6-4387a5526873.jpg -4163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it65e87115-e1e5-4c47-9e1e-87f5fe157b12.jpg -4164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it6c91fbf9-3d4d-436d-9745-9d467114e6a1.jpg -4165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it6ee5d973-8d9a-45b5-b72e-c8992188668d.jpg -4166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it74bc5fe2-8346-47bd-b198-daa0004db2b6.jpg -4167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it77f3d8f6-8bce-47ed-b684-10c6f06daf2e.jpg -4168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it79dcd417-702b-496d-a239-9123a732dac8.jpg -4169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it7bb60483-9f30-4e80-af56-050da7a62435.jpg -4170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it7f86b134-2887-4e82-8fdc-fdbf3706fe98.jpg -4171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it81163462-3c6c-423a-b848-8643a5fed974.jpg -4172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it82ccaaaa-4f9c-440a-bf5a-01147ddef8be.jpg -4173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it85b5a5f4-f40b-4ae7-a92c-2c22bf6d4a3e.jpg -4174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it875dcfe7-a86a-4725-b6ce-4f76a2c3a65b.jpg -4175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it885a1531-f8f9-4b05-b873-2e3ac85b6a37.jpg -4176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it89082598-4f9d-4624-9efa-dc3ff100481c.jpg -4177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it899ce935-dd45-4b35-ae1f-797e45fe3abe.jpg -4178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it8a7a419c-5df8-4f91-8d6e-fe10a598d47f.jpg -4179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it8aa3557d-cfe1-4de1-b4ab-3defa2c78316.jpg -4180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it8c4453e3-b3aa-4395-ae3d-561fafbc1aed.jpg -4181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it9161cd9a-35f8-44d2-ba1c-6743855d6866.jpg -4182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it91c81d04-745b-481a-9b7f-d9fc4f4ef6ed.jpg -4183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it91f92e65-4bcd-4943-90ae-f133fdc23c0b.jpg -4184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_it9737062c-16ec-424e-92e5-dd7da1d046bf.jpg -4185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_ita02553db-1a5a-4de6-83ed-210a7eb84240.jpg -4186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_ita1b7f3e2-5ff3-433a-8352-1b03b47a3c3f.jpg -4187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_ita36f543b-03b2-4c32-a755-cf0c727d117c.jpg -4188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_ita51e7eab-7348-4603-b8b2-6a172ee66d98.jpg -4189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_ita85ff961-a219-44ff-bbc1-22e190649077.jpg -4190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itab6b79f0-a9e6-47da-88b2-31a5aaf85e23.jpg -4191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itab724a77-9369-4648-bec9-711659578061.jpg -4192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itae9d867b-20b3-412b-b756-ae66ae3d6189.jpg -4193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itb0baaca0-1664-4483-b12a-0450fcd65d82.jpg -4194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itb3932dcc-cf41-4515-8b7f-f514abad9d71.jpg -4195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itb5188f57-f1f5-4246-9d44-4a76a7666725.jpg -4196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itb51a8ca6-31b0-478f-bbef-67f48bbf7b90.jpg -4197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itb6e5f35b-d199-42e3-b9f8-9bd2998f5e42.jpg -4198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itb796167c-5e5c-4275-a886-9a7b2b825889.jpg -4199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itba593690-a0ee-48e9-afbd-227c16368bd6.jpg -4200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itbb7cfe69-ff4b-4af3-87bf-de93785dc0d7.jpg -4201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itbcfdb3a7-56b6-44f3-b25e-f4e3b7ffdbbd.jpg -4202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itc4f38347-7fad-44f0-8f52-23f604fcb8c1.jpg -4203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itc853d309-d057-4486-8e64-0906e447b2e0.jpg -4204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itccc9f502-f05f-4049-b9bd-87f381ad9d8b.jpg -4205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itcf4bcca8-ec9e-493b-a728-8680bfc0ed2c.jpg -4206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itd4761d21-427d-4a8b-b4f4-741ed6869660.jpg -4207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itd4bdd6af-6a42-424d-b96d-40a02f8eb1eb.jpg -4208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itd501b668-2fc1-4ac2-a964-1ff3e3daa26a.jpg -4209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itdac13510-23b8-42d0-9861-1493fa93db8a.jpg -4210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itdb12e28d-0871-44d4-83c1-39b644f233b4.jpg -4211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itdb7f2c59-c7d3-403f-a75e-49048e21629b.jpg -4212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itdc6de9d7-61f7-4e7b-bc34-0ee457859cf8.jpg -4213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itdcf1e581-daf4-4dd2-8586-40d8a2c4427f.jpg -4214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_ite4cca441-8a42-49e3-b232-cacdc00a2d2c.jpg -4215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_ite71f2fd6-464d-4070-9c31-3182683bae6c.jpg -4216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_iteb865ed3-ecf9-4dca-a17d-a6aadca1ff3b.jpg -4217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itee34e84e-8103-48fc-9801-61d07b9a3411.jpg -4218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itf674042d-7fb7-46b0-9d15-a9b4452dab06.jpg -4219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_clock_in_itfd1ed8b1-e7e9-4887-83c1-b01c14841567.jpg -4220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it007f07f2-a312-4c14-88bb-a8239cadc3a4.jpg -4221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it00a92c05-7eb6-4856-a010-5118a98bb7ad.jpg -4222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it015938c1-cb2d-41b0-9afe-cbcc2b473abf.jpg -4223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it06a9be82-2485-4fb2-b8ce-025abb4886fc.jpg -4224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it071dfaa1-b286-4af3-8511-9c766ae84d54.jpg -4225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it08b35589-b877-453b-afc5-27304c886845.jpg -4226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it095aefa6-95da-4786-a285-cf2c315e2760.jpg -4227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it0985025d-588c-449b-9961-16f765240f12.jpg -4228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it110ec39f-3e9a-414d-99e6-bb4eae000ed1.jpg -4229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it1273d2c7-4cd4-4cf5-aafe-b89cb9675e5a.jpg -4230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it12a7aa11-1a60-4adc-9113-336a2fa678d0.jpg -4231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it152fb4c9-df5f-4840-a19c-5a4b8bcab62e.jpg -4232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it15bf6344-1314-49b0-b482-4c638cbe32e8.jpg -4233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it18109119-5501-41da-ab2c-d88a461c7695.jpg -4234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it20188281-3dae-45b3-a537-abc569fc890c.jpg -4235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it202361df-b34f-48fd-bb0c-5007e40dc0e1.jpg -4236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it25ee573d-40b1-4202-9c69-32f378d2d1ef.jpg -4237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it2a188206-28cc-41a0-b7e9-206ee006f1ff.jpg -4238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it2a67492f-38fa-4cb4-ab20-0657814844b7.jpg -4239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it2ee5cf5a-1eeb-4b60-b50a-c4f51da4b946.jpg -4240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it2fca558b-2780-444e-9e6e-f41cea531e87.jpg -4241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it37338153-5e2d-4a8f-b69d-57ead8616361.jpg -4242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it399afa6f-7a37-4a4c-b80e-a2b2e4ecea9e.jpg -4243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it3ab63f95-325f-43a3-a2e2-8c0c96267ff1.jpg -4244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it3ad8d6f7-7274-4022-8024-d6544745bd51.jpg -4245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it3ba09673-8f78-42c5-9cb8-091952076bd0.jpg -4246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it3bbaaca3-b2f9-43dc-a67f-0db5ba9fd36f.jpg -4247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it3cc18092-3268-4006-9246-f25e68dda14f.jpg -4248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it44ab9ee5-ae32-4296-b712-532d241b18e4.jpg -4249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it46022e83-d25b-4a40-8b11-9463a6459f21.jpg -4250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it491e7718-b27f-47c1-b76e-ada09012cb9c.jpg -4251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it49450b35-f7aa-40f6-bc8c-c238e22d78dd.jpg -4252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it49c75556-0a69-422a-928f-7ab9c5e0674f.jpg -4253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it4e5e6993-4e9d-4cf9-a599-9d9bf6bcc01a.jpg -4254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it4ec493a1-6c5d-4908-9397-784cc3bc50f6.jpg -4255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it5198f7d0-49e1-441c-a697-4056427808a4.jpg -4256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it5473e411-8128-4190-a6e7-32db9bdfa278.jpg -4257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it559f4efc-b926-4c4f-bd26-4e70de3eea67.jpg -4258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it59cc40b5-ae79-4131-ae99-4ddfb0a660b0.jpg -4259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it5accef26-8f58-426e-9956-c941fdc911a3.jpg -4260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it5b2d6afa-6ede-42e9-b432-1c8575c39bd2.jpg -4261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it5d07fe54-cc86-4262-bd8a-ddb480fd547c.jpg -4262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it5ed5155c-83b4-4325-8fed-820adbf226cf.jpg -4263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it6741c41a-c81f-42ff-a78a-4ee4133a091d.jpg -4264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it6abedf3f-e276-40ae-9284-b342bfa5927a.jpg -4265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it6df6c7de-34c0-440b-97a1-a4b1700cfe8b.jpg -4266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it73479598-47c8-48d0-9e01-db7d2b9d52ec.jpg -4267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it783a2ef1-76a3-4228-bd0c-7a742bb9fc76.jpg -4268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it7a8bb66f-0099-4df0-b74a-3a95ac0ff4a5.jpg -4269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it7c5a9614-c1ba-49ae-ba6c-ddae80a0374e.jpg -4270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it7cc119e3-55e4-45ee-9a8c-bf51ebf4688d.jpg -4271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it7d536686-5b12-4439-9926-c3f05dc094b3.jpg -4272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it7d751efe-08a9-4cde-ab58-9bfdacd92d68.jpg -4273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it8346988d-e26e-4179-b3c4-290a32d3dfba.jpg -4274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it847fd1b1-bfea-4aa9-bd2a-94772ec59f78.jpg -4275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it8750b86e-82e7-44be-83d3-7712fe0760b3.jpg -4276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it898dcaec-325c-418a-91fd-5ab53205f7f8.jpg -4277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it8b3b7a7a-c634-4ca2-978d-3617ad865e99.jpg -4278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it8e6336df-bf66-4621-b342-b396dccc29c7.jpg -4279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it8f5cc300-259f-4289-b26c-2719224c68aa.jpg -4280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it8fd7905a-ba0e-4d91-9ca6-6cd9329e7bc3.jpg -4281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it9290bf99-f489-46b9-a838-d2b45bbf4661.jpg -4282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it9a508412-886b-4afb-b7b1-5a0bcc016812.jpg -4283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it9bee12df-c408-4fd7-b320-7d62b61ecc75.jpg -4284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it9d487a27-2aa8-4029-bb17-7d8d309af478.jpg -4285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it9d53b8ae-f508-41b3-aada-b1afd4ff226d.jpg -4286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_it9f89f92e-ec04-4860-9fe5-991d8624f970.jpg -4287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_ita39c016a-1abc-4ccf-a612-a041e6ee94d1.jpg -4288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_ita4c121bb-8b1d-4e3e-a0de-3e81fab4bdbd.jpg -4289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_ita88df971-b2c4-4d23-8c6c-691ae88102e2.jpg -4290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_ita9636ed6-5aaa-4679-89d1-5666108e9818.jpg -4291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itb3420597-a469-4707-a57a-26d8644dc41f.jpg -4292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itb49ec1dc-9347-4119-ac61-d7241598bcd3.jpg -4293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itbac873e7-2c35-476d-a0ed-f00c2a77a965.jpg -4294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itbb14d79a-a078-4f63-9ecd-396725b7f568.jpg -4295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itc256dd12-2f6b-4f6f-8a02-806c916d3979.jpg -4296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itc66e54b9-bd8a-4e68-9bcc-227562091dee.jpg -4297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itc821e8c9-b6be-4168-b703-89d0a140a12f.jpg -4298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itcf443d5d-f144-4953-8921-b2eaa9b76100.jpg -4299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itd4e78571-b033-42d7-a600-7296889e0fcd.jpg -4300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itd54b8c9c-53de-462d-ac3c-77ae6db9c0ca.jpg -4301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itd708eee4-1a2c-49c0-80ce-72f9848ffd0d.jpg -4302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itd9295cc8-b28b-4b40-8def-fb629c81b2ec.jpg -4303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itd9a595e0-729e-4654-ad63-bf052221c5bb.jpg -4304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itda1067c9-71e9-4987-be88-f2f20163aad4.jpg -4305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itdcb12822-fd19-4365-ae43-3f828a4e4235.jpg -4306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_ite4764534-9373-4fed-8c6a-c1c7a43c2e1d.jpg -4307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_ite9e826d8-368e-48bd-a4a6-6401a3c25544.jpg -4308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itec1e6827-2043-4b29-ad1b-ea11a83d198c.jpg -4309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itec460518-44d4-4be1-8e33-3734b918058f.jpg -4310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itede2c2ca-8bdf-46ac-a9eb-c79927f6ce2d.jpg -4311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itef486832-c826-4e1f-a2ca-bdd1719abaf8.jpg -4312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itefdc261d-2124-400d-bcd3-25f6eaa51487.jpg -4313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itf15c37db-47e8-45a4-a42d-f18b97efb698.jpg -4314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itf1d3726d-7133-47e4-96c5-84cf97ce1e2f.jpg -4315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itf29866ec-4080-4d28-8cfb-5522e2c9d535.jpg -4316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itf4fe9c5b-b100-40c0-aeba-700c71fe8166.jpg -4317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itf5798fa4-1701-4c36-861d-d5499cb968db.jpg -4318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itf721754a-5eda-47ea-9623-146a9e6a1fa8.jpg -4319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_couch_in_itfbec4d9d-a264-4523-8717-8504acf7680a.jpg -4320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it03a28a52-96d6-4ddf-a25e-e79ccdf5b7de.jpg -4321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it04a6a883-6866-47e8-89de-d42ba504fc56.jpg -4322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it06403383-80ca-42e0-8819-031d5db5def5.jpg -4323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it06d540e0-3a84-45c8-8795-bb27b2ee4bfe.jpg -4324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it07aca5ed-1758-437d-a76a-585964982ead.jpg -4325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it084187bf-507f-4e83-b986-e63a29e975e8.jpg -4326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it0a7d4761-a044-4907-ab7f-4951f9800585.jpg -4327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it11a71f68-5d01-4fb9-a7bc-e913e66bb143.jpg -4328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it1577460e-ba84-44fb-b5bd-28d2a44b07f1.jpg -4329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it17222c14-576c-4e18-9a7d-d0fd07b70e83.jpg -4330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it1ac4f758-5f0e-41ad-9b2b-1214ea77955a.jpg -4331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it1c311a7f-536e-411e-9126-c383e5d38d92.jpg -4332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it1c6df1b4-1461-4359-9d28-732a4b6fc81d.jpg -4333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it232175f6-80fe-4664-b39e-e2aecc1993ec.jpg -4334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it2439e73f-66f0-4a65-a6d0-8bdfd2f0671e.jpg -4335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it265a21d0-eecc-4272-8088-ba835058434a.jpg -4336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it27115719-b604-437a-888d-1ba2ecf4d94a.jpg -4337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it2adcbad1-0792-468e-a2f0-8a4f7537f611.jpg -4338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it2dbc8bb0-9899-4b44-aefd-2bfce1116925.jpg -4339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it302456ef-63f8-4c50-8d98-d4fd5180f185.jpg -4340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it302c4734-9ded-49b9-9f20-8c07bdf39914.jpg -4341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it3204899e-30e5-4e0d-91b9-7a13f13befcd.jpg -4342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it3bb74acb-ad2c-4d7d-8e41-e6e4d80ea107.jpg -4343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it3d70f979-b549-4d6d-bbe4-4e9b0b1e5e98.jpg -4344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it44ef65a7-e64a-4722-a172-5106483c36ce.jpg -4345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it44ef70cd-37b6-4977-b8cf-67bf12ce6e58.jpg -4346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it4a2cf503-fd15-4cb8-a92a-1582b6fc9d45.jpg -4347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it4b50f74b-5984-470a-a4aa-c687b624effa.jpg -4348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it4bbb1441-97b3-4306-8d8b-a3874a8b1b26.jpg -4349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it58ec4142-0ed8-43e7-be9d-0289eaefdeee.jpg -4350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it5dea2c81-52ea-4b61-b251-8241682c0565.jpg -4351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it675ba607-ad43-4b4e-8e85-7ec39a8688b8.jpg -4352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it695823f0-072a-4d5c-acca-f74f7f3b0862.jpg -4353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it6f1acfc9-28df-483c-8508-f3653cb9a946.jpg -4354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it6f214360-b1d4-4a88-bd4e-a5cbadc73ac6.jpg -4355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it71523be2-5231-4288-ad3f-ec45ba772ea9.jpg -4356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it742d7c1a-4f23-4fb8-9fde-971ea5dc7645.jpg -4357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it756eb482-acd9-4350-af2b-023387c96b41.jpg -4358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it75af0c97-230d-40c1-bad3-05817601ad77.jpg -4359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it7b148846-6c40-40f0-a85b-ebc527bf0c22.jpg -4360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it7b4d39c7-4152-4f04-a6a8-cc888c661477.jpg -4361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it7beec567-f4d8-4914-8b17-0b778bd7ba64.jpg -4362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it7f820f80-48ee-4ae4-8337-4c2a175ce603.jpg -4363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it800b1dc6-785a-42bb-b5bd-0fdf69e45ada.jpg -4364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it838ffc6e-65d1-4130-acf9-7bdf7a58531a.jpg -4365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it84538d0f-8f4d-49fe-b42d-d3e18f76bb81.jpg -4366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it85e54a28-0df9-4468-8537-17669445b843.jpg -4367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it8e9f8651-9b4d-4b32-8837-5d69bc1d8575.jpg -4368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it90f7604a-4695-4ed7-89e2-ec7eea85fc6d.jpg -4369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it92146fd0-67e7-4f3a-9716-a517a0744d85.jpg -4370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it958cdfe8-5252-4f89-a4c5-4867e6e9ddfd.jpg -4371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it978283b2-9436-4ce7-84ec-6e362f4e7072.jpg -4372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it97a489d8-08c8-4df4-8c49-f062914ae0a6.jpg -4373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it98201c56-47eb-4a04-a591-7a0b2b107b39.jpg -4374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it983c810d-f5a4-4c4d-bab3-892578718076.jpg -4375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it98919e70-4c5c-4e41-954b-9117dddf1eea.jpg -4376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it997aee8f-1924-45a2-8e2a-609e215771fa.jpg -4377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it99f0ab8c-8451-4608-b951-74e19884d5ab.jpg -4378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it9ac0e766-b6cf-45fe-bb39-f67fe85a2324.jpg -4379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it9c4c2933-bf18-4fa8-b7d7-5a126022c3f0.jpg -4380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_it9d8dc4cd-e85f-430d-99d6-cc055f2cd202.jpg -4381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_ita2309792-4286-4de4-8c17-17b196311772.jpg -4382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_ita4f0bde9-7a44-4d06-8444-6fa88ca379fe.jpg -4383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itadb46464-5018-4411-ab86-4b72581f3ec3.jpg -4384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itb1739aae-8afc-4e43-9e18-926dead7dee3.jpg -4385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itb189c74d-9907-44e4-9314-7f7f842bfee6.jpg -4386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itb260f144-299c-436d-b348-9ae67af9552e.jpg -4387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itb3d7fb0f-b80e-463b-9f61-424dc213516f.jpg -4388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itb418ab8c-480f-4fab-8bf1-22b486b2fcf8.jpg -4389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itb828f0fa-b0b5-4f26-9088-84e5d2ea24cb.jpg -4390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itbae9371b-ff03-4095-8ed3-91fff6f1c2dd.jpg -4391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itbf328255-5098-4a84-a0b3-8afcec093884.jpg -4392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itc27e3a4b-f364-4d78-9b1e-faabc4985a8d.jpg -4393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itc2c74c92-725c-4dfc-be12-eb6ebf4d3625.jpg -4394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itc766c087-d46e-4cb8-8d71-665f8a1a6635.jpg -4395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itc864e7ee-9e31-4ab7-89cd-d6cad02d34af.jpg -4396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itca8c4b3d-2e85-4f8a-9383-a23c4e44b04d.jpg -4397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itcb291150-f5e4-4b46-a632-0109c0a9dcaa.jpg -4398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itceb48fd7-7cf2-40fc-b6bd-3cfd96f92122.jpg -4399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itd79ce277-f52c-45f1-9fd4-09e2cdd0039e.jpg -4400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itd7d4f64a-722e-4f77-9599-434db432a40e.jpg -4401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itd8c9e640-e215-42bb-856d-46371ea03727.jpg -4402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itda689536-aecf-4c87-81ed-5af0d89b1574.jpg -4403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itdcba8569-bded-4161-b13a-ad544a27c627.jpg -4404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itde58e6be-0035-46f5-87b3-54bf2d50df31.jpg -4405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itdea44963-9d25-4dd1-a240-75dd3c1b13cf.jpg -4406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_ite453be96-35b4-437a-b9b9-c9eb371dcb38.jpg -4407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_ite9501abc-d5b8-4b55-af5b-748a876e87cf.jpg -4408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itebd67fd5-2687-4733-aebf-a7e3bd0643f2.jpg -4409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itec78ad6c-02c0-4e27-ab3a-e09ac8f57946.jpg -4410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_ited20d3fa-6d4e-4514-8580-99463ff01de9.jpg -4411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_iteefa6407-7acc-4839-91fb-fd8195b715d7.jpg -4412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itf28aee7d-1a39-42f9-9828-d5e47b8726ec.jpg -4413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itf2bc3356-c228-44cb-8c04-1b14673dee2b.jpg -4414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itf319f9ab-7001-4770-a128-4851373cf393.jpg -4415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itf3f9daa2-2f9a-42cc-91c3-aed51a15b087.jpg -4416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itf97afaa0-3da3-4daf-8774-86182da2d5e1.jpg -4417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itfceba38e-ee3b-4dad-be81-d87a150275d3.jpg -4418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itfeb46b8a-9db6-4d3e-bb26-e5bef083dbbf.jpg -4419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cow_in_itff110e33-856c-459f-b80c-71441aa1dade.jpg -4420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it01003c01-f7a8-4882-a92d-c876db8a9222.jpg -4421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it032514dd-8616-41ea-805a-d513a0d12066.jpg -4422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it04d8eea9-beaa-4948-8f70-31de13aa2a12.jpg -4423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it088e3820-bd1f-4b39-9753-f981da7bba4a.jpg -4424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it0ba206fb-4a8f-4b56-bcd7-6bb002401d09.jpg -4425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it0ba986e6-2717-4432-aa9c-a730f631eaa0.jpg -4426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it0c002fc6-b8b3-4ab5-84a3-f7de576c8bba.jpg -4427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it0de8d729-ebbd-4b30-b071-8df1c0679188.jpg -4428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it0ebd621c-8011-431a-b29e-f9c6eea5b043.jpg -4429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it0fbac2b5-2c85-4ccc-af14-ebcaf537344c.jpg -4430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it10c5bb72-5467-493c-879a-46bf1eee1a3a.jpg -4431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it1445dbd7-6cd9-44ef-996b-0da3914d8830.jpg -4432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it152dd169-72c5-4035-9956-d1b342b23658.jpg -4433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it17cd97b5-b87e-4b20-84a9-0ea2d932381c.jpg -4434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it18c0e3d0-91bb-4b5c-bb1d-7af782eb3ab5.jpg -4435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it1a28fd65-0a56-43d9-872a-ca9e71be906f.jpg -4436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it1d9dee21-fba1-46fe-9c5a-2d1ebb68c1f9.jpg -4437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it1eb095af-d386-4d58-a5e2-bdc974b24ef9.jpg -4438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it1f0025bf-a494-4534-88ea-8eb8bc8d7eb2.jpg -4439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it24807ab4-b162-44a1-a3d2-7b59d5ce8926.jpg -4440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it24fbf66d-b37a-4555-83cc-adedb5ad1757.jpg -4441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it2a960210-0594-49a1-b0e2-8fc3350f9b2f.jpg -4442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it32731f9e-99ac-4758-874b-2e45aa61dab3.jpg -4443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it3515e76a-1954-468e-8a08-daf5524c3515.jpg -4444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it352bd84d-a509-46e8-ae62-6bb33a609cab.jpg -4445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it3584fec6-4c17-4b0a-9dac-6669f2a1b2ab.jpg -4446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it35c23408-dea5-42e0-a569-9a9c6fed9260.jpg -4447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it36e066d7-439d-4875-bc40-b78582fd475e.jpg -4448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it37c314b1-f0df-4d20-9365-5b5b60b570c0.jpg -4449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it3a0077db-0a92-44e7-9155-2902b330dff4.jpg -4450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it3da88eda-8542-4232-95c9-b84ef1dfe8c8.jpg -4451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it4111c026-49ca-4639-a19a-ff22c1af988d.jpg -4452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it444caab4-197b-4841-ac6b-3565eba3a3c3.jpg -4453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it4650fbbf-2661-4e31-9dfb-bcdcc5a11404.jpg -4454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it4898c381-9668-48aa-a04f-7574c8e9745c.jpg -4455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it4ba274e7-2388-4117-9f25-b59e04384c63.jpg -4456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it4c3d0b3b-ff2a-4b3d-ae7e-f81712c352e3.jpg -4457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it4c8f21fa-846b-490c-b16b-6dc8e2096702.jpg -4458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it5cc38e2f-bfd2-4818-94c0-384f815689f2.jpg -4459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it5dedb77b-c504-406f-804f-c6fe24049a2f.jpg -4460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it616c7856-ca4f-4fe0-bf59-9f6719ab2141.jpg -4461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it61dd086d-7e09-4051-b37a-73dcf9fd07f2.jpg -4462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it62ca445a-5cc0-40ab-8c19-3163e5ee0d97.jpg -4463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it662e17a6-799b-4a4a-b8ed-daa28efc34a1.jpg -4464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it6744baff-da2c-4275-9e25-69b71a5b432b.jpg -4465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it7510916c-7bc4-4a2e-be23-b750ee155b0e.jpg -4466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it79ab838b-a4a1-49f6-9294-7fb6653b8183.jpg -4467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it84688ead-8eac-4736-9d79-16f7808d795e.jpg -4468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it8a54e2ae-6ce0-4f9a-8e95-fc5bc11eb788.jpg -4469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it8a98fb49-b472-4ca3-b417-59bd8ee60694.jpg -4470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it8f560e0a-fc4d-41cf-9eed-67249cf9f915.jpg -4471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it8f97a727-c331-477e-b596-91252a3d8ab8.jpg -4472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it96353d42-8c97-4da7-91d5-652fd3e3e563.jpg -4473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it96948101-2417-4e92-8214-d24a7f8fe093.jpg -4474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it998fc482-4af1-43d5-bb5b-844cd06c43bd.jpg -4475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_it9f93c0e4-2d86-403e-8e7a-6fcce116047b.jpg -4476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ita01aaeb3-80dc-4f21-bef7-86abd2e59fde.jpg -4477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ita168a702-1b95-4516-aa9c-5ce08ad325c2.jpg -4478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ita3e090d0-a555-4494-9f63-3c63916d75dd.jpg -4479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ita716a7a1-a0c5-4477-9776-6f87cb5493e3.jpg -4480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ita830b7fd-ce53-4834-ba4c-0b0c0efd899f.jpg -4481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ita8da8e61-4eb2-4ed9-ba06-f3c2819f3664.jpg -4482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ita92e46eb-2df6-4acc-a772-b89ec6f9bc4e.jpg -4483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itaf429819-05d1-4eba-97e1-e9056a432f51.jpg -4484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itaf7419f1-5c0c-4532-a144-7ce89be6ff73.jpg -4485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itaf7756be-49f8-47e2-9abf-72320c5bdc96.jpg -4486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itb3b783b4-ffa6-47c5-bcaf-11b10ddda74d.jpg -4487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itb56d8307-2313-4790-9742-151e568f3ba8.jpg -4488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itb732ff56-b58d-4837-80f0-75305db28d4a.jpg -4489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itba192349-7e49-414c-acdd-7ccc6fc45f1e.jpg -4490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc0d243e7-89c5-4d55-9eeb-5d0b7e91dcbf.jpg -4491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc1a4c6f8-7611-4f29-9b9a-412ccd915120.jpg -4492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc621b3c3-6402-49e5-b98e-342f1499d370.jpg -4493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc660726b-b8a7-439d-9607-9be1796252bd.jpg -4494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc8470054-deec-4004-be9e-4845ada90522.jpg -4495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc8fde76a-3aef-4db0-b7ff-4b4e797f4cfb.jpg -4496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc905af03-caa2-4456-af9a-e49b41be34cc.jpg -4497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc93c36c9-41be-4ccd-98e5-f217f2e3e136.jpg -4498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itc9f137de-4cf0-4bc4-a2c5-e2e77db62aef.jpg -4499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itcdb71533-d721-4ae4-8ec8-17b168c6fbda.jpg -4500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itd18542f4-d09a-4f2b-8ce7-b891a5c91655.jpg -4501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itd2517bc6-96cd-46bc-8790-206ea7e74b83.jpg -4502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itd3976780-e183-487c-b119-7c33e39a5320.jpg -4503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itd9467f8c-6ff5-4397-a7d5-b9f0c47e3705.jpg -4504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itdbd4e2b9-e7be-4231-bacb-489e97d1e23b.jpg -4505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ite17e4f2f-25de-4051-bb87-28b9c33ca6c1.jpg -4506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ite302c15b-587f-41fa-b45a-521947b7b07c.jpg -4507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ite3275346-d5d3-4d07-a3a1-ea5dcefbcc18.jpg -4508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ite60650a8-8c48-437a-8525-2217f24d9ef3.jpg -4509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ite659b5bb-4983-48bc-80b9-b7fc30dfcbc1.jpg -4510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ite8744623-dfd4-4a17-9749-93dfb48f09a1.jpg -4511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_ite8d6ee3c-6595-4b22-a6a9-a2b870f223f9.jpg -4512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itea3ad6cf-480d-4e71-a391-51389dbe7afd.jpg -4513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itead10037-df19-42d0-9f39-28f00eb44cd3.jpg -4514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itec06ae0f-efed-4cc8-9a58-7d649632cfdc.jpg -4515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itf0b45442-ee18-4527-ad05-3a556b8443e8.jpg -4516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itf5f2feba-388a-4b61-b017-b3c8b659628c.jpg -4517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itf92b42f1-e2e5-43a3-abbf-a81c152e8340.jpg -4518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itfc527280-3658-486b-91d7-189376f57933.jpg -4519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_cup_in_itfe85c1bb-9364-41b9-8d3f-bf2e1f39e1eb.jpg -4520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it005b28ea-4b3e-404b-81ed-5d61371874a3.jpg -4521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it008fd5c8-8249-4691-ba5a-3f9a0d186545.jpg -4522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it023c7a2c-572e-441d-a66f-c864fa333d92.jpg -4523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it03642279-0868-4485-99d1-84af3651dbe7.jpg -4524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it0c453f52-06a9-4171-ad9c-949d0336676b.jpg -4525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it117ce0b3-9efb-45b7-a111-efdd2977f1c5.jpg -4526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it11c94d6e-73b1-48e2-8d9b-7bc46be81129.jpg -4527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it1682c7b2-603f-43ca-8aea-219996508f3c.jpg -4528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it19e2f63e-1618-4038-9eb7-2d02c4dcb108.jpg -4529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it1b96c3b4-d2f5-49ed-9014-4060c0718a6a.jpg -4530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it1ef51a2a-1e83-4947-b0ed-7b867228cdc6.jpg -4531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it1fa9d638-9b8c-4932-80b2-814e1a296e97.jpg -4532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it2297b8af-6c4c-45da-90fe-37d1ecbb2d46.jpg -4533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it28639a68-4763-476d-b26f-b52aeeeebf3d.jpg -4534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it29a35205-21ea-485e-b8c8-7843a2c27b47.jpg -4535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it29ed1743-0a14-4b72-90d9-8086a3117bd0.jpg -4536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it2b07a0c2-f420-45ad-a7d2-db681bac6e46.jpg -4537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it2b6581dd-9c46-4183-9bbf-882246e1ab2f.jpg -4538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it32999f65-c696-45f4-a2ff-6550aba1450b.jpg -4539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it364b9ca0-d748-487b-9da5-23e25fdbd87d.jpg -4540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it395a8074-4fe7-4f3b-8488-d56b83ff3a60.jpg -4541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it3a77bbc4-3057-4254-b3f1-0ee9370e8bb9.jpg -4542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it3cd14e56-96f7-456d-9880-31239e9dda7e.jpg -4543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it4014a09e-c206-42b4-a53e-558c7083a70f.jpg -4544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it41dbaa1c-688d-4ee6-856a-c17768f1bacf.jpg -4545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it4800cf2c-577a-439e-912e-a93e1fb89c84.jpg -4546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it491b0f1c-425f-40a9-a612-3cf8b4c5e117.jpg -4547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it4d0c11ac-18e6-4d23-a46c-60e2da16004f.jpg -4548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it52776694-ef92-45a4-a17f-401cc035a7b2.jpg -4549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it54aae793-92f1-4b4e-ae17-ce5e01384515.jpg -4550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it555b747d-2edd-4210-a119-8ff680e07618.jpg -4551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it56f48ded-b293-491f-a8cc-1e65a977e4e8.jpg -4552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it5c28aa45-ee50-4e72-a11e-9927a33b3f72.jpg -4553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it5c6c58e9-1c18-4ebc-8747-a50cc97a67a2.jpg -4554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it5cf389b6-909d-4da8-a4b2-668efd8b6400.jpg -4555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it67c69e99-7609-47cd-94fe-4509e0eadea2.jpg -4556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it6a70edf6-e6b1-419a-beb6-4b79934f235f.jpg -4557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it6bb22f39-4bfc-439c-b1c1-367730f1c079.jpg -4558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it6c224d58-749b-4e99-9e94-73984faeffaa.jpg -4559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it6db41d3a-bc2f-4f7e-96b9-a72186482920.jpg -4560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it6ea2616f-2e8e-4b1d-aa03-cafbf15ba0f8.jpg -4561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it714f94ca-af07-4fc0-b7ff-582c6f4bade0.jpg -4562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it772a7cee-c319-4dd7-923d-91f3d106e677.jpg -4563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it7953998e-b1c5-4883-82a5-e2722df189e1.jpg -4564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it7c9d8247-6c92-4e94-93a7-4f40109593ae.jpg -4565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it7d386a2d-bcd7-477c-a84d-78181aad516e.jpg -4566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it83774f60-edde-467b-a850-8da84573942a.jpg -4567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it84329be8-c65d-4acb-ad12-8797ed154827.jpg -4568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it8a594d2b-b2f7-4995-bb87-bd10582a1cf9.jpg -4569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it8afe607d-4e5f-41a7-814f-b804a4d687c9.jpg -4570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it8f296c09-b6ba-4979-a103-a0201217fe46.jpg -4571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it93accbdf-9f8c-40de-8482-d5e5cade4108.jpg -4572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it93d7c793-ac55-41ad-803a-dde1bdab8979.jpg -4573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it93fa6ea0-f58c-49fb-b59f-8f5cbb6d4312.jpg -4574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it94294227-3b22-4593-8b2e-9b6c4a2ebce1.jpg -4575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it97039f99-dfe1-40f1-9a94-756d10ccec3b.jpg -4576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it98d7fb31-0395-404b-a7f0-25440535fd42.jpg -4577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it9a6fe0f8-2a0f-470a-bc58-7d53ff541bfd.jpg -4578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_it9c1b20ac-fabc-4f93-8fbe-00960dc27bef.jpg -4579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ita00377bc-4a6d-4392-a889-ba1b271ca7b4.jpg -4580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ita20a6e83-1630-418f-a701-08286f06ed71.jpg -4581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ita233c1a6-d287-4ad5-abaf-2f5b4849e2e5.jpg -4582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ita91e2d64-3e59-45e7-a893-ea1845800f45.jpg -4583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itaa5b1fbc-9ae1-4703-aec7-af404e66d358.jpg -4584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itaa5c4f91-72ec-4061-8547-c15cb84de94c.jpg -4585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itad55dee5-91e7-4708-a3d7-aa46af99f52a.jpg -4586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itaf081789-dc12-4bcb-9353-4b0a55820cb3.jpg -4587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itb17d02a3-518c-4d44-b8a3-d23cea5d779f.jpg -4588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itb719f3f3-e269-46b0-a6e2-768afb162da7.jpg -4589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itb7d982e6-54fd-4e12-8487-abbd574071e3.jpg -4590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itb80cdd12-4f9c-4365-8aee-bd23d2069137.jpg -4591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itb8b7bea8-29e5-415b-a473-7a790f0751cc.jpg -4592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itb9980843-8728-41aa-a0fa-67528ce81c6f.jpg -4593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itbc2af661-327f-45a1-b5d5-de838f61767d.jpg -4594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itbdaa6ada-b4f4-45c7-ad6c-0009884c0f7a.jpg -4595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itc03eb52b-3357-400a-89d6-0db2bfc4ede0.jpg -4596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itc5305b82-b433-4ee5-a649-0cc33b79c639.jpg -4597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itc5329985-8c58-4bce-9e87-c5145f44d913.jpg -4598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itcb96e800-ea9c-480e-8d82-3e82240989ce.jpg -4599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itd2468ffe-e8a9-463f-98ed-a05eb91359c0.jpg -4600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itd5df01b3-f0d2-4bda-a354-75cccab43492.jpg -4601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itd8286efb-cf9c-4387-85dc-a6a2c79d4adc.jpg -4602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itd9a48b3f-fcfe-474d-bba8-f634e3f7b76c.jpg -4603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ite05d4203-f4bf-465c-85be-f9b976878578.jpg -4604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ite35d52e7-1990-451f-a2be-fbb90cd5916f.jpg -4605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ite4e0cd0d-795b-4c29-b38b-9e16886d436f.jpg -4606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ite927e8eb-d39d-4342-bff6-8d8045d9d748.jpg -4607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_iteb01a533-d96e-45e5-b2de-4b1a7f662e53.jpg -4608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_iteb6104fc-67b0-42c0-a561-7abe4aa6c5b1.jpg -4609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_iteccf58d8-028b-45c0-8da4-00fe6fbb5184.jpg -4610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_ited93d507-b963-4543-abef-43321ecfbc9a.jpg -4611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itf1133d64-7d25-4998-a06f-6ba023245351.jpg -4612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itf1b63b96-70c8-4857-a29a-90f9bcf00d9b.jpg -4613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itf1c8eb54-9250-40ec-8c24-3c21eae8c002.jpg -4614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itf1fc75bd-b942-42f9-bcb7-e8e81d8871ae.jpg -4615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itf5e876e2-b584-45ac-88b5-992f1c85ca5f.jpg -4616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itf723c236-f4ec-42fc-816f-a1b1517e9b2f.jpg -4617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itf8c05bdc-e4d1-4e36-bfc9-7bff69cdd5d1.jpg -4618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itfc18434e-e801-4ea0-98e9-2d0d59b64982.jpg -4619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dining_table_in_itfd3d9532-6a49-4c8b-a58e-f8a1f0aa4875.jpg -4620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it008065fe-db13-4937-add8-af6512b6926a.jpg -4621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it0356b8f5-efc4-43fa-a2db-fe2536fbadb5.jpg -4622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it09c8b51f-acab-4ac2-be76-e8613c83dc6c.jpg -4623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it0ab4d2cb-187c-4862-bbe1-977b9434b174.jpg -4624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it0c24d539-4328-4ecb-8fd6-e28cf28fb330.jpg -4625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it0ca76783-5bc6-4e09-b60f-158c67e20a2c.jpg -4626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it12eee3f5-11f7-48f1-9977-e46ead4d270a.jpg -4627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it142efaf3-44ff-4d81-924b-453e7e5baa4e.jpg -4628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it161e2477-79a5-4c0d-a7b7-45141f928a5d.jpg -4629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it169715c4-f64c-4f9f-8f5b-9000c5d5eb82.jpg -4630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it19906ee9-2d9e-41df-b901-d7008d3bbadb.jpg -4631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it19dd2cb8-73b6-4a73-aa65-bfc03a0d892f.jpg -4632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it1ca5b895-a4d4-451d-a076-bfd139e49010.jpg -4633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it22d9f384-335c-429c-a84b-e74e7c4f5c82.jpg -4634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it293e6b8c-5752-4dc6-ade3-ad8fd4089b42.jpg -4635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it2b6b4f36-8cf9-4285-9f6d-21fe37694175.jpg -4636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it2cd5634d-1dd1-4324-95f7-043d3820a136.jpg -4637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it3067a9b8-85a1-4312-9281-946afcf81dc6.jpg -4638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it325c02b4-236a-4a46-adff-36868cf4b2c1.jpg -4639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it3314c400-185b-4d1b-a9f8-20003f4cb830.jpg -4640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it3747ac1d-c33f-439a-88ae-01eeec8ffa01.jpg -4641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it384f4381-defe-4765-976e-107fb6f761ed.jpg -4642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it3c1ca484-d8c0-4fb1-8e8f-99707fe61e0e.jpg -4643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it40908b98-6acd-4ddb-b8f5-9111b21e74ed.jpg -4644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it4129eb03-d2d7-4b72-b4de-9d5862716609.jpg -4645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it46c157ef-354b-46c4-9549-ef631ecd8f87.jpg -4646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it4913ce5a-8481-4f37-877b-a5a26e5f7304.jpg -4647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it4e6fbc0c-5951-4e82-a9c1-7a41d1511e28.jpg -4648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it53066cff-b840-4b98-b306-a1a665699b9f.jpg -4649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it53bb12df-9496-4b31-b179-99cbb8cd3516.jpg -4650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it583f7065-2790-41b5-8a22-3eb6887e636c.jpg -4651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it5917f616-0327-4466-85e2-5e77724e648a.jpg -4652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it5ce17aef-834b-4800-b624-075b42583082.jpg -4653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it5d7c38c6-b639-4d5d-8b3b-6cd4e8efdad8.jpg -4654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it61062102-36be-490e-9c67-620cf90e0251.jpg -4655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it619ca981-b669-407f-810f-8ef370d54398.jpg -4656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it65633ed9-5b73-4249-98e7-83cc8970c7da.jpg -4657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it689db213-4cd5-4d99-9ad2-518c687a5b57.jpg -4658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it6ee8e06c-1433-4f31-896f-1676cb139555.jpg -4659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it6febc2a9-af04-4593-96d6-8041ae044f7e.jpg -4660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it731a9095-0e41-4cfd-9480-4c79d66603ac.jpg -4661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it74b92b90-9bb1-48b4-ad87-6346eef2ae13.jpg -4662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it75535ac6-9444-413e-902d-3196ccbd6870.jpg -4663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it76321128-5c22-48d8-89d5-45c61a7e6a9c.jpg -4664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it79088d84-ffd8-4ab9-902d-133f70dcf3ba.jpg -4665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it80661600-74c7-4fef-ae98-ea7630f43c7c.jpg -4666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it814acf6f-5204-4a61-8b2f-81d15adc1afa.jpg -4667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it823f5bc0-e428-4d56-9322-c916a4b2bbfb.jpg -4668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it83d1ac05-65c2-4f10-86f4-93148a1334c1.jpg -4669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it8519d2ef-3141-461e-9933-8b01f8af6110.jpg -4670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it861a8876-c16a-41e2-8e7d-59bb54a38ac8.jpg -4671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it88bc1d03-6ff7-46b5-84a7-a29e0c907fe1.jpg -4672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it8a0483bb-6049-48fd-9d04-ad458c47380a.jpg -4673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it9355f221-4803-497b-9671-9e112b3dd95c.jpg -4674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it98093527-bd29-4e45-8138-18fab34fa6e1.jpg -4675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it98402f22-820e-41cf-a93a-9c121ce09d32.jpg -4676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it9912f912-a024-4db1-9c82-5e4733b48386.jpg -4677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_it9a2440c4-fdc1-4e75-8a7f-c39503b5a66a.jpg -4678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_ita14fd44d-0596-449d-ad3a-526f6510aaaa.jpg -4679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_ita1a81a52-2f2d-40e1-895d-343d064c3913.jpg -4680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_ita35154a6-e717-4052-be78-78d5813c27a1.jpg -4681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_ita5757222-2a23-4469-9988-449e615ebce4.jpg -4682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_ita5ac52af-4460-4887-9eac-c9740d1c0c9c.jpg -4683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itab6a1027-c515-4e92-989d-50bc3c7e1e96.jpg -4684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itad578fa9-28d9-4843-8518-b277f787fe77.jpg -4685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itad9c035d-b038-411a-a57d-d0c480d2330a.jpg -4686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itb0557f82-2fdd-456d-982b-cbe502fb4636.jpg -4687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itb4c970bb-a28c-4fd7-958a-d1884c85f6a4.jpg -4688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itb4d28049-cdae-49c4-82c7-61837795f42b.jpg -4689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itb5062453-e181-4de0-9284-c29187caa86b.jpg -4690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itb5907c5d-5bda-40df-aff6-d8498d09b3ae.jpg -4691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itb648a1ba-cd26-497d-9f0e-717b7c196a74.jpg -4692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itbded8e31-c1f6-4907-918b-10846a40f1a2.jpg -4693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itbf9e6bf0-206d-4cfa-bf50-cdda3a0917ec.jpg -4694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itbfe42f05-5765-4200-97b5-d0fd6c15727b.jpg -4695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itc042ada4-5dd9-43ce-b909-ae5fe0c2cd3e.jpg -4696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itcd31c548-f451-44e2-8425-2ac0264b3939.jpg -4697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itcdceb552-fcb0-40ab-864f-beecd118b9f3.jpg -4698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itcf687b0f-9526-489a-a19a-7a6a13d4c4b0.jpg -4699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itd45ec68c-2e0c-463e-9d2c-65176cee24aa.jpg -4700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itd55e0691-34f4-43fd-9931-beb0bb0e17d2.jpg -4701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itd610d972-5906-4e7f-8d65-e2ec151b8810.jpg -4702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itd659730f-b8de-4722-a805-e85e0f849355.jpg -4703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itd7b1bb64-a5a0-4da9-9473-5ee334091c68.jpg -4704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itd822e70c-05be-4b6d-97c1-31df73be5d07.jpg -4705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itd977d1c1-36fd-48c1-9b95-3bbf4e65fd7e.jpg -4706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itda0413dd-fde2-4e68-9b0e-3c25813c7ec8.jpg -4707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itde0cbdd3-f3bc-4428-93e9-23aab7ba3a98.jpg -4708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itde258079-f20a-4403-bfa9-e94f4deef093.jpg -4709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itdfb0fc6b-03a5-4707-b6d6-f74cbb37d331.jpg -4710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_ite528bc67-a149-4c97-9f28-5868e40cf621.jpg -4711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itf08ecf85-0d99-466e-b482-e5c2209db4fe.jpg -4712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itf2bdda82-c0b8-4ef6-8ddf-15aa83fb4d2a.jpg -4713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itf420dab1-6cc8-4043-9333-fb5ddc534aa3.jpg -4714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itf4e6e536-f8a7-429a-8f97-f75cfd3be3dd.jpg -4715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itf5ef358a-fb8f-4276-8bb5-68d9106e0ed8.jpg -4716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itf83388dc-7883-4877-a6a2-c43678fdd829.jpg -4717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itfaf49e8a-c4ea-414f-b370-de319a59c517.jpg -4718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itfc309a50-bab6-43c8-a91c-20b104bc0d51.jpg -4719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_dog_in_itff9eee07-4470-4596-8416-2ffcb2f76af7.jpg -4720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it00d8d140-a444-476a-ae21-0ed5cadb72d5.jpg -4721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it0205e1e4-e7af-4653-9f11-36d6aae5dbad.jpg -4722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it02ae1951-892c-4f1c-b592-fd3b11276bb1.jpg -4723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it0516cb92-2848-4102-a8b7-87b9b34cd718.jpg -4724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it06f6346f-37de-41ce-8515-24383f1d2e61.jpg -4725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it10009cfb-5a15-42dc-a752-8fca2ee2a359.jpg -4726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it127477f7-658d-427b-b152-18feed3144e7.jpg -4727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it12fbcd5c-b3c6-44a3-98c1-688b708b2db6.jpg -4728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it1c6f89ab-b4b1-4ed4-a19c-70eb1505d539.jpg -4729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it23b66afc-94a2-4077-a5d0-682980e30bea.jpg -4730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it261bc60b-7384-4c05-8633-e2bc1528d49a.jpg -4731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it28c0a96f-34a8-48f2-9fef-684313192ef3.jpg -4732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it294f1e12-b532-4171-bcca-da4fb857913a.jpg -4733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it2ef17d14-5edf-4314-b665-9f52db451c54.jpg -4734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it2f5f24df-d37b-4919-b554-fd874ac0c7f7.jpg -4735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it32653e49-3d1b-41f4-acde-a3d1e35b8123.jpg -4736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it3aa2bd93-4003-4b0a-8bd4-147d5ca5c956.jpg -4737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it3ad98fd1-9fda-40d0-b738-262a23d45404.jpg -4738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it3b71fc2e-68d8-4d7b-bca7-aa60b6973c97.jpg -4739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it3ce0c0e1-356c-46af-b88a-eeafce5c0d98.jpg -4740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it3e859003-10b4-4686-adf3-cf24472eab79.jpg -4741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it40982f14-bee8-4083-9d64-6206134cd03a.jpg -4742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it41233762-766d-48d6-aab2-b01c460c5c83.jpg -4743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it41f08579-5bb3-4b76-a056-863b9b2be791.jpg -4744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it41f816ad-cccc-4795-b0cf-58719e771a79.jpg -4745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it42884631-3b62-40a0-8975-872a7c32dd90.jpg -4746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it43078764-0375-4434-aecf-c0e201713e43.jpg -4747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it44992ce0-3c99-4c75-ae7c-26ccb0184fc3.jpg -4748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it4d5c2ac9-e951-4ab6-ba4c-48e859f32fa0.jpg -4749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it4fbac5f8-139e-402e-9ed1-7ab1feb6cdf2.jpg -4750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it52385a66-1460-4c7f-8cb1-6de7d0840680.jpg -4751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it52dbef4a-8ab2-4ec3-99b5-b1c15914ebb6.jpg -4752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it5470403a-e26a-41da-92c2-441350a46d42.jpg -4753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it5996ed25-9fa3-4777-a666-94cd60af2f73.jpg -4754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it5ca59af5-d564-42ef-8367-54589590dbff.jpg -4755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it5dfc6e26-0822-4348-9817-c9012ab35484.jpg -4756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it6455c4e5-b2f2-40f8-9d91-264cd084210c.jpg -4757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it71a8466d-3f8f-4654-92b9-d4dc9842eb28.jpg -4758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it71eb9f9b-d2b7-4aef-89b1-3da7a27ee8c6.jpg -4759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it72cb1bb9-b927-453a-8a4e-6ead5e2f7b98.jpg -4760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it76d1aecf-a8d5-4c1c-bd66-60f64cf3ef42.jpg -4761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it7757f88b-82e1-46f1-b040-a0c535c579ad.jpg -4762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it792cacb6-b322-43c9-a3f7-f1be8fe5c4dc.jpg -4763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it79491a1d-bba1-419c-b843-2bdc6cc3212b.jpg -4764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it7c2c58b8-cdbb-42dc-ae01-c2ec8b86ba8f.jpg -4765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it7ca7e435-b8c0-4e07-aab4-9cbdab469491.jpg -4766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it7f878d0f-d85b-47db-8f0b-da7623e327da.jpg -4767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it8027a94d-d318-41d7-b7c8-2e4e9cd0b013.jpg -4768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it809ce2ae-0cfc-456c-b5ce-0d2d8f80b4ce.jpg -4769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it83155d94-f78f-4567-b5f2-5684ab586194.jpg -4770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it835f7b73-0796-42fd-852e-9a3f89220bdb.jpg -4771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it840b28c8-62f4-4030-b0e6-75ce5986e06a.jpg -4772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it8b0951ea-e50d-426d-ba74-c7cad5c85467.jpg -4773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it8c9bf76d-0f29-4c81-8ac8-e8c2f1cab470.jpg -4774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it8ee2743a-392b-45fa-a2d4-843627c9de59.jpg -4775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it94fc2137-a34d-4690-8c6b-0c4458cdcc4f.jpg -4776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it97879770-6b59-44fd-8282-7a407d7055e1.jpg -4777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it9a65f2d1-cf31-41f9-845f-6dc42594b4db.jpg -4778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it9b4e18d0-12c9-4127-b417-e09b158da9ff.jpg -4779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it9d5d422b-65cf-4bf4-8001-c2b3029fb682.jpg -4780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it9e8cf70d-ef90-43ff-a8ed-9c98288359a3.jpg -4781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it9e9da310-c6c2-4526-abd7-db652477a053.jpg -4782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it9edba2b0-ba9c-4646-93bb-5e7d33ddcec0.jpg -4783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_it9f10da46-c3e7-4c6a-9fcc-7baacf0c820b.jpg -4784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ita301dab7-ef0d-4faf-a2dd-dd3b60c3d17b.jpg -4785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ita3870292-e947-4c17-aca3-1e72f0ad0418.jpg -4786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ita4496a09-9d33-483a-9264-3f41cb4fde20.jpg -4787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ita6953714-d3bf-468c-8603-5bf3c2b6621f.jpg -4788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ita74bae3a-0be6-441c-8cc2-4f7f97453be7.jpg -4789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ita8660ed8-07b0-4168-8e22-9827c9d2c5d6.jpg -4790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ita9aacd7c-2c80-45c7-904e-ed18ab97558f.jpg -4791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itaca49af2-6fee-4140-a6d2-8ef991ea06cc.jpg -4792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itb1812a69-4a5d-4183-a342-629834b1d5ef.jpg -4793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itb23bbf33-9da0-4c8e-b636-08eb22230c23.jpg -4794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itb242a8dd-d823-4cbe-a846-0e661be3b232.jpg -4795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itb4152c54-1697-4793-9bc6-b4cc7f7d57bb.jpg -4796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itb586bbe0-f855-47c8-a5fb-30b7afe66a92.jpg -4797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itb9f99c08-1283-42fa-baa0-b6863f54e35c.jpg -4798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itbaa5ded7-d1ad-4527-914e-d478412efa9c.jpg -4799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itbcd3cd2f-7ea8-4136-b820-98e88f51df95.jpg -4800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itc1c4f4d6-32bc-485d-955c-02b83b26dfbd.jpg -4801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itc27e914c-5ef0-4b40-954e-cca4cfd261ac.jpg -4802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itc432b0eb-8355-46a6-a6a6-41e373068e10.jpg -4803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itc559fa0b-a350-4dd0-821d-4d1f574a468f.jpg -4804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itc746cd43-8788-4053-93e1-e80527717ff4.jpg -4805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itcff872b6-f366-4da9-a63c-3e953a891cd8.jpg -4806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itd5735de2-86a1-4234-b5ff-b7e5f5d8b44a.jpg -4807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itdbf5a7af-9bd2-45f3-835c-d66dd9407119.jpg -4808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ite2282ae1-e795-4e78-9844-f72182f31854.jpg -4809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ite3ad15d5-280f-4df8-a617-3484c47fbe05.jpg -4810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ite6722f66-db7e-468e-be97-30b73fd576de.jpg -4811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_ite8cf02d8-258d-4404-819a-d7abd3490463.jpg -4812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_iteb4e4df3-d8ea-43c8-b78c-5b7bb96f2df4.jpg -4813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itecb6d3f5-49cf-43ce-9558-b67b09bb3ab3.jpg -4814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itf13a9cbd-afd6-4b62-bb7f-a7c1fdfd0276.jpg -4815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itf2ada724-c47a-4f87-b7e6-3dc455559815.jpg -4816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itf3b2870e-1f9c-4fbd-9818-078ae05d8853.jpg -4817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itf7d726d2-2e46-437b-ad59-f73acb7e4d2c.jpg -4818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itf9bee639-8639-4dcf-a844-6fa77f21bb4c.jpg -4819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_donut_in_itfa0d2b07-81a9-42cb-8f4a-c71445a34e9a.jpg -4820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it00ac70ca-1ff9-4dd0-a34d-45393ef4731e.jpg -4821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it0200e606-aac3-4d06-9a51-e395d5e009bb.jpg -4822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it0518fc87-90f4-4c32-a0b1-87c56d19ae02.jpg -4823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it0911175e-a38d-4804-9968-7deba8abf436.jpg -4824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it0c43cc42-8e90-4c46-b1c8-e84ae34ee80f.jpg -4825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it0c67a64d-caf1-438e-b2c1-2e95931c8dba.jpg -4826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it0e12865c-2351-4685-982e-853488600f11.jpg -4827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it113ba628-3745-46de-8ec3-10fe956ddacf.jpg -4828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it115d6a59-5572-46b5-bcb0-4089c2939647.jpg -4829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it14aff6a1-2a52-46a5-bc97-9af7d92170c1.jpg -4830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it14c5bb64-471e-4cc7-b6ba-4dd8cc264899.jpg -4831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it181bad28-7a3f-4a01-be63-f9e88c0bd964.jpg -4832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it189f81af-57c3-4dad-a01c-9c667c5c3c6e.jpg -4833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it1e9a444f-fc97-4c96-96c7-54c5682aedb0.jpg -4834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it2453f982-af4f-4715-91a8-f766c3b0715d.jpg -4835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it25b66137-7d9f-43a8-827a-43ad18ad2e6c.jpg -4836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it276f7c37-d54a-40d3-bd7c-bc740f48b673.jpg -4837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it27754d38-cee3-4cbf-9e9a-4312abc05cfb.jpg -4838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it2d83b582-9c21-487e-8e55-ce4bf3e7df42.jpg -4839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it2e159df8-4fff-41fc-bdd0-f58b00cba8cc.jpg -4840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it2e92ae0a-2902-42ad-a02a-600d3deac4d6.jpg -4841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it2ea19e36-83fa-4431-915c-206ccea6f2f8.jpg -4842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it2ecb47b3-1c91-471a-917b-141dbdd26899.jpg -4843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it2ff37c8b-4160-4c17-90a1-0e4ee8a34ae4.jpg -4844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it3b7e0a24-4401-425f-a6ce-3a2e53ee65ed.jpg -4845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it3dd93a2c-33a0-40b8-a42f-906f7fac1ccc.jpg -4846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it3ecee64b-67ba-4c91-b866-878c940aa90b.jpg -4847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it4030d3c2-9834-4c91-9293-4d6421e223c0.jpg -4848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it4035ba55-4187-4ea5-aae4-05c058871e9a.jpg -4849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it452e120c-d20f-431d-bc91-50e59fca552d.jpg -4850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it53803a8d-56a9-42a9-bfc4-6c270e164b74.jpg -4851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it54e64f2a-aee5-4c84-9509-23fb6c6ec063.jpg -4852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it5662fc0a-d5ee-4481-befc-be91225f8af6.jpg -4853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it56f8d49c-703e-4851-824c-4db46a098ff0.jpg -4854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it5c7908df-2498-4d59-8e5b-f7526a8a5d4a.jpg -4855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it5e48cede-aa14-4080-9489-c13b2e5684d9.jpg -4856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it620897fb-40be-461d-84ff-7f537cdfcd77.jpg -4857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it62c38240-6384-4987-831e-d184834f61e2.jpg -4858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it6430e6f0-16d9-4c57-9208-8d4f840f3f23.jpg -4859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it665b5eb9-d7e8-4537-93cb-c733f8e06369.jpg -4860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it66669f01-b246-490f-9d50-583f8812c832.jpg -4861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it6f792261-bcf5-4430-bbd5-e3d629fabd81.jpg -4862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it704971ac-0d1e-441e-9914-479c2d6f2ed8.jpg -4863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it72a5fd5a-5667-4c6a-b1d4-0fe2a700adec.jpg -4864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it746c60e5-14d7-49c4-9915-fe5aca4d9ddd.jpg -4865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it757b9966-d720-4f87-876f-a299eef0661c.jpg -4866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it75b6b45e-737b-4cc5-a11e-d2220b7d3654.jpg -4867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it77af6980-4c18-45c2-aee9-c0f1b1a5ff0a.jpg -4868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it784ebb1d-ecbf-41e3-95f8-5841bb9f81f1.jpg -4869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it7898df0a-3d9c-48ab-9a47-175c7eca04dc.jpg -4870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it7992c975-595c-489e-af11-02926bf753d2.jpg -4871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it7d4c8686-74e0-41ea-8831-824e4d705f63.jpg -4872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it7fd2d562-7a2a-4456-9fcd-79652905bcb8.jpg -4873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it88dd8ed3-4e29-431f-bab7-5fd9e6704842.jpg -4874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it8e8df850-f3bd-4576-8e4d-570fa252b526.jpg -4875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it93047ca4-5839-4919-a98f-5d2af469966a.jpg -4876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it93ba798d-3d22-49c7-9d4a-d864bf6240b9.jpg -4877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it94571622-2ac6-4b3e-8b38-373f024586d6.jpg -4878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it94fa1556-0bc6-4313-8f2a-bb9729c03063.jpg -4879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it955f164d-7a43-4b90-8a62-6f3a3b3fe1dc.jpg -4880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_it96ce20d3-d271-4e9a-a7b3-4b0c48ae6dcd.jpg -4881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ita2d8a60f-1947-4996-b5e9-69c4300dca0c.jpg -4882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ita4715715-31f7-4d02-973a-cba3e1501b72.jpg -4883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ita7e10b80-ccf4-4230-9c6d-1ecab7d87631.jpg -4884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ita96cdd7e-bdea-4141-98d0-d6c58c3d4ac3.jpg -4885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itaafb517a-fb97-4f94-9d0e-2f65c5e7dcee.jpg -4886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itb188d7ac-7406-4408-838c-2ac095b6646f.jpg -4887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itb1eb1de4-8e39-4969-9e63-13bfd3ff6d21.jpg -4888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itb2b9d5c9-2bd1-413a-b83b-0a2eccb1446f.jpg -4889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itb70c80c5-eb8a-4074-ba93-85a7de1e7c64.jpg -4890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itb833129b-2f83-436c-b0f1-434a50fc6238.jpg -4891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itbad80f23-f080-40f7-8fb8-84bda30cda25.jpg -4892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itbb5f6f20-5c98-45c9-a4d3-a62d1d6e1610.jpg -4893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itbfac18f1-a093-4b08-bd4e-0ddf641c9ffa.jpg -4894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itc0b76a52-6489-4633-b224-39a6f1ff1444.jpg -4895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itc7de08e0-10ed-4f7d-a45a-9d436f37418f.jpg -4896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itc8cf610a-2fb1-4871-8401-e38817a76872.jpg -4897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itc9de983c-aa1d-45bd-a3f3-686aada5d93d.jpg -4898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itca3e1612-2926-418c-8680-506c51828030.jpg -4899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itcb3137d9-1d39-4063-8c1a-b3974e9b9519.jpg -4900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itcc335939-ce60-49ab-aeb1-3b51d7042bd0.jpg -4901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itcdbcff14-9fb9-46a8-a1e2-7342dc416648.jpg -4902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itcea960c0-f82e-4e32-baed-46ff1e4dd3ca.jpg -4903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itcf66dc94-3066-42cc-ad22-e2f37c51ec72.jpg -4904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itd1af641c-9005-4f06-9b56-30bf7c577069.jpg -4905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itd1e9142a-e1c7-4c7f-8372-aa31d5515057.jpg -4906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ite20934b6-01ce-4ac6-9325-f753c3e410f5.jpg -4907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ite2bcfaeb-7c85-4d3b-b575-ae992bb20ce9.jpg -4908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ite35b79d4-9d6c-43af-bb17-c6efef004e02.jpg -4909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ite4461666-f65b-4cd0-b5ca-be4dff6f61f0.jpg -4910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ite4c70542-346c-4991-bd4b-e1504e69c05c.jpg -4911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ite52ec34e-eaa5-4a44-88e3-da8d4de10daf.jpg -4912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ite6dc8a4f-9677-485a-82c6-ca603fdf7a15.jpg -4913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_ite835292d-de27-4926-9609-d3fa7bc84a1c.jpg -4914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_iteb99e0f2-3611-4089-b2f3-1fb2b007c485.jpg -4915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itf03674a3-bb3e-497e-94d1-720cf594efaf.jpg -4916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itf2821f29-8004-4f9e-a9ef-aab6597bfcc2.jpg -4917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itf9428ce1-4b0a-4565-b719-483f7d152800.jpg -4918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itfd718d61-8d9b-433f-86b5-2635f04eb587.jpg -4919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_elephant_in_itfdd10b46-2ce4-46d1-99f9-b5d3871bf0c0.jpg -4920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it003369f4-cfdb-43ec-9a7e-8b5fcefd8069.jpg -4921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it00590a9f-b42d-4e29-8aff-a4dffa40383c.jpg -4922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it06f891d3-c7e1-41cf-bafa-ad72f99ca3c7.jpg -4923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it08cc67c9-e617-4ed1-b56a-ef09e834328c.jpg -4924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it0ab8a559-39a2-47c5-b654-131aeecf1e0c.jpg -4925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it0e8248e5-9c4b-410c-94a6-cec655f2142f.jpg -4926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it0ea4bcd8-1abc-4b3b-9eb6-a99925546203.jpg -4927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it105175e0-00ab-47ea-b0fc-a5e05e43478a.jpg -4928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it13169319-0262-46ef-a027-8e530cd1006c.jpg -4929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it17d73638-358c-4ddc-91c0-c20483af14de.jpg -4930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it1a83b0f6-0b7a-4bf7-b4c5-4a06ad4ae9b3.jpg -4931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it1da62b13-81f5-4f3f-aa74-e018372aebc5.jpg -4932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it21aeab52-bf5b-4e4f-8380-c1c395ceb293.jpg -4933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it22989426-4e95-4898-ba95-7f188f296c60.jpg -4934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it22c2f101-3624-4cba-9848-cfb47b1815e2.jpg -4935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it277a9917-3417-4f4a-93aa-28a88c71c9c0.jpg -4936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it2a03cf18-9b32-4995-bb3c-ced43476c08d.jpg -4937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it2fa289fc-cd9c-4d34-84b0-9b98f68060ab.jpg -4938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it35f10b01-97d7-4739-b32a-20555c834dff.jpg -4939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it3b313747-e668-4a6a-ac41-a7f224808e3e.jpg -4940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it3c8e9181-d5e9-43e9-8b7a-480f2da6de38.jpg -4941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it451d77a5-8521-4bbc-9331-c36e1c2eba5d.jpg -4942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it480e0855-a3d2-46d1-9dbd-60b51fef1cef.jpg -4943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it484e74da-5768-4c68-98bc-023d41bb7301.jpg -4944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it49f46290-6c43-4b8d-ad4b-3fccb58a0a58.jpg -4945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it4d57e08e-f864-4569-acce-6888b1fd88d6.jpg -4946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it502d60b4-53a6-42d2-9936-c9bb6be64183.jpg -4947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it50380716-429f-4318-a52d-c6dfb40b680d.jpg -4948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it50a5dbad-7339-476d-bad2-4f6aaca1cd6e.jpg -4949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it51276b26-4aed-4f20-85b7-cd98c5d553d7.jpg -4950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it52518e45-df99-47ca-b457-0adbc4148307.jpg -4951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it57655416-c96c-4d6a-b3d2-fefae6d4ed7a.jpg -4952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it57df3017-2807-4332-986b-1e432fd4746f.jpg -4953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it5a7c6e7a-70b4-410a-883d-72f3e1b02278.jpg -4954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it5da9ee82-ea4a-434b-bafa-10908892fa4e.jpg -4955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it603e92dc-91d7-41e1-988b-ab14b1608be0.jpg -4956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it6052bc07-fdbb-4c56-a5bb-47dafce58421.jpg -4957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it675db7f5-8719-4dd3-9fff-63bbb8ea360d.jpg -4958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it676af3b8-a598-438c-8473-cd13f766a4c9.jpg -4959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it69a85964-c043-44e8-a4f2-0aadfaf9ecf0.jpg -4960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it6b39b49c-2b82-494d-ac9d-011e3ebc1dae.jpg -4961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it78a58bac-2b92-4093-9273-0ddd5dd44037.jpg -4962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it7f712e34-628c-4476-b7e5-9b4c72402bf4.jpg -4963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it80d6d714-c110-4199-823c-9d95c2d6bec9.jpg -4964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it81f2fc57-e6fe-4967-9e89-76477d7f6add.jpg -4965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it82b1ac04-4bfe-4bc0-a7f7-474cc24d757b.jpg -4966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it856a7a2d-6738-412f-b343-b7286ae03024.jpg -4967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it868da011-e304-42f2-ae78-82e2247e907d.jpg -4968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it8812b9cc-16b0-40cd-bef6-d55cd6244be9.jpg -4969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it899da886-312e-4b8e-b3aa-9f2424b19bc1.jpg -4970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it8e935cb5-4e24-48e7-b6d6-78176de7c390.jpg -4971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it8e9fc969-3df4-4c3d-8ac9-f58a9352f156.jpg -4972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it90d64abd-2a80-4b69-b0cd-78788f40e426.jpg -4973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it95d0735a-25a3-4673-bdd7-15e82a7f81e5.jpg -4974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it96b94743-cb25-482a-a6c7-eed5b75d9906.jpg -4975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it987b937f-eb15-41cb-9f33-82e10afe6149.jpg -4976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it9a53f0b7-7d4d-4665-bb6d-dd4dd6d3e566.jpg -4977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it9a674861-c61e-46c6-bef2-3a20746268e8.jpg -4978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it9f52c1ac-c0c7-4dfa-a2bb-f5500bc7f122.jpg -4979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_it9fa10a7c-ced0-4867-8ebf-9598e993e8c5.jpg -4980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ita163061b-7e6e-44fa-ae51-7e7297628037.jpg -4981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ita325b5af-1cbc-466f-b9c0-a4fe0dab2523.jpg -4982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ita335c0fc-03f3-460f-8d1f-e22976e0dcf0.jpg -4983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ita3fd4219-4775-4853-974d-340dec4bef6e.jpg -4984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ita5ccb2a8-14a0-444b-8123-17d8fe6a3eda.jpg -4985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ita7d8873e-1053-4933-8677-2ece2f261583.jpg -4986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itb3db4af0-e043-4098-9aff-d6d943932ee7.jpg -4987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itb687a536-7e80-4f2f-86aa-221e83813ce3.jpg -4988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itbeec7481-f2a3-4d70-ba87-08130379fc7b.jpg -4989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itc0505712-70b0-4ee0-9c4c-219c10a92c01.jpg -4990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itc0923105-d2d2-436b-b245-576e872343b7.jpg -4991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itc24f92da-4a6c-4b83-af20-cf1c9b04c281.jpg -4992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itc4a00aed-bc8d-4fb4-9f6b-ae0b68675b26.jpg -4993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itc6216854-2c95-4786-9b01-fcf852b882a3.jpg -4994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itc7d81802-3257-416e-b79c-481b5bf9c72a.jpg -4995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itcb1ca521-f0e4-46c2-9693-04afc9e4b2d8.jpg -4996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itcb2c8e1e-9987-478d-b429-b0983377dc6d.jpg -4997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itce3e11ad-95c0-4ba9-b135-ebe2c26a83fc.jpg -4998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itce73f51a-5ddc-45af-ab67-2b688d3a46c1.jpg -4999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itd3418406-f993-4595-9ab6-7162215d6e2f.jpg -5000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itd5fb6763-4eb5-4c24-ad95-0539ebf2dcef.jpg -5001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itd8bc7f5e-8c4b-4786-b70b-675dea8e4f82.jpg -5002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itda69bda2-ed94-48ae-b6bd-8923b4828d8d.jpg -5003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itda91e996-70d1-46d0-bac9-ea4d81430aaa.jpg -5004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itdcfa1eeb-f2d6-4e39-a737-d57425ce98e6.jpg -5005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ite07d3aff-194c-4645-a774-0fafc084046a.jpg -5006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ite1e50674-3031-460c-98e9-16f058e06fdc.jpg -5007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_ite6e6ed0d-3f7d-4d81-abcd-ca36b139ba8b.jpg -5008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_iteb52a2eb-4bf8-45b9-9468-f2f9a3f68a46.jpg -5009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_iteeb4d09e-fea8-4476-989a-28c7ce2a21a7.jpg -5010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itefcc9e20-ebd9-47ad-a286-50c73d0b1c55.jpg -5011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itf1e6e0e2-53cf-4ea2-9935-81f71107f32e.jpg -5012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itf1f2d87d-a19c-4ace-98fe-17aa9e6645eb.jpg -5013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itf25ef37b-8658-481b-8e37-8a8d52f5538c.jpg -5014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itf291f888-8707-45d8-9dda-dc42fb198deb.jpg -5015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itf7f9c4c1-56d1-4171-92ae-62965774235e.jpg -5016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itf8182f8a-8f1c-4aac-9822-ec7629acaf85.jpg -5017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itf8cdc331-b807-4b94-ae12-f428e4de2e61.jpg -5018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itfa4bd0c0-ba5c-45fe-98d6-383b265a5dfa.jpg -5019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fire_hydrant_in_itfd4c2cf8-ed40-4ce8-8c2c-1cf87e39ac3f.jpg -5020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it01269ae2-5138-4167-9f95-52a817da3308.jpg -5021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it05832f36-462e-4295-8c47-2fb351ba254e.jpg -5022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it0767e462-e000-4003-b80d-620b4679b341.jpg -5023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it0c6884be-1408-43c9-ad17-db971dffed6b.jpg -5024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it119016a1-10ce-41bc-b5e8-2901a14cc1f2.jpg -5025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it15302013-3e36-4834-81f6-b15ff95db7aa.jpg -5026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it15f6898d-5d2b-44d6-baf1-e3244fb8415a.jpg -5027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it1d914270-4ecd-4e29-b5eb-2c6b765ce3b9.jpg -5028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it1f2e0529-8115-4597-b985-36f6bb8918ce.jpg -5029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it204e3e02-c565-4d25-a7ed-9c4c9e69a78e.jpg -5030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it21614bbf-a1fd-4557-951d-2e9d9fd09435.jpg -5031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it260a00b7-4bcf-4c6b-a20c-298076abc67e.jpg -5032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it26738bb8-2324-4946-9b20-9a84420c4d4d.jpg -5033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it27d3f22e-ed79-42cb-a40d-872ed118452a.jpg -5034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it2ecacfeb-4f98-4a8b-a276-4e2186e13fde.jpg -5035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it323e3b9e-747f-4445-9363-d86ec259fadd.jpg -5036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it37fe3960-54b8-4595-8b50-48b58579d0e8.jpg -5037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it3832bd90-e347-423f-ba39-02f6b48bb751.jpg -5038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it3cbcba7e-7e9d-4008-ad78-7d463aa489ea.jpg -5039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it3eadaa39-ab25-4f80-a0aa-9f741bb37dae.jpg -5040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it414ec219-87ac-4bbb-a9a0-e8857326b23e.jpg -5041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it41b13ea3-cd12-447c-90ad-ffedd231e821.jpg -5042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it4417e97e-576e-44c2-a3ab-9506e7b7a543.jpg -5043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it4866225a-3dee-4309-a893-854410ec2fed.jpg -5044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it49e97dc2-513f-4a13-a8ba-201cd987b03d.jpg -5045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it4a63f32a-1869-4c9e-883c-332b41d810b6.jpg -5046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it4b79fcf8-0120-4acb-bc7f-5206b90b7aa4.jpg -5047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it4bc987d1-344a-41f6-89f0-92756d089467.jpg -5048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it5091cbe7-234f-449e-9d8e-b68c44fe16be.jpg -5049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it53f10d08-2343-4942-84fc-899f24cb462d.jpg -5050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it55017503-07e1-4816-b801-6edb39e5603d.jpg -5051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it57952612-592c-4fb0-9a05-543ba673f123.jpg -5052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it57b9d37b-87ba-44e7-ae11-99ad4c2343f9.jpg -5053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it59c636ea-012f-42bd-8a49-3c9f86af2364.jpg -5054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it5ba18010-83f5-463d-b27c-3e21767177cf.jpg -5055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it5bb7024f-b903-40e1-91a0-00577712a4ff.jpg -5056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it5bd7b61e-6f95-42e7-b29f-9982940a5194.jpg -5057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it5dce734e-4bc5-4f37-a7bb-d45e0aeb409c.jpg -5058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it5f4ff9ad-5824-4def-be2c-d90d6aac56e1.jpg -5059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it5f9e89f5-5e42-4d11-8f92-50facee85709.jpg -5060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it60c6bf82-107b-4b77-959b-29a40f785adf.jpg -5061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it61c1d235-41c2-4013-aecb-00b20617fbbd.jpg -5062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it63f903f3-0ecd-41bf-8b0c-4cbed9bf357a.jpg -5063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it6a48cb72-b6f0-43f4-a4e8-d6d5fd7729dd.jpg -5064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it77c5100e-cb44-462d-9744-4626fac4685d.jpg -5065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it7aaff8a1-17e7-490e-a0b8-8db36d80d94c.jpg -5066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it7c025df0-03fd-4954-8e3e-cd58bb576b10.jpg -5067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it807dbcce-ee12-4d65-a6dc-aa58b60c81f9.jpg -5068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it81fd79bd-3bfd-4097-baf6-23a0450459d1.jpg -5069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it856054e6-c762-4cd2-b36d-5ac06f9f2b72.jpg -5070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it85696643-9f8f-4ca2-a881-40055ab698ab.jpg -5071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it8ae2df7b-63d8-4762-8d27-6e21475d1173.jpg -5072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it91cfb9d5-2ae0-436f-be41-aed7554407d5.jpg -5073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it940ab6a1-e94e-4624-96e3-6c38a62c3b02.jpg -5074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it9838e07e-d896-4d2d-846e-f20c7efc59f3.jpg -5075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it98df6574-f6c6-49d7-94b7-6f583b4db4d0.jpg -5076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it9f447012-f4cc-436a-a792-061a12d7375e.jpg -5077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_it9f80d745-5af5-4bbf-b923-7880fc378367.jpg -5078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ita0790fcf-0737-49ab-95fd-12435e306af3.jpg -5079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ita18e53ce-0191-4375-80cc-0fbc43dcc8da.jpg -5080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ita27f9c77-e549-44c0-8971-cf3057f16621.jpg -5081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ita4425da3-8e0b-4c2d-bf0e-34af71615657.jpg -5082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ita5557ed1-db2e-4019-a378-b4ec569f3074.jpg -5083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ita74ebc35-9024-426a-925d-c8213a69db3f.jpg -5084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ita8142f9b-1077-4381-a6ff-634632ebb486.jpg -5085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ita90c47d9-88dc-468f-ae85-6415cb483e02.jpg -5086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itacd961b4-1720-42f8-966b-b1ce098521c6.jpg -5087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itae031dc4-cbc4-4e44-ae70-a5f9ad7c70e4.jpg -5088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itafbdbb38-65f5-4071-a6d5-fca6120c6711.jpg -5089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itb391ce3b-3a46-4d5b-972e-345c8cdd0538.jpg -5090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itbe8176b0-7e38-4a1e-8c7a-4e3bcec9b5ac.jpg -5091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itc04de081-2d5b-4cf0-9b14-d01b1ec91bcc.jpg -5092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itc0ddc54d-8fc9-4fd7-b074-301f0ca2d072.jpg -5093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itc60ff6d7-d593-4c63-be6c-0f282a02c40b.jpg -5094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itcc1e13a8-d9ef-4a2d-b725-b051de5fece6.jpg -5095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itccfe7406-61db-4fcf-abf3-2ea367a34b85.jpg -5096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itd221d677-5ec2-4f7a-80a4-172718de6aca.jpg -5097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itd39b3a81-278b-4c54-919d-68f06592f5f8.jpg -5098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itd4ed62cd-77cc-4059-b381-5136966abcaf.jpg -5099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itdac93654-1cd1-4a07-8619-ea6a4bbb8e60.jpg -5100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itdada831c-9c22-499d-8476-88bb653217b2.jpg -5101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itdb5b92fd-42a5-4b76-b16e-22098a1276e3.jpg -5102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itdb9a7e90-a465-404b-b2c1-62e7413aa006.jpg -5103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itdfa426ff-576b-498c-b033-5d038db9a5d4.jpg -5104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ite341cb6b-b781-4b85-9d77-51dba701037f.jpg -5105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ite3810dcd-0334-438f-b63c-fc16693cbc51.jpg -5106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ite3e128a0-60f4-4b80-b12a-72bc24376425.jpg -5107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ite696bbb1-7b79-4ce3-88d0-c4a3c22b4d31.jpg -5108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ite75b8c98-e2e8-49c8-8679-5bb78885c755.jpg -5109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ite83c14f6-6234-49a9-a626-17caf8ba7853.jpg -5110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itea0bb2f8-4d6c-4c8d-919d-5a8775cbe316.jpg -5111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_ited8c5953-d98f-4064-a221-30ea26ebee1a.jpg -5112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itee68844e-0461-4dc6-88d0-ea8f13e6356d.jpg -5113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_iteed52d74-42ad-49ca-af3d-5f6203199018.jpg -5114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itf1f0b3fd-a91f-4ad0-b6db-fdcbaf9835cc.jpg -5115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itf35f442c-857c-4bc7-bc1d-390a202551c6.jpg -5116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itf36d4f4d-a42c-4f3e-9474-d23ad5c5f3d2.jpg -5117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itfa7e2b2a-4981-4380-bda3-0c93f0bfe582.jpg -5118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itfc65a7cf-686d-46c1-9be1-ab652032109c.jpg -5119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_fork_in_itfd6e0b99-530b-48cf-b04c-d61d1c525b3d.jpg -5120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it00de3e66-5895-4cc5-bfca-54d57e486b66.jpg -5121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it02d1374d-7415-4aee-b5b7-9b4c8862ac7a.jpg -5122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it057d0323-019f-4594-b6b3-fb4af1596ca5.jpg -5123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it05ab3c99-fbfd-44f7-bca8-769697f67652.jpg -5124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it09b422c2-c4d6-43cb-881c-9ec5a0925175.jpg -5125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it0cace7cf-c825-4dc8-94bd-27b5f5cdd657.jpg -5126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it0e390896-f600-4654-b9b3-0a241749ea4e.jpg -5127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it108ffb68-6bfc-4c56-8a1a-bc461d850604.jpg -5128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it156555b2-2222-4ab6-b63b-b08d726050f7.jpg -5129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it1636801b-5250-443b-b99c-81b7b7b8205c.jpg -5130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it1a3e31fc-72a2-4e43-ae05-04cb91f6941b.jpg -5131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it1b2449e2-5db2-4b30-8fb2-81c0e018fb35.jpg -5132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it1f3052dd-c021-45e9-a1b4-b130d4709d3a.jpg -5133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it21930321-269c-48c0-a79a-5625553932d0.jpg -5134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it25cc7034-5e8b-41ec-b461-2bed76b2d348.jpg -5135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it2bd31988-65ce-452c-a594-daa4c39532ef.jpg -5136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it3074a745-aec1-4df9-8d54-7c5b713caa8a.jpg -5137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it31579b72-1da1-4a07-bfbe-724333f1a7fc.jpg -5138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it327ba1a2-d080-4a56-85dc-9901bed35a7d.jpg -5139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it33b7e47b-9d70-4af3-a6a2-a6ff0ca7db3c.jpg -5140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it35a2f095-6027-4587-9cc2-707490be306b.jpg -5141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it374c6b93-2286-4c39-9ea0-0cb9ea14b3b6.jpg -5142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it384ba22f-ed7f-41b4-830f-d6409843bb76.jpg -5143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it3f98263f-067b-48f9-9ee6-6c4a8e5be042.jpg -5144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it41db8eca-fafc-4032-b741-fd9c3515c715.jpg -5145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it44283662-b28d-474e-9c1a-092138523238.jpg -5146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it45fce3eb-76d4-4322-9c6b-7e193cf1bb96.jpg -5147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it4741c9c1-b323-47a2-b005-0e461ac1e39c.jpg -5148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it4a927a95-b68e-49cb-8a6d-68e9ad9c7ec9.jpg -5149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it52a3919f-02ef-4c01-9774-389c04e34882.jpg -5150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it55ccde97-7985-42d3-95f7-aedaf9ef7621.jpg -5151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it5b20e452-b703-48d5-8ab9-c1cb550734ea.jpg -5152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it5cc80335-270b-4c92-bf81-cfcd2e5ace08.jpg -5153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it5dd23056-0c77-4801-afd6-d2ab6eddc28d.jpg -5154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it5ffb82f8-8ed9-42bf-ad4f-90d2265b7144.jpg -5155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it61621aef-6213-4da6-b191-4768c7ac6e4f.jpg -5156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it64ff5e78-be03-4ab3-8afa-38abbbd62391.jpg -5157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it67d5bd32-773c-4ed2-aca4-5278fad7ea36.jpg -5158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it68abf1a1-1ae7-4f08-87e9-82d3f17582f4.jpg -5159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it6a882e9f-b4ae-410e-bb42-2add42c296fa.jpg -5160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it70f8c2c5-2edb-4aef-a384-a4b40be32586.jpg -5161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it71919b8f-85cc-4935-ba13-1ea7821f107a.jpg -5162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it735a8b9a-e74c-411f-8a64-862e2dbb36d2.jpg -5163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it76bc1285-c75f-4f0b-b451-a38471bff7e3.jpg -5164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it79b29c02-8932-456f-8e84-a20172ac8616.jpg -5165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it86856eca-710b-475a-bd07-2957469aca51.jpg -5166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it875ef6a9-3aae-45a5-a551-f4935f1c199e.jpg -5167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it87d1f957-dffb-4740-9664-78105bc28480.jpg -5168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it87e8dd1c-b279-44c1-9731-4f75338eb402.jpg -5169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it89cb9f5f-b6d3-49cd-bfa9-8c74d05f0fd5.jpg -5170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it8a170d3d-2e9b-4925-9523-3da68a09bb87.jpg -5171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it8d66216b-6e53-4735-9e75-27ae93fad124.jpg -5172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it8fa75b0e-0902-4c8e-b353-af0853d53190.jpg -5173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it8fed602b-c258-455a-ac5e-7a40d2ba254e.jpg -5174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it96e67099-6578-4064-a041-00fdd2f77305.jpg -5175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it9b6a810c-eaf0-4b28-b5ba-7d7695d08a89.jpg -5176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it9b84e27f-44b9-48ce-ac13-44ed795ae5a5.jpg -5177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_it9d36bb5c-494f-44a7-9cbf-9b668094a703.jpg -5178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_ita0aba09b-9269-4a6d-8b79-e8381659caf3.jpg -5179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_ita4e741b6-3f2a-435f-b2aa-61d17e3a10ae.jpg -5180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_ita839a98a-ffcd-4dc6-9d2b-e4a2a43fe9b9.jpg -5181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_ita89b9614-7e90-4fff-9b8d-4df70925b1e4.jpg -5182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_ita8a0140c-5da7-40fe-b44b-81e4a4d71b51.jpg -5183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_ita9d8f0f1-fbca-4596-adc9-4f8b28e317cc.jpg -5184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itabd4ad97-3755-44d1-a798-b8e89bb44612.jpg -5185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itacb63b49-e397-4f22-b169-fc9e2ef1d9b6.jpg -5186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itad0bc465-d68e-4b84-b1eb-c07cf9f14cc4.jpg -5187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itae538816-f4e0-46d3-83b9-59edb0689487.jpg -5188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itb1a75676-965b-4ca2-8d9b-32bfc2df5376.jpg -5189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itb6069ac3-d6bf-4876-8af0-b63aac5b545f.jpg -5190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itb6950658-c502-4f09-9326-a5a4867cbaaa.jpg -5191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itb889ec84-9623-4361-b889-f840ee3b9226.jpg -5192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itb8e2ed6e-95a7-4252-8a08-6b348290b9e8.jpg -5193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itbb2631c5-b681-4c92-9d54-2de53df1f746.jpg -5194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itbc8e04b6-8d63-4ea9-9b4a-bec3b131c8fe.jpg -5195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itbc98f92a-f1e3-4479-9b7d-028f9ed76480.jpg -5196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itbd069b0f-e0aa-4dbf-a358-3b80bc0c6777.jpg -5197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itbd59fdf7-8fd4-4eec-9790-d377b2b40f1a.jpg -5198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itbf497ea2-f647-41df-b3e5-481f34b9cb79.jpg -5199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itc13260b5-caed-4e72-a684-1157a0f1c97c.jpg -5200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itc18ae4df-dd19-4e09-b188-3bdf6064bb67.jpg -5201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itc59d8fe0-5d2e-4bea-b494-f31e7bc2348f.jpg -5202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itc79c0b81-0e14-40c2-866f-ba6e68f917d1.jpg -5203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itc80b77b0-054d-4b03-9340-3a15e4c14c8a.jpg -5204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itd1d6bd6e-dcb4-44a5-acea-6f1860421375.jpg -5205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itd24f28b6-4676-4330-b793-504e000a7430.jpg -5206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itd48dbb9f-5298-4c12-8599-2f5ffa64f453.jpg -5207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itd535fa64-b86b-462d-a30c-a551c16cbcaa.jpg -5208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itd6448c47-781a-4d5e-ad7e-b77b7d3c8d79.jpg -5209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itd98d7135-a763-4460-b498-2e37984d593c.jpg -5210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itdc438baf-5060-4444-8e32-02eb1a90d94b.jpg -5211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itdcb172f3-1afa-4b03-b022-0263bf23e29b.jpg -5212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itde295ecf-af7b-4a9e-bdbf-2a862cd9bb2b.jpg -5213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itdfde97cf-020d-4402-9760-12155a6ad7f1.jpg -5214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_ite4bf9153-fba9-4718-82c5-5b32829f3214.jpg -5215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itf0972e5e-5e7b-43d7-a4b8-ae363c7417e6.jpg -5216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itf124da08-ca38-4802-b2b8-43f906d83168.jpg -5217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itf5e236c8-fd24-4a5f-822f-2acee6be74bf.jpg -5218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itf9f6398c-7fb6-4b1a-a245-d48f12c950d0.jpg -5219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_frisbee_in_itfe108d1a-8d0d-4005-a7cc-3c5a421a1e4b.jpg -5220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it0032412b-7a08-42d2-bb78-e680d7fca7cf.jpg -5221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it03d90f26-37c0-4d63-b172-e4bcaff79acb.jpg -5222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it09b951c8-e529-49db-af25-eab60630103c.jpg -5223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it0d861e03-5e49-48c9-89c1-c09de38dd898.jpg -5224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it150dd5c1-04a6-4778-9bab-f6c5c33aca6c.jpg -5225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it16232e77-0de0-4c4b-8473-d30e9539b09a.jpg -5226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it163acc7a-eeb2-4a2b-89f9-893de5f65046.jpg -5227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it16e6b7d4-9b3f-4d5a-8aea-170fe364eb4b.jpg -5228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it1b6a83aa-7b68-4c62-a7d6-807304466baa.jpg -5229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it1ef1d4ba-6861-4d73-8364-ef2da85d9697.jpg -5230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it1f70b98f-1f75-41a9-8f87-09f92f8330f8.jpg -5231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it1fa5fe44-9a3c-4eba-b7d9-02b9e2bf4891.jpg -5232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it20977822-b680-497a-8ddf-adf7b201e8ab.jpg -5233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it20e779a3-f815-464d-ae68-3af6a624e7da.jpg -5234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it226d07c1-95b7-4b19-8b27-fb45b065a79f.jpg -5235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it23fd996d-c2e2-4552-ba19-7866e570fc67.jpg -5236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it258ad94f-e89f-498c-a43c-c2ff4bb70925.jpg -5237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it2a64d00b-eec7-46b0-a93f-721d04512771.jpg -5238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it2a7bd188-84e3-43ae-82b8-6096ced8e0d6.jpg -5239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it2aae9527-a5af-453c-8373-ad0d46888cc9.jpg -5240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it319c538f-18dd-4b40-94b1-8514c1a1c140.jpg -5241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it32c7eef2-55c1-4d7b-9205-e5077eeb67d1.jpg -5242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it32da66de-0257-43ee-9ba7-5a5643a310e4.jpg -5243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it3517fa9b-3d89-4b18-8a2d-c6af638519ea.jpg -5244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it3562b92e-cfd9-4ddc-a778-35e52f92c9ab.jpg -5245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it38c38b37-bc5c-4fd0-9a9f-9c441ca72fc6.jpg -5246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it3968f965-4604-4aa1-b5f9-4163aec98f3e.jpg -5247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it4010190b-adb0-451d-b39b-d8e8c073c23c.jpg -5248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it40619d37-055f-4161-b7b9-a1a749da36a4.jpg -5249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it44890916-9d9f-4a5d-9372-1ce18205d9d2.jpg -5250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it4574981d-4db7-4b40-bc01-9c2d7176bfc1.jpg -5251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it462d4b85-9c1c-4322-ba2f-bff9fab08ee5.jpg -5252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it479d7169-59ec-4b67-85c5-625a653f862e.jpg -5253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it495d8b6a-206b-4921-ac34-2b1f500d15e6.jpg -5254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it4c9895a6-38e5-4dcd-8e57-60404c90666e.jpg -5255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it4e86093f-b0f8-45eb-8eb4-b7e5843f6873.jpg -5256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it4fd102f3-c7ce-4991-9f8d-6c0dea949fa8.jpg -5257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it5293a416-0bda-4582-8fa9-367b39767284.jpg -5258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it541c31fe-ebd0-4808-950a-d40f2f177dae.jpg -5259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it55c4c512-7efc-4e42-ba92-29312a5b79f1.jpg -5260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it56e9d2b8-c504-471b-890c-ad30be709321.jpg -5261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it59bdea87-09a4-4a0f-a24b-1ce83509b57b.jpg -5262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it63ac3dc8-e6a0-49db-a4e4-0b139ae51eb1.jpg -5263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it63c7173c-b15b-4fe9-ac67-1daeb2eb95c2.jpg -5264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it6bea7186-e855-4a53-b1bc-0dd609b738a8.jpg -5265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it6d5665f7-0593-4e92-bd9c-4bbbd6211109.jpg -5266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it7250aae2-e81c-4eef-a658-0e18b6718535.jpg -5267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it72c064d3-b265-4540-a057-deafa2ad7adf.jpg -5268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it73e66d40-1419-4a3a-a7c5-dced207a5b6c.jpg -5269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it7a7166b7-7c60-4c4f-ac48-f08ef6128902.jpg -5270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it7cfb3568-5cbd-4476-8f8a-d74deb29cd86.jpg -5271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it7fc5f0a9-2e6c-479a-bba1-35bba94912b8.jpg -5272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it848bfc0a-a4e4-483b-a941-a48d59c80693.jpg -5273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it8669800f-6628-469a-b149-8c389886451c.jpg -5274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it868a21e4-224b-41c9-b3d4-2db0acbd22be.jpg -5275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it87bccfdd-8f1c-4ca1-ade9-bb321c90d170.jpg -5276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it8fd24249-f02b-4bf9-97ef-5fee2d5a2827.jpg -5277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it92e1f8b3-2761-42d8-8e4a-7e587fe57fd8.jpg -5278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it98824189-82a0-4bb5-bf22-1bdb4893ff54.jpg -5279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it9bbdbe1c-1164-43b6-a7e9-c28ddd5ab625.jpg -5280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it9c365608-2d25-4a80-8077-6dd94bafd084.jpg -5281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it9d4ff9c9-0e93-4a9a-ac63-8184fcbb2b9f.jpg -5282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_it9da87d92-f7c1-44da-87fd-0e9a1f199ad1.jpg -5283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_ita064fed5-e860-467b-9e5c-7067649ea695.jpg -5284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_ita27efbcc-61aa-4c25-a165-e1a165874dd0.jpg -5285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_ita47bd3f4-6e51-44ec-983a-0bd4e52ef479.jpg -5286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_ita4e3d263-af5c-461b-8432-01329e7ae2f8.jpg -5287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_ita83cf010-aa28-49ba-9aca-0d8cf216936e.jpg -5288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itab38ceb8-8c1d-41f8-9e81-674daf55f77e.jpg -5289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itac4cf32f-25c8-46e4-9ece-4bdd7315d9e0.jpg -5290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itb0de8241-0173-421a-8a30-5073d30fece0.jpg -5291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itb0f6ec38-9900-4122-ab6b-d4a35a48b567.jpg -5292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itb5e8e61a-aff4-4074-8226-3c89efd63ad2.jpg -5293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itb793987f-8def-4d49-a20d-0362d972c0a6.jpg -5294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itba9cd5c4-6bca-4758-b498-84e186a73415.jpg -5295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itbdcbc8e3-e217-41a4-8202-90d290095b61.jpg -5296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itbdd5d370-3dae-4e05-a073-50efcba4bbe5.jpg -5297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itbed03388-04fb-4aeb-beb1-f70aa0a5b499.jpg -5298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itbf23f62c-db76-4bda-946f-eedeffa4d1ac.jpg -5299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itc9b110a0-f554-4c2b-b20b-1e596fb9c7a8.jpg -5300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itcb7ad31c-782e-45f1-9cf7-019384c60270.jpg -5301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itcd8d9306-b116-4ae2-9420-1404cc27d8d4.jpg -5302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itcfcc00cf-1d13-43f6-8b6b-c03f5d462326.jpg -5303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itd08120e9-6fb5-4ef9-926c-9e29ef996c48.jpg -5304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itd3240ca4-caa4-4d19-a1a3-6f7bf20d4965.jpg -5305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itd596d76c-6cfd-4f59-aba9-cfe49e7276e2.jpg -5306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itd64e4ff0-27f3-413a-9caf-d70222612400.jpg -5307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itd7dda784-1da8-4a88-a114-b3c7f7ffd365.jpg -5308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itd7f6415b-b3ab-484b-9ce4-ec84b8fbe067.jpg -5309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itd90ecad5-ce5a-4404-81b7-b186b81c0f6e.jpg -5310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itd9ec9c9d-7558-4acc-b614-1002964d9d27.jpg -5311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itdb925d96-3f83-4c87-9392-3ac24b7e8155.jpg -5312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_ite0a7f91d-da16-41d8-9310-69c6858ce27c.jpg -5313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_ite2d5f641-7b5d-41ac-ac48-8f791df9e8da.jpg -5314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_ite6789e31-4a8a-42b9-89b2-8f69d636db8d.jpg -5315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_iteb49d265-ddbf-46ad-aa95-d2b87dfc1866.jpg -5316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_iteeb26e72-61b3-40e0-8a72-c6348731a917.jpg -5317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itef5e6dfb-36d4-4504-b222-7ebf334ceeb2.jpg -5318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itf4094195-5fcb-4536-9f51-b58c069a30b9.jpg -5319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_giraffe_in_itf7f80744-b252-465d-978e-c66e1c3fa755.jpg -5320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it0480445a-7e3b-4ed7-97dd-bf0644ba224d.jpg -5321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it05b77bed-1018-498a-9552-3f85a56a5986.jpg -5322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it062e9a03-b390-4222-8080-13b97605da8b.jpg -5323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it104414e1-c98a-4964-b3c2-849006f08115.jpg -5324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it108665e9-ddd4-400a-825d-915c232a8e2c.jpg -5325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it13299004-34f2-4781-ba0f-dd09a539f91d.jpg -5326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it158550f0-0410-4300-8a12-8a5223b8d168.jpg -5327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it16c48696-e8de-41fe-a69a-2c4cc09ccc2a.jpg -5328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it174ff388-6283-4ec5-b8e3-fe1c03524b59.jpg -5329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it18351729-4b68-4778-9e35-cc7a262f6dde.jpg -5330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it18b4c22f-d8fd-4a40-94f0-e98727f2df7e.jpg -5331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it21f9f461-ef37-4814-a352-72a24007d94f.jpg -5332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it22891407-6946-48c1-9176-f4ef018247a3.jpg -5333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it2672730d-9446-40c8-abc9-6f0993b88390.jpg -5334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it2cfa8370-6e4d-4167-8324-67a95c7f70f0.jpg -5335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it3034eeac-4739-4d90-aa4f-518525bb8c3f.jpg -5336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it30befaad-20d1-4eb3-9b08-4b60594f63b1.jpg -5337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it32818e60-6a45-466c-bb32-24acddf65aa8.jpg -5338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it3792cf49-7ce2-432c-9a3e-32f7547406dc.jpg -5339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it396d06d1-3f31-42ba-8e30-fbc529eb215d.jpg -5340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it3bc84411-a7f5-474e-b802-f75e9ba030ea.jpg -5341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it3cbf4ad1-7b13-4dcd-aca1-7a6edcb248f5.jpg -5342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it3e9e2a98-cb59-4740-a998-dbe286073207.jpg -5343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it417c0942-60d9-4543-bab9-c44e311ffae1.jpg -5344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it4726f991-48f9-4d42-979f-54fbd3619828.jpg -5345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it487dfaf3-320c-4ae7-aba2-8acdc660c167.jpg -5346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it48bbfeb4-a605-4fe0-8fa4-767018135951.jpg -5347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it4beb5743-f569-49de-8c3e-a764265ae4ea.jpg -5348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it4cd97ea7-6ea1-4fe3-8072-86d9f6863ace.jpg -5349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it4f55b862-8a4c-44e5-b65b-c7145ae86e9c.jpg -5350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it502d5bcb-60de-489b-8da3-4450b172cc22.jpg -5351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it507dd9f9-54ca-4e00-9038-746cd87b65ba.jpg -5352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it56a261ef-ce7b-4391-8365-48311c4d3135.jpg -5353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it5732f268-64b0-41a6-8611-8418b1dfd446.jpg -5354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it5992b4f4-41d1-4164-9432-280fc62c3687.jpg -5355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it5de0ce7e-6a9d-45ef-aefc-9ea5ea27985e.jpg -5356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it5e51d723-f15b-4bef-8179-87d71b01eb7a.jpg -5357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it5e6637ff-58e6-4305-9b3b-1780f032faf1.jpg -5358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it5fc349c1-2295-4f92-82f7-9d68cc75d47e.jpg -5359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it602216ef-935a-44d1-a236-3396dd9997d3.jpg -5360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it60bb61cf-2b02-46a4-b187-288c0871caa3.jpg -5361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it6288ac98-5afc-48c2-9c51-0749dd22415a.jpg -5362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it64b26e5b-5dd8-44fe-b8d9-35289538e55a.jpg -5363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it6542123d-fe84-469e-bfdf-53ca5f8888ea.jpg -5364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it66d6c0b9-385a-4d01-a201-9a418fcff1b7.jpg -5365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it67654ac3-4c74-4d3b-a984-a147ec1147bf.jpg -5366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it71883915-3115-4dd0-b699-8a7327cc55ac.jpg -5367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it74f5893e-56be-4ef0-8d1a-1be724e525bc.jpg -5368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it763dc13d-f865-4c93-bbbf-fc59004b0f1d.jpg -5369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it77d696f8-cb0f-48a8-ab1b-12e9299c6935.jpg -5370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it77ec57ee-542f-430b-b114-38105840f1e5.jpg -5371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it7e0c3a96-974b-43c0-be1f-56954d86e865.jpg -5372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it82b76e05-13a4-4344-a1ac-43e17bad0f07.jpg -5373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it84da25f0-bb8c-4cbf-9545-07ca602da74b.jpg -5374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it860bf34c-859d-469f-9f7c-3f23ab9888b4.jpg -5375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it8657b197-ce26-4f3c-9195-f78f87b3c67f.jpg -5376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it89f3f43e-ce37-4462-9ff3-0f0794ddcec2.jpg -5377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it8cead0be-957e-4120-b134-dd1bc79baeae.jpg -5378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it8dce29e7-d559-4e93-a6ca-4cea364f13fa.jpg -5379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it8edf6e1d-2d3e-4acb-a155-fd0ea618dc2a.jpg -5380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it8f8f6c88-ac2b-42f6-8f3f-36280244baf0.jpg -5381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it913dd44b-fffd-469e-8295-4ef91b82868f.jpg -5382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it948513d7-a612-4b19-a3c6-7033f7557968.jpg -5383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it94dadcf6-2f4e-4e67-ba0a-4d8283c1d3e3.jpg -5384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it95f81f99-73cd-4693-a347-64665fdee766.jpg -5385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it97a3f455-14ce-415b-9e0a-b3044f553212.jpg -5386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_it99ccbc4d-f45c-47f2-b908-a6b1269d883e.jpg -5387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_ita105f842-7115-4ab8-b552-b583560bc7e5.jpg -5388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_ita812c97c-70f7-402c-b20d-ddf114f4bec9.jpg -5389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_ita9e4603f-8f12-4976-a4f1-1442d8701272.jpg -5390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itabc92411-8ad7-4358-91c6-9362ea345755.jpg -5391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itaf7f41a4-35d0-4772-a652-bedc9234c5cb.jpg -5392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itb0513382-5fe0-48c0-8f61-78ca865075f1.jpg -5393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itb8d11b41-dcf9-41e9-82a6-190bbd1ac978.jpg -5394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itb968138e-805c-4cfb-a0df-c18458d6e109.jpg -5395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itba56b49a-d77f-4aca-8b81-28b3d7577e3f.jpg -5396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itbafd0471-8921-48a2-b029-78112b043e3d.jpg -5397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itc02781d8-93e3-4899-889b-43292a2322f6.jpg -5398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itc0aad0a5-5a37-4d70-9a33-9a49f8ae762d.jpg -5399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itc0e3ef4f-eadc-4ea2-a852-13c8278bb487.jpg -5400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itc5af180b-30c3-43cd-88e6-49fc8c232ddb.jpg -5401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itc6ce707a-bf02-475b-ac2e-3dda8bc69f4d.jpg -5402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itcb11d1d0-f1c0-4f32-ac84-12df1954eaa2.jpg -5403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itcddd1edf-b148-4cba-98ba-ecd06513f169.jpg -5404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itcf6d843c-6714-44a6-b972-01c7910abdd2.jpg -5405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itcf6dc527-846f-4c06-bd84-ae1f5323f993.jpg -5406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itd665869a-486e-48d4-b5a5-d2b27d0a5eb6.jpg -5407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itdd436629-cb14-4827-99fc-cd0a064697cc.jpg -5408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itddd11e9a-a6a6-40a7-8548-9b173a387d6e.jpg -5409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_ite4063502-2826-40d1-8e5d-72418074536d.jpg -5410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_ite7018bae-8644-4740-9d20-5dc059f67006.jpg -5411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itea31d9c0-1e54-48d1-af44-8e9ec8bc796d.jpg -5412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itf1125f5c-a2fa-4a86-8ca2-73b9ebd27b99.jpg -5413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itf119ac9c-0b08-46df-a622-a614a479bbec.jpg -5414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itf1b00f06-64ed-4a49-a788-2bcc6f4cd768.jpg -5415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itf224d26a-a974-4ac0-ad16-ce1ef76f333b.jpg -5416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itf438ac7e-bc4f-4be1-ae23-1bf4328ac25b.jpg -5417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itf4499386-4b22-4919-b818-0301c4ea1301.jpg -5418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itf4732d3e-5c6a-461b-a7ea-580f636cc41a.jpg -5419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hair_drier_in_itf66806a2-2409-4988-86ed-3f361eae5de3.jpg -5420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it028626b5-dea6-46c5-9225-405bda7bd27c.jpg -5421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it02fd7c8e-9519-4411-8445-70d550861f1c.jpg -5422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it081b851b-e242-459d-a346-72c64cdd5ccc.jpg -5423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it0ba1cb1b-488c-4cfe-b081-8e2a1bd08ad5.jpg -5424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it0f6f66a8-e4e3-4b05-bebd-b61c7d7b2a03.jpg -5425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it10254c0f-f772-4bbc-807f-bf5d4500a7e0.jpg -5426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it11a149d8-e99b-4906-9c48-88b8ea95b77e.jpg -5427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it12657ca4-293e-4bb2-a8c0-46c88d10f9db.jpg -5428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it145ee728-9c43-4549-aa20-6a90137319d9.jpg -5429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it16004aeb-baab-4c07-984a-ba388a0182ae.jpg -5430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it1c72ece4-abf5-44d6-b32a-59ddb093d36f.jpg -5431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it1d91d7f3-a538-4f39-a868-4dc62ab44f23.jpg -5432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it1df17137-6628-448b-9b5f-27507871cb4d.jpg -5433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it1e772ff3-e283-4f3e-ba73-57382765cf09.jpg -5434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it2019552b-51ff-4370-a5c8-cf1b754350a1.jpg -5435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it208d8cb5-c4e9-4334-9c5e-e439f8db76aa.jpg -5436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it20f8b0a8-7dca-4837-b8d9-2b57ba9cf6f0.jpg -5437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it22acacbc-9bee-4464-b062-8cc3fee6ed49.jpg -5438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it290ecc22-6bd1-4722-a956-052e431bd55b.jpg -5439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it2987421e-397e-49a1-8273-ad6d50bb6492.jpg -5440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it2ec353af-080b-4454-bae1-1b3381fb3c29.jpg -5441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it2ff1f0e6-bda3-401a-ac9c-b6168d63437a.jpg -5442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it32134b1c-f0c6-4537-b6e7-84132870c81f.jpg -5443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it3469a514-4a0b-446f-8ab2-4a11abf3d7a9.jpg -5444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it368be103-c57e-4784-8302-1f6582d016ef.jpg -5445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it376eda1a-1bc4-4ad0-8679-f1ce82edda54.jpg -5446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it3dc9fc55-a0fd-47c4-998b-f69ae917e3a2.jpg -5447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it3e07fbbd-6077-4d61-b014-07ca3e413677.jpg -5448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it41d4bfe8-f43e-4934-93aa-4e34dc752e49.jpg -5449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it43103159-2db6-41a3-b454-ff0f9407d1fd.jpg -5450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it47592cf2-0451-4822-a7bf-8dae1056bd63.jpg -5451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it47c7fba6-3040-4583-b07b-85337c732347.jpg -5452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it55db7048-d225-4209-bce7-984e52de5e25.jpg -5453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it568928fc-49a0-4382-a103-6ac1695f885d.jpg -5454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it5de12277-4a0c-4468-ae97-9c35e2eb32e0.jpg -5455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it64b08fa7-0ac5-446a-85cc-b0826250ad7b.jpg -5456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it6a649c56-f1bf-4b5f-86eb-71d3fe959da4.jpg -5457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it6bc50fed-6c26-4e07-9c6c-af25674b45f6.jpg -5458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it6cab4d94-2092-46f6-a647-b179cde1a5cf.jpg -5459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it6dcef0fa-fe5b-40d3-bd5f-9e38d0db1b40.jpg -5460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it6f82f834-d4f5-4935-b26c-f439a1a2c4e1.jpg -5461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it75ce9940-3413-45ac-bad4-bf2e4626e165.jpg -5462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it76fd17e9-1819-4447-b20c-2c36d15fedf0.jpg -5463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it770ea1b5-c1f9-4bc1-9920-5e59aa78a727.jpg -5464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it7cd6ac5b-b844-4a36-adf5-486fb23e682f.jpg -5465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it7e9f3311-2be7-4caa-8540-8de97249adf5.jpg -5466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it7f307213-97aa-44f0-934f-0f80e7102b42.jpg -5467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it813f8976-693c-47e7-9a51-beb451151115.jpg -5468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it81475704-5714-4334-8bff-75cdf535917e.jpg -5469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it837104ff-ed31-47de-8a95-ff162f45adda.jpg -5470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it880608de-94c9-4c18-bb81-6de46d308f91.jpg -5471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it886df130-3a93-4cba-b727-b0b9badbe9bd.jpg -5472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it88f0440c-944c-4a31-8bc9-62d1417f09a2.jpg -5473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it8b4278a6-a8bb-4f5b-8d30-cd9b6768d462.jpg -5474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it8d77b11e-2689-448d-b8d8-6a5223d81161.jpg -5475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it944dc623-403c-4015-b4dc-53b252251b0b.jpg -5476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it98f75fe9-eea6-4084-b09b-9fd298c2b731.jpg -5477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it9ac38000-7ed7-4a8f-8469-257717a6d2aa.jpg -5478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it9b803583-7db5-4ad6-aedf-766a402c9886.jpg -5479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it9bb1446c-6d36-42db-85ae-7a261b92cdcd.jpg -5480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_it9e4213e2-79dd-4b0d-a8b7-df6da8893cba.jpg -5481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ita205ea90-a423-4532-9790-031278d5bf98.jpg -5482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ita291a13f-b6f5-4ecc-93f2-423d67eb9b54.jpg -5483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ita5cba261-ddec-473b-ae70-61dbef1a8b48.jpg -5484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ita787bb80-d62f-42bc-ab44-4eaa48e9de92.jpg -5485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ita791ff10-ca05-4f92-adf0-5916fa8909ea.jpg -5486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ita88db7e1-329f-46c4-be07-3207cc3bab29.jpg -5487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ita97a1620-ba88-4846-bae1-781f001988c4.jpg -5488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itaa12bd6b-9164-4b6d-a8b3-63292986974c.jpg -5489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itaa76757a-0462-4293-8aca-eb17babb9408.jpg -5490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itb18bce4a-2369-42c2-9167-677d50372c7e.jpg -5491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itb3b92c91-2d91-4277-9dfb-a3a5efcb8897.jpg -5492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itb6d74d4f-f332-43ad-82a6-510170af5fdf.jpg -5493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itbe450f57-c87e-43a6-b662-dc073eb57b86.jpg -5494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itc23edfdc-e9a5-4f1b-8d42-49ec1d978f03.jpg -5495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itc2faabbe-6500-44cc-9e2c-19d9a50531ca.jpg -5496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itc45c6325-5cbf-4286-af4b-74174304602b.jpg -5497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itc4681d96-5387-466e-9a03-88a75072b5a8.jpg -5498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itc47537d4-7e17-4211-9d04-22791f7e09c6.jpg -5499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itc8ae354b-c8ba-4005-aa5e-b0a2bec31dce.jpg -5500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itcdb74c67-bafc-4b0d-9f2f-8cecb86b61c7.jpg -5501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itd4fcfa0e-e9f2-40d7-8023-e6e5cbccdf55.jpg -5502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itd9e37762-a3d2-49ed-aec7-ac7acd4807a5.jpg -5503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itd9e388c0-3232-40b3-b5ce-322368033823.jpg -5504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itdf418ccf-bf89-4c41-809a-4b53798529b9.jpg -5505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ite0930aa2-c1d7-44cb-bdac-6271a16dda59.jpg -5506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ite1e66cc1-ecfb-4919-a100-390b2fe37e47.jpg -5507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ite53bfee4-e61e-4448-ae6c-956c51bc69c9.jpg -5508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ite6195dfa-ad66-4d3a-bedb-59098859277a.jpg -5509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ite6b89b13-e6a2-4cae-9b40-826c44709bf0.jpg -5510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_ite9b648e4-4e50-431b-b364-23f3eabc16bb.jpg -5511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itec2a5b79-003c-4357-aa2b-02d933f8fbd3.jpg -5512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_iteef97ba7-bd29-49fe-b8ae-5415f7a2af91.jpg -5513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itf2e00426-7877-4715-a7d2-63b0c719e0af.jpg -5514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itf3c1e18a-0379-4f47-affb-fe8e2553191c.jpg -5515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itf47007f2-997a-448b-bf05-5498f552f156.jpg -5516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itf6257981-d4bd-43a3-84e1-9103d2b9a864.jpg -5517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itfa11609f-1c52-4b97-8862-5ef8baa94bde.jpg -5518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itfbbc362d-de9a-4831-9def-51f21802a7a6.jpg -5519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_handbag_in_itfd96a51e-dd7b-417c-8768-5feecdfd2bde.jpg -5520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it00e545b1-c17b-4fc1-9c88-6cdbdce18003.jpg -5521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it0393e9d2-9c4a-4e8e-aaec-1f8b53819659.jpg -5522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it0496eec8-0b7c-4af1-b876-285cea98b211.jpg -5523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it07cce172-1d53-45e1-aa3c-d178ecf75268.jpg -5524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it094939eb-9ac0-46ce-90da-24bcb410a741.jpg -5525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it0b4eb50d-0049-4335-8847-c41561fadd04.jpg -5526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it0da759c9-02b9-47ac-91f7-005966ff094c.jpg -5527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it142a825f-e84d-444f-bbb1-3bb3c862c07f.jpg -5528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it1621a53f-e900-42bd-a73a-fa37aa97ce28.jpg -5529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it17b4362c-fa71-4f0c-96da-8a68a77d1cac.jpg -5530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it18d791fa-33f7-40b1-a29e-dc87926d395f.jpg -5531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it1db5c32f-7b67-4d1a-8dd9-9517eb8bdedd.jpg -5532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it1de83c46-ba5e-4c56-a6b8-d300a671b71d.jpg -5533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it1e562feb-9096-4e65-a494-48af492ac3ef.jpg -5534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it1f62c01e-c450-41b0-be11-0ebc996d53df.jpg -5535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it2e010f44-d372-4b58-93f1-ece44847a5bc.jpg -5536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it2e507e90-9523-4e3c-9469-b3cc5602d61d.jpg -5537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it2e56ae57-310c-4c39-b0b7-1a3fa10cf581.jpg -5538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it342a5dab-daac-47c4-9b26-4f218ba65e56.jpg -5539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it34a9fdb1-bedf-462d-869b-701ea97a4ad5.jpg -5540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it35055eec-a446-4cf8-9537-95f6be5b58a9.jpg -5541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it368edecd-6738-4e82-843d-68560012e244.jpg -5542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it368f27f6-3e81-4a17-a490-72a36f258e0f.jpg -5543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it37432b5a-64cc-4d83-956a-3048d911a5cb.jpg -5544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it37e2ce29-20f3-47ff-be1a-cc906f6669f9.jpg -5545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it3b683666-5d22-46a0-abe3-7e897757bc97.jpg -5546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it3cacd67e-53a6-483a-a130-aa7f69253f3b.jpg -5547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it3d296dfb-0427-407e-962a-413ca4eb909f.jpg -5548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it3e4eb6b6-3212-4ac8-9cea-3c5cb1a0866f.jpg -5549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it41dce3f3-0bea-43ac-a073-c66c33649851.jpg -5550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it471fb027-309b-4f4c-a893-cd018d4f9f74.jpg -5551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it49543369-52b8-4923-bdc5-f0453c121959.jpg -5552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it50f4dcc9-ad2b-4b54-96ce-736dd915069d.jpg -5553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it513d080b-6889-4f3b-8398-37bfbced2ed7.jpg -5554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it52672f4c-8410-4a67-b658-6e56785fb0f8.jpg -5555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it536f4cc2-372e-4ec4-aadf-6d803190728f.jpg -5556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it5655411e-073f-4958-944c-5f22e405b384.jpg -5557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it567e73ad-77db-4f5b-847e-096f55b27d99.jpg -5558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it59d2fbdf-8c46-4702-969c-b85ff5ab9fd8.jpg -5559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it5cefe5ff-bce5-4935-b3d1-2104deed09d7.jpg -5560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it5dcb0961-d99a-47aa-8c40-5bc0e3457d33.jpg -5561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it5dd73824-a0f3-44fb-831e-019eccca7aa7.jpg -5562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it61ebce58-2695-48b8-9366-fe303f56cd00.jpg -5563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it65430e50-b9c5-442a-acdd-8f4d5571f821.jpg -5564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it67fbb4f5-e7b8-49f6-b930-8c8a1a2659e7.jpg -5565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it6aceaeaf-95c9-4429-a600-d71034135a0c.jpg -5566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it6ce3413d-d4b3-4cda-adc8-92ed650ad73a.jpg -5567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it6e260104-77de-4e34-ae6f-83a0fa3d31ad.jpg -5568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it709d6628-92a2-442a-aa03-0f87d19dd37f.jpg -5569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it715bd860-872b-4578-a724-9c5246d074c8.jpg -5570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it7182a2b7-b9c2-4516-b749-52a6aff41083.jpg -5571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it721944e1-347b-440a-8d25-99f6f9cb572a.jpg -5572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it75f85f19-322c-48f1-934a-679cc88ebd9e.jpg -5573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it7e153187-f823-44df-93b8-8277b4f0e657.jpg -5574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it815ed539-bbf0-401d-880b-c0beb9667182.jpg -5575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it81a6501d-4174-4f6d-8c5b-24099940432d.jpg -5576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it85ed19c9-54ad-482a-890f-c245fcf5f1ef.jpg -5577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it87626bc0-868e-4942-af48-470c2e1ab305.jpg -5578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it89c510bb-129b-46ec-8862-85403e8735a4.jpg -5579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it89f52018-ca2b-4ef8-9a1c-b11f11c947ae.jpg -5580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it8a3fc829-06c1-49be-9dd6-db4ce84a9cb6.jpg -5581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it8c769f0b-6d97-4e49-8c03-d1c03283fd00.jpg -5582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it8f5b2a47-f2f9-4ad5-a69b-8b9d94528e19.jpg -5583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it9300d00f-cc90-4fab-b2c7-44123c4a4dcf.jpg -5584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it99e64678-beab-4807-85bc-c0918049ecdd.jpg -5585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it9db62f60-aa46-4936-8f60-8d080ede8ebf.jpg -5586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_it9f335244-a3a2-4e44-b38f-1caa42eb6799.jpg -5587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_ita176bc38-79fe-40a4-92a0-f360fd788c0c.jpg -5588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_ita418007f-c2d9-425d-a148-7e4cc47cf030.jpg -5589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_ita9ec9b58-b9b9-494b-adf5-40f892605bc7.jpg -5590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itb3ddb9b2-d215-45c7-8af6-17a8969e5d36.jpg -5591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itb485d4ab-d21c-49c1-a8b6-123629e18d04.jpg -5592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itb4f372e8-54ea-498a-aded-10b3d068c500.jpg -5593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itb75ce843-982a-4384-b0ea-64957b03f84a.jpg -5594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itb89ce83e-2ee6-46ae-9c0f-0e1bc5125129.jpg -5595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itb9b761a3-5be4-4010-864c-976a6c34cc62.jpg -5596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itbe4fd0c2-1dd5-4d6d-b0bb-0bf0e2c9a3ff.jpg -5597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itc15b824a-a947-4bd2-89f0-fc16c41c8223.jpg -5598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itc17b6899-7a0b-47be-9481-c26d37081f04.jpg -5599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itc3121a5c-e824-4129-9738-9d307e6e5a06.jpg -5600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itc72131d2-f7d3-4eff-ac2a-e5669284acf8.jpg -5601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itc74d0898-a793-4aa4-8b31-e4b1bc197a54.jpg -5602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itc9cebb51-49c6-4bd4-abd9-0efaeb08a74c.jpg -5603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itce764ddc-d254-4003-9e91-fb88a443adf4.jpg -5604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itd6d2a37e-be86-4034-b359-730f8a0af2a2.jpg -5605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itdf996eb2-8b55-4d04-a725-99dbe69f1ff5.jpg -5606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_ite3bad16a-9ec6-4d47-8808-1b6e918e816e.jpg -5607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_ite509852d-6862-45fc-9221-598195b662a1.jpg -5608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_ite683170c-533c-46fb-b055-5c4f8dab59ee.jpg -5609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_ite91276f7-5704-45d2-8102-dd6282b48876.jpg -5610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itea1c199f-9f42-48c9-ab60-81095f3e5650.jpg -5611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itebcab370-13ce-4b20-9f59-01c2ba8a27bc.jpg -5612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_ited616433-55bd-4656-97b7-4124e77506bf.jpg -5613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itef004c79-ec46-416b-b80f-e8333d6d4441.jpg -5614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itf18b5320-d7ed-4e71-b51e-b8691054ae8f.jpg -5615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itf52760c8-a003-4650-b31c-a397fd59bc7c.jpg -5616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itf67d5f42-25dd-4eb7-ad90-084843e6d29e.jpg -5617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itf752a474-73c7-4510-a0f1-b9ea33e551b4.jpg -5618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itfc844491-85e9-49ad-b0b0-60083cc7220f.jpg -5619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_horse_in_itfe0ccd98-3964-444c-a40b-26039e40e9f7.jpg -5620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it0362ff68-80cf-4627-a30c-0419850ed03e.jpg -5621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it06a6b553-8847-49f2-bfb1-06449b496aa6.jpg -5622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it06d7299c-2594-4f11-b857-d5554d99454d.jpg -5623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it095513d4-e986-4b3c-89a6-64820881606c.jpg -5624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it0955b41f-7c7c-49b1-9132-4b880e45c3cb.jpg -5625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it09bd7c13-c17e-4f25-926f-b867111c01dd.jpg -5626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it0a2c23cd-8373-44a6-8bd4-e2de2ea0eab9.jpg -5627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it0a49549e-e7d2-4735-a894-f95925ce6f8a.jpg -5628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it0df08097-37df-4400-bfac-8997a46c28f0.jpg -5629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it116d549f-0971-4050-b00e-1c2c436b5364.jpg -5630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it1507a5c7-7663-480b-a95d-34812b35dc6b.jpg -5631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it1546cbc4-bfa6-4569-ae16-ab85b97e0266.jpg -5632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it1bc181fc-4a00-478b-9091-98cdeb16fedf.jpg -5633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it1ec52bf8-ca2c-4cdd-ab6d-f0993028098b.jpg -5634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it2062932d-195f-4aed-806a-bcd309c94735.jpg -5635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it2223277c-9ab5-494a-baf9-26676e6400e7.jpg -5636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it25b8b6ec-a24d-47b9-9521-c39339c7e501.jpg -5637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it2860c355-a1bd-4e48-8258-a9bc37c293c1.jpg -5638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it29e7bd14-b0b5-4c1d-a0b3-b8a5c69f4d4c.jpg -5639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it2b3ab116-9253-443f-80f5-39a13bb97742.jpg -5640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it2c1ee8cf-7874-4eda-9712-68d7b49934c4.jpg -5641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it2d4a2527-293e-4a21-843e-df6d90b03f09.jpg -5642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it2fc14374-ebf2-4268-93f7-6b1bc7d47340.jpg -5643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it30fc83f0-50a6-4cc4-8cbe-4be906d23c31.jpg -5644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it339241f3-79b7-47ea-af08-ec22b0566fa4.jpg -5645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it3585c9b0-e2a1-42fe-9920-211c3bf9662e.jpg -5646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it35f43d12-0501-4ecc-a0f3-aa9d6fa27221.jpg -5647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it361a95cc-88b6-444d-b5c2-5df2352e0973.jpg -5648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it3a7f3d7e-c796-43a1-89f4-bb36ed08b939.jpg -5649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it3bdd8af0-6811-4b7d-b339-554bf72149f3.jpg -5650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it3c3ffd02-6c81-47dd-b673-18fd53b0c6de.jpg -5651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it3cfc34ae-babc-4f9f-b271-af4d9d7cedce.jpg -5652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it3d1939c2-a41f-47ac-a314-0d93dd9b9825.jpg -5653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it3eb8a44a-38e5-4a01-be5f-38de33e1278c.jpg -5654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it4096c524-0568-40d6-9682-eacc8f4ef2ed.jpg -5655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it4405dadb-9479-49f3-8e7e-f86422f50ecd.jpg -5656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it46ca61d1-c840-4686-9a1f-8e9adef43e21.jpg -5657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it4bdedae8-87bd-4702-8b52-21afb2e514fe.jpg -5658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it510d8c17-45e5-418a-ae8b-e927ef219cf8.jpg -5659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it52d52baf-7fac-4eb5-a8b6-2573704be7e0.jpg -5660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it5309f6c0-7cfb-410a-a034-732474a29abe.jpg -5661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it55fa32e1-d7a8-45cb-961f-f0fbd32bac72.jpg -5662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it570ee21d-52b7-4454-91d2-c6eb4fd12c3e.jpg -5663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it5a7bd8b2-9269-4093-982b-754e597710db.jpg -5664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it5c05c7ff-ce9a-4dcd-9e91-25b90ef18289.jpg -5665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it60f0b3af-8b7e-4c3a-90cc-d475be70cbf1.jpg -5666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it62380e00-8313-4d5c-8c4a-8472f7ab7150.jpg -5667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it64ca6a56-9b02-4b80-a233-e89e59580512.jpg -5668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it6612443c-62a3-40a9-bea3-ed6b168cd5d4.jpg -5669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it666de34e-1168-45bf-8104-a9f4c567b782.jpg -5670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it6e6b8a07-d86e-41de-8f7b-508f3605a288.jpg -5671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it734e5314-9767-4e86-8f41-0d9ac04af15f.jpg -5672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it74d70eb7-b51e-4ac1-adfd-159f9061824f.jpg -5673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it75383ca2-4c00-4163-88ac-9e2f2a4581b2.jpg -5674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it7683606e-9f72-443c-93de-36e771ec709c.jpg -5675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it797673fb-0399-4810-b970-b387f5f8ac1e.jpg -5676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it79b43af1-899e-4c7b-a67d-bd3d3e25d8ec.jpg -5677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it7f47be31-e3ee-42bb-801a-2098ac0bb41e.jpg -5678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it805135b9-7f72-44fe-a353-908ad9475945.jpg -5679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it80d0360c-8cc2-4139-9ed4-7599f2a963e4.jpg -5680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it853a1ed4-6b88-419a-a5fc-5264b0fec3b8.jpg -5681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it884585f6-1c84-42af-a355-7ebf2c6aa56a.jpg -5682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it911ac8a3-ab4f-454c-adac-778c3ab8d4ec.jpg -5683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it928f0c49-19db-457a-ace3-6d268bc33541.jpg -5684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it92b543c4-1915-470c-b3a6-feb4618b0cab.jpg -5685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it942db2c1-6a8a-44c6-a91f-892b30db7997.jpg -5686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it9ab1121d-a1af-4ffb-805a-ce7da3edfad7.jpg -5687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_it9d130af8-5f14-4322-88a7-f4c414762953.jpg -5688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_ita0123a98-f09e-4c67-aa60-2fd6826a50a7.jpg -5689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_ita1de290e-40a4-441a-b6f3-f6e4d9a0b3a4.jpg -5690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_ita7c27169-450d-43a5-a5d9-cd4413641aa9.jpg -5691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itb1a05dd9-06ce-419a-999d-3ed13ee5af9a.jpg -5692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itb3cffbf4-e7cc-4c3c-8005-94c0b8f5d254.jpg -5693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itb7e42b9c-8c1e-4f82-91c7-b2f557022187.jpg -5694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itb94d8574-40f7-4837-b363-a44a5f1e75a9.jpg -5695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itb976005e-0d94-45f5-a70b-da885f4bdb24.jpg -5696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itbdfec77a-837c-4ad4-aa9a-7d62cd0f4dbe.jpg -5697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itc23c8931-0057-4576-b770-282021127e37.jpg -5698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itc29f40bb-2e65-428a-8e3f-87a8b62a4c3a.jpg -5699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itc3fcae22-cb7d-4a08-acdb-3b802f0ee13e.jpg -5700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itc64a4230-350b-4abf-bad2-769d147cee83.jpg -5701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itc6e67cbe-61d3-498e-b1e0-63be7ae3b10c.jpg -5702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itcb6c6e3e-faf1-4d46-8dc6-6016e8bc5636.jpg -5703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itcd6f717c-da0b-42a5-83ae-4d9b3cbfdf29.jpg -5704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itd0182eb5-79fc-4cf2-8f57-469ac464278a.jpg -5705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itd09ae4e9-f531-4210-9a19-d2f53b898588.jpg -5706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itd6803095-8e68-4dfb-a180-fab02207840b.jpg -5707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itd7f035df-f4fa-472c-ac43-6179387bd142.jpg -5708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itdb53b949-bd85-4f00-818a-7458d15aa52e.jpg -5709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_ite0c35874-03b3-4cc7-81f7-27c848c3d913.jpg -5710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_ite3535ab8-2630-40bc-bca5-f208b63ab830.jpg -5711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_ite4ba2cf6-bc2b-425a-96ed-a6f1f9602478.jpg -5712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_ite9dece79-4366-4c2f-96c7-bacec42baa6c.jpg -5713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itef29ba64-5088-465e-b467-f1d312f42cf7.jpg -5714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itf2615798-ef16-4fdd-9acb-08a4aaf71460.jpg -5715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itf498edfe-c816-42c7-b1a2-c995158badcc.jpg -5716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itf9025130-ecdc-4da8-b3b6-4353f8c1fafc.jpg -5717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itf935a5b3-8381-457e-ae30-bdde58a03428.jpg -5718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itfb0ca047-7c47-4fbd-a894-a78dad3586af.jpg -5719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_hot_dog_in_itfda2ea53-e6d0-4b40-8bc5-3fea920b92c6.jpg -5720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it0128f601-01d1-412b-b470-1386e8b7b3e3.jpg -5721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it04882b49-fd8c-433d-a581-46c6d1644373.jpg -5722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it05eccfff-64ec-4f9e-bbbd-ac99344fc462.jpg -5723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it06b6738d-6f5f-4fb7-824a-0bc3a90b1d5a.jpg -5724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it08958541-a6fb-459f-b0f4-c51aed22fe1d.jpg -5725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it0a7a54d9-d216-4379-a152-58e18b9b77b2.jpg -5726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it0e1be1b5-ac81-4658-88dd-940bf661b4c1.jpg -5727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it0ee20eda-e91f-42b3-874c-64201472144b.jpg -5728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it0f014d16-961a-422c-8a7d-a952f207570a.jpg -5729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it0f13062e-0046-4b0a-9be0-7b0bebeca530.jpg -5730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it1085cf05-3045-431f-85b3-5fbec14b6cec.jpg -5731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it13597609-56ab-4ff6-b32f-a51c74b5a1a1.jpg -5732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it14c1c0ce-ca9b-42b9-a782-2ed6f14ecf86.jpg -5733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it166cb408-4ff8-4769-b424-5ee36007fed5.jpg -5734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it1cd30c3a-6734-4380-b9ab-8ca48a334f63.jpg -5735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it1def2f29-5ff9-4163-98f9-7e5f6fb7cef6.jpg -5736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it20763077-222c-4a7a-9adf-f54d02469b2d.jpg -5737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it23f6f756-7c7c-44c6-ba20-a4f8aa6eccb6.jpg -5738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it2405e791-e063-4002-829e-09c7915ace51.jpg -5739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it2407d21e-1d1e-4e6b-8c5b-25a767f6942c.jpg -5740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it24f74146-17e4-4630-af0b-eefca056c671.jpg -5741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it283185cc-ffc0-45b3-9937-158635ab6c5a.jpg -5742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it2a650bbc-f55a-4ea5-84f6-cd633f853d86.jpg -5743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it2c8fb572-ffa8-4674-82ab-4c3f5d2278f2.jpg -5744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it2f4cc77b-cbf9-4161-828a-e95683b63eeb.jpg -5745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it32573b4a-a7ec-4d7d-bfdb-3e7b8249f3ce.jpg -5746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it34b0eaab-fc3f-452d-9bdd-49e69b2bcbf2.jpg -5747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it3572f0cf-2241-4aaa-870a-c417f3c2bbe4.jpg -5748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it36befae9-0329-4caf-9fcb-499252797580.jpg -5749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it3891744b-17b8-439f-8877-a9d7ac605700.jpg -5750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it38a4c721-8db3-48c8-9644-a7208a6a60eb.jpg -5751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it38b543c6-3694-43b8-929e-88b97e50e4a6.jpg -5752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it3ba4de95-3f01-4d07-875e-78ca82aa87f0.jpg -5753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it3c066d3d-390e-4b5e-a1c6-bbff528bb3c9.jpg -5754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it43f99e8a-f8b7-4a7f-9ba3-1ce6b0f5bc90.jpg -5755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it4599b79b-c2d2-4888-be55-c75dc4a5e7c5.jpg -5756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it4785f35e-1662-442f-b08d-6428a3ba7a87.jpg -5757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it47d0b408-f7f4-4109-95b6-0a9b973b4410.jpg -5758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it4a414e32-1a8d-4189-90d1-c6f5edb34145.jpg -5759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it4b984c8b-0bae-458f-b0db-0b2354b5851a.jpg -5760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it4d2ec5dc-4e52-4e6a-87ee-3714ba4de8f8.jpg -5761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it4d6f3ede-7ceb-412f-9e77-f26e25cfffac.jpg -5762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it4e842ecb-350e-469a-a447-e97a958e1b9b.jpg -5763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it4eaf018c-4f82-485f-9637-4688cd3e51d5.jpg -5764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it54a17c26-2318-48b4-b1e1-572fc3d2f278.jpg -5765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it584ee292-d82a-4b45-97db-fde9ad117bcf.jpg -5766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it5a0f0fc4-603c-4834-ba65-be12bb8f2edf.jpg -5767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it5c7c9598-0ae2-40ea-b130-5c15982d7829.jpg -5768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it60125293-8578-49ed-a4f6-b03a05d2a82a.jpg -5769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it62c895f3-01dc-4bf0-81f0-e13476cf356d.jpg -5770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it66c41f0e-b90c-4530-903e-73e344be8c54.jpg -5771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it681ce3fc-a237-4a10-89d1-b81aa037785b.jpg -5772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it6bc3c8fd-d421-4518-b919-09c882161fb5.jpg -5773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it779b8257-1f69-4c5e-9ffb-9d30cd97556b.jpg -5774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it7f586736-7618-48d0-b9a1-ebed350130cf.jpg -5775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it7f6c1c29-94ad-41d0-ad71-b89743b1dc5c.jpg -5776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it85d581bf-0a83-456b-9bf3-6b33e5f95b47.jpg -5777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it86539a91-6240-429c-aa71-dff7af0d4e87.jpg -5778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it88ff7e9e-1c96-4394-90c6-8fe7c2dee044.jpg -5779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it8b903556-9535-4255-84ee-df05e8ecac90.jpg -5780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it8c2e54a4-a6df-4563-95ae-8653c8668ccf.jpg -5781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it8d6ff678-48f8-4439-a662-134bab6c3aaa.jpg -5782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it956c33d2-60e2-4981-9ad0-0e34466121b2.jpg -5783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it96c6c25f-5a61-481c-8835-0d2906443879.jpg -5784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it984f6e53-ceeb-4410-a1a9-196aad1c2680.jpg -5785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it9b5ddf9b-7abc-41f3-b9ca-bd610588218f.jpg -5786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_it9ef84a48-1e08-4b25-a372-dda0ed0c764f.jpg -5787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_ita2ab78ff-bd98-4ab3-93ad-df9a25bf8425.jpg -5788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_ita3c7651f-cae7-4763-b3df-ec79ecdc1cde.jpg -5789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_ita71cb1e7-fd9e-4c7f-9d51-c640d1839f0e.jpg -5790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_ita8a62d45-05ff-4811-aae5-880ac734e5ac.jpg -5791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itaf229064-adc7-4fba-b6aa-5c96d29beb9e.jpg -5792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itb75c47e8-3018-4e09-87b3-56bb2ec19f99.jpg -5793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itb7646f71-f83b-4900-aac6-9edefb9fe0be.jpg -5794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itb78a0ab0-57d1-4803-a5d1-edbe526d53e4.jpg -5795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itbc9d7ff7-e64a-4d8e-b175-a44809ab017c.jpg -5796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itbd251127-a4c7-4f6d-bce7-77289b968ca1.jpg -5797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itbf5a394a-ff46-47d4-863d-902c5acca37b.jpg -5798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itc1b56794-8475-4f6b-a64c-7b62f92a7fd8.jpg -5799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itc340d7ed-765c-4a76-9121-4ea92a809703.jpg -5800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itc3a91d63-2e03-4d47-be2f-099ecbb5394d.jpg -5801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itc46e516d-95aa-4266-b6a9-851b63461d7a.jpg -5802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itc74dae74-840b-4b00-886b-73eea2c423bb.jpg -5803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itc8d34181-6e6c-4930-964a-cf1d1e82a35e.jpg -5804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itcd6789ed-0ec3-4351-976c-c0ed018e17ec.jpg -5805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itda3d5977-0ea3-4c1b-b2ce-fab9e072913c.jpg -5806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itdc06a8db-0d01-428a-8d59-a44eb253539a.jpg -5807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itdd2f7b9c-54a3-4ff5-94b8-72356f9f67bf.jpg -5808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itde896e29-ebb8-45fa-b325-546cd533edc1.jpg -5809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_ite15a7815-a57e-40be-a564-2886b619bb54.jpg -5810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_ite22bf65f-a628-4d07-a7f9-192ebfd300c2.jpg -5811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_ite62e4a70-fc49-4bc6-8b0e-7bc857a87c3c.jpg -5812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itea5727b7-3e8a-4fc4-8ef3-f2a2d9f31ed1.jpg -5813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_iteb898052-567d-4540-b38c-6a228af68536.jpg -5814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_ited539070-94d8-4f8d-a4b0-86b30e6d0c88.jpg -5815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itef565c67-f42d-448f-a258-db5abd9b0374.jpg -5816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itf307e3ae-e3be-4f2a-b4a0-fa6a52997c06.jpg -5817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itf6bc3343-ca4f-4fad-a7f0-8386854f6265.jpg -5818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itf9f5c580-6b57-4920-817a-92af03e0dcd0.jpg -5819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_keyboard_in_itfb0a7933-c782-4cee-a0f1-0d96b18e0e71.jpg -5820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it00f3ee25-9648-4e81-96ed-3491a0d86958.jpg -5821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it03ee777c-e510-4492-9a10-084a6f35dc4f.jpg -5822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it078e9b1b-488e-4de5-83bd-194994e142f9.jpg -5823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it08d15aad-1dbf-4de1-aa3e-57005131774f.jpg -5824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it0a438e70-6cd2-4582-912a-1a1de1271cc1.jpg -5825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it0b3937bc-6fe6-42e2-99c6-cff4fbeff6e6.jpg -5826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it0b5a1b6d-7f5b-43d3-9ee5-abe338534133.jpg -5827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it0d539de3-6a9f-4ef8-9de0-3c8ba903a3af.jpg -5828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it11012926-1e39-4e67-94a5-59c8ecf0ec29.jpg -5829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it13b60a5f-4aa8-4d4d-8a92-71de9efd6e5d.jpg -5830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it148408d0-1480-4b36-90e3-7e75b692f115.jpg -5831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it149684d4-4767-4510-8685-49efc05f0a9a.jpg -5832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it15c7a29e-d7c1-4178-bf02-0b3c491101a5.jpg -5833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it1659a2ce-30f9-4ec2-a34b-79835d918f1f.jpg -5834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it1682d102-4551-4377-8024-440248deb978.jpg -5835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it17b50e74-4901-4bb7-a44d-fca633294daf.jpg -5836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it1950d17b-5f56-4389-a8f6-f26d171e5f84.jpg -5837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it1c161833-93ff-4e8a-9051-df5868f2ff27.jpg -5838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it20658c58-5d3a-40f3-a9fa-c048e2b8df35.jpg -5839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it28417fe4-997a-483c-9921-a9d22a3f2a15.jpg -5840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it2a989dbc-5bb2-4905-bb4b-81b663282635.jpg -5841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it2b81469b-dc74-415b-b4bc-4504189120d7.jpg -5842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it2c3a1d58-4b4e-4ee9-aeba-dee22d4e97ef.jpg -5843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it2f80131f-bef3-4413-aafe-f444d15f4abe.jpg -5844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it33d97bff-3cc6-4524-95ee-9976000f5f8d.jpg -5845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it38b29095-1388-4f75-84f4-0e4e680bcadc.jpg -5846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it391131f4-c63e-4d89-8d7c-437317266e23.jpg -5847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it396fa6ef-7479-429a-b92e-7f0cc850925d.jpg -5848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it3dcfb060-27a1-4023-b11f-196d91222954.jpg -5849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it44573ac2-8bc1-4d7d-9f13-57d943a50ab5.jpg -5850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it44caae1e-f00c-4f33-a114-39c66718b2c9.jpg -5851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it485bc30f-eb4e-4f5c-bbb5-83cf89eae20b.jpg -5852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it5458f498-8a16-4d09-90c9-f1bf3941e1aa.jpg -5853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it5570d4ea-ab1a-47b0-8d96-9e1796d3e35b.jpg -5854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it56e2ba5d-2c0d-4520-8869-b91ea8c1e10c.jpg -5855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it579f83e2-a408-4d09-9a96-55ad18042381.jpg -5856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it591303d2-9e6f-42c7-a345-4d6519ee7ccc.jpg -5857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it614dd8c4-425d-4204-8dab-85f86a3147fa.jpg -5858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it62515570-e4bb-49b1-98d4-3145bfefb8a4.jpg -5859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it63dce6a1-cd6a-49f7-9f4c-9f1c24143af9.jpg -5860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it643e8d62-3dd9-4c1f-9c29-e8fee610b206.jpg -5861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it6ab5d099-3b94-4e7a-9364-ab101cbfef02.jpg -5862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it6bf6afd7-18f4-40e5-9c5c-eb340f9d4cc0.jpg -5863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it6e69feb6-16f1-4ea3-9806-b9ff059282de.jpg -5864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it6fcf8c73-50a2-494b-876a-4aebced53843.jpg -5865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it7a7a2a67-81a0-4f9a-98bc-7a58476fed35.jpg -5866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it7da2c7a4-67a2-4692-870f-2cb0f589bd1e.jpg -5867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it81ef1582-3bc8-43dd-827a-ab788d1ecbd7.jpg -5868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it8209f079-a31e-4cee-8b61-cfc93c91a7c6.jpg -5869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it820fc6ce-be70-44de-a277-e35b24cac495.jpg -5870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it852832a8-8186-4026-a580-a60026e766cc.jpg -5871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it8b8c8b37-3e46-486c-8a31-62a627c405f3.jpg -5872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it8f31f2c7-e71d-4331-9bfb-139051e47bc8.jpg -5873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it8fbda709-a606-4f90-869c-565d9ed21306.jpg -5874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it922b6e6d-b238-46e4-a446-4144a685b195.jpg -5875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it92b2c241-f334-4e07-a91a-933d27bf9607.jpg -5876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it9571aaf3-3130-4d34-b854-27fc51ee45f4.jpg -5877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it97cbc29e-f5b0-4415-8e16-263e99ac2b4c.jpg -5878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it986fd096-6556-4efb-b7f1-fb586a66f1a7.jpg -5879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it99645ea9-4f74-43c3-b381-e0a971b2669b.jpg -5880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it9b04bf96-4de8-45d5-a8fe-f9c01205dee6.jpg -5881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it9d2e37d0-b28f-4a0f-882f-09df21351af1.jpg -5882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_it9f20e476-a864-4f6b-8df5-12a274a59545.jpg -5883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ita4bdc66d-94ad-494c-a7a8-056b6666e014.jpg -5884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ita54eb918-7e48-44b8-8f24-5043257603c4.jpg -5885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ita98a8f4e-a50c-470f-a017-1c3d1fee29a8.jpg -5886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itab2e68c7-106a-4429-94a3-7208239cf3db.jpg -5887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itb393e5e7-7dda-4326-9afc-c6c2d30def44.jpg -5888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itb45426e5-f05b-4678-abd7-8ea9b67c5fb1.jpg -5889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itb6038280-a8ac-4d0c-bd3a-2bf3e91a2c2f.jpg -5890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itba0d5f7c-940f-48d6-a201-54de010bb556.jpg -5891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itba866563-f29e-4806-8262-218df988a7cf.jpg -5892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itbaa4eaea-fc13-45b0-8f09-619cb7e48368.jpg -5893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itc09ea871-fcec-4d02-bef7-f5cb65bcd129.jpg -5894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itc27990a9-c82c-48b4-b00f-a649b06ec1a0.jpg -5895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itc572fe37-5130-4b3b-b51e-4b629ef66cda.jpg -5896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itc946c0cc-c9bd-41b5-9f85-2d19c49693cc.jpg -5897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itcb64846c-6cb6-4769-93c4-15d85a38335d.jpg -5898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itceb05ba6-ad2c-40d9-af3f-9deb30b3d6f0.jpg -5899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itd0c34818-7060-4688-9aa2-fca01c1969ed.jpg -5900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itd0fde516-d4b0-4f42-b649-3ede16dc2469.jpg -5901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itd11b7ab6-35a7-4b14-b8da-989c674819ce.jpg -5902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itd1bec328-ec85-4508-9d36-d9ee54f240d3.jpg -5903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itd1dd670b-5506-4b7e-bc0f-dcaae773ecd0.jpg -5904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itd2e31b8c-5360-4a32-aeff-8f9b0ebcbbdd.jpg -5905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itd5839951-df13-4e25-b434-403d52b5b14f.jpg -5906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itd70bff42-26e8-4a4c-829a-c29fb9d339bb.jpg -5907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ite1addb47-f1d0-4fd6-8977-91b4331003ef.jpg -5908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ite2c84b62-c46b-4890-9d2a-def935d0b8da.jpg -5909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ite3fccdf1-cb11-4953-acf5-2310cca6f14d.jpg -5910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ite5012627-ebcc-49a8-968a-c69703eb1eca.jpg -5911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ite606a275-3444-4ee5-bae6-e31bb96a575d.jpg -5912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ite6111348-bd07-4c36-a9df-c50c0f00ac6e.jpg -5913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ite6c77ea9-71e0-40ef-9a5b-bcd9946b5180.jpg -5914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_ite7e5aef4-79db-47f9-bedc-39082c234a73.jpg -5915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itea579418-0a8c-4593-8e4e-c1af5a741bd5.jpg -5916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itfa3327f3-7f06-4156-b63f-697cdf13ced3.jpg -5917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itfb6d1775-bf30-4e30-bf88-e73f999bef4a.jpg -5918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itfb8bac06-4a88-440a-993e-2157d5cba17c.jpg -5919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_kite_in_itfc835f6a-877f-4e64-8f49-656a9ec711ec.jpg -5920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it01482909-2d12-4703-9c63-96576e2950bd.jpg -5921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it030c90c7-38fd-49ba-8a43-d20c0bf2dbfb.jpg -5922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it056605c6-a04a-4b63-865a-18225e6f3d2a.jpg -5923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it059318b9-82cc-463e-910f-f79fa8aa24f9.jpg -5924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it0c020cd2-1e01-4224-b481-bc6ac3788af9.jpg -5925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it0e978292-5419-4c40-9f8b-9f8e5b6b647b.jpg -5926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it0ed6428d-04ff-4387-bc26-dbec247eb623.jpg -5927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it1552d218-7550-4439-92c3-4c06b25feb71.jpg -5928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it18389039-e5b3-4db6-a36b-7f8978da8270.jpg -5929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it185e5536-7bfb-4c94-aef6-ad2917739683.jpg -5930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it19c4476c-37a1-4723-b92b-e535d664a91e.jpg -5931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it1b070988-8d86-4845-a0fc-ef31886f42df.jpg -5932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it1c550387-d7e0-42eb-b937-25b35c6434a3.jpg -5933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it20ac3a1e-9db0-4552-9d91-76564cbf57fc.jpg -5934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it23852376-5c8a-447f-aec8-d200df9c4c07.jpg -5935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it25fbb8a9-142c-4b06-a027-a58e270aea31.jpg -5936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it26910987-c2a5-4b3e-8540-b70d9b495a52.jpg -5937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it29ec37be-759d-401b-bb91-d82a583b51b1.jpg -5938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it2a1eb6b0-1492-4d64-8c21-19338d171e73.jpg -5939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it2a274c1c-dd5f-4eff-b108-edf50921ecd3.jpg -5940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it2c7eb696-7555-46fe-8882-8b0feb80908b.jpg -5941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it310d7b8b-94ea-4980-a1a0-1da9c1041791.jpg -5942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it31a4a2f8-467b-42b8-bf36-82e1dc2af94b.jpg -5943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it32816d29-5363-4b0f-9f29-1f50e7dd400f.jpg -5944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it340e8cc0-6c9b-45ce-9a7f-32ea97e4185c.jpg -5945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it34795942-de13-4a3a-a326-4edfde313b53.jpg -5946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it4297c370-32b1-43ee-8be4-f7ec2bc76f90.jpg -5947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it45ccb550-a331-468d-9c31-b0de0e98359d.jpg -5948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it49c118e9-ebe2-410f-8720-ad99112fde48.jpg -5949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it52941e3b-bf49-4fe6-9141-261d2d9d1ee0.jpg -5950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it55f03112-74df-40ee-8760-38c49a2438d4.jpg -5951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it58a7c375-709c-473b-8c5c-dfb216ed54de.jpg -5952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it5b29829d-6dbe-4bba-9ce0-7a152781de09.jpg -5953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it5fd02193-7b1e-4f7c-9480-41028b40dad0.jpg -5954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it60d344da-d640-4ca3-881d-bea5d793e3ff.jpg -5955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it62cf0c98-6613-486f-86c5-9e48c8789121.jpg -5956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it63642d8f-2a12-4c24-8521-93beb371cfb9.jpg -5957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it63a6f16d-8c6b-4982-a624-5a35f9a79c87.jpg -5958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it64df0516-8bc7-4f32-b206-2744f47cffd4.jpg -5959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it65345a89-2394-4336-a183-9531d740ad93.jpg -5960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it68da052b-1293-4afe-a8dd-e835e5dccecf.jpg -5961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it6c272333-96e6-4072-9f5e-cac16e2ecd7c.jpg -5962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it6e866c94-d433-4573-a82b-ac3e7a6c14e5.jpg -5963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it7043a3d6-008f-40b8-b771-01cd5cf6bee4.jpg -5964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it75eb5d44-73df-4f7e-95cf-0dc6ff397e61.jpg -5965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it76177060-e617-4b25-baca-87d60fb58260.jpg -5966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it7785ab41-eb03-4927-b07a-df9716b37973.jpg -5967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it78d28b21-0b9e-4ac4-af66-2d8738dac485.jpg -5968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it7926e7cb-bc68-4757-aa33-ed0ab2a18a3a.jpg -5969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it799a515a-096e-4831-b3af-0763ec97697e.jpg -5970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it7d645c3b-2b05-430c-a7ee-4f4dd10fe606.jpg -5971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it81c42c25-762f-4f20-88af-67f76e4b9a81.jpg -5972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it82f8781a-322f-468b-93c6-16994ec998d1.jpg -5973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it8a4844fc-5bfd-48a1-9290-6d8a7d4fa008.jpg -5974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it8b1af74d-0d75-4f95-8030-cab350ad7a69.jpg -5975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it8c2ece05-d3d0-4193-b395-2aede461b8e0.jpg -5976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it929df1f4-3f1a-484f-9b67-7f0b8af28803.jpg -5977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it96f77eeb-a4e0-4cc7-bdbd-56aadd2b6310.jpg -5978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_it9923f055-afc3-4354-b898-6b37d8e85290.jpg -5979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_ita33f3e4b-0613-4829-bf9b-f35e0b02e178.jpg -5980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_ita3d2d3ca-c4b0-4436-aa2b-a9fc19fc4c81.jpg -5981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_ita74090c5-9894-4c3b-b763-f37b0cbf0dbe.jpg -5982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_ita873f164-882c-49ab-b7a3-eb0fa1d9677a.jpg -5983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itaa550baf-055b-440e-938b-e6b45ebb509b.jpg -5984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itac74009d-a93e-419f-867c-7e37a4f55c1e.jpg -5985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itae37bd58-f3e6-4141-96b4-8f04ac4264fa.jpg -5986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itb13c7a60-9244-40c6-864c-cdc2d95bc95a.jpg -5987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itb5ad421e-ebf2-43da-a5d3-816ece699243.jpg -5988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itb8aab91b-c4ae-43ce-a59a-b8f39db0bde8.jpg -5989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itb94011b1-228a-43fb-9945-9bc7a2bc78f4.jpg -5990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itbe213da7-d935-4bd6-9283-a20115554eec.jpg -5991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itbf17b63d-7890-42c9-9240-2a0b04d6c0e0.jpg -5992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itc0077f83-2275-4092-b6b3-d50bb3187a8d.jpg -5993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itc489e127-1a8f-4c08-8b8a-4634a28d9f9c.jpg -5994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itc5a9cbc2-5ab3-46b3-aec4-58faaaa1e9c0.jpg -5995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itc6b497fd-b1cc-4a49-87b8-9f894657d7db.jpg -5996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itc6cdac57-11b5-4221-8c91-5f3ebcf8f8d0.jpg -5997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itc7584262-ea36-4676-9bb1-5ca4d26d9006.jpg -5998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itc788b1fb-cc15-43e7-b2e0-8c32adee6d78.jpg -5999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itc96045e9-263e-4f0c-ab12-ca96207971b0.jpg -6000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itce2fdc91-4bc7-4a38-b0d9-8b5967b31ad0.jpg -6001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd067adf3-a454-4fdc-abad-5530f44b6951.jpg -6002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd227d4d8-76ae-46ae-a65a-d7db9e7f543e.jpg -6003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd3dfd6ad-ad34-4e25-a552-e7f05b08c8da.jpg -6004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd3f7f885-8e70-4284-b138-e535e4e6a1d8.jpg -6005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd45ece4a-2169-4c74-96e8-53610c0b8fac.jpg -6006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd6120d5a-8b32-486f-9262-99d3c9b10f83.jpg -6007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd8640670-4b08-45c6-9c66-00aa93e4c7c2.jpg -6008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd9a566f2-d870-4820-a0b1-69d05972ab82.jpg -6009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itd9b53260-e7f1-4e81-9023-1db0f8570b69.jpg -6010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itdb93d830-cd12-42c5-b9da-e44c1cd6820d.jpg -6011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itdbd8bbc6-b203-48bd-884b-f18609606464.jpg -6012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_ite069651c-b6ba-49b9-9ec7-34d8bfaea6d0.jpg -6013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_ite82c0461-b630-4f70-aecb-5914c5d139d7.jpg -6014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_ite91bc157-15e8-4198-9d6a-632619da630b.jpg -6015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itf4007d48-0328-41eb-a0ef-31111ef73ba1.jpg -6016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itf5db4977-d48e-4407-ada4-9754b2d4781c.jpg -6017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itf6a632ed-e5b0-4c08-bf85-1808e5020a84.jpg -6018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itfd76953f-24e1-492a-a743-2915e3795731.jpg -6019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_knife_in_itfe6d0ae5-6228-48de-977f-d335abd3abe5.jpg -6020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it0312dc09-59c4-4b24-baf8-08c49274f218.jpg -6021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it09542beb-8de3-4f87-b721-8aea15cbdbde.jpg -6022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it09c391de-ee48-475c-8fac-c619b9bbcd95.jpg -6023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it0d2c856c-28e9-40a5-9649-503e1e6aae38.jpg -6024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it14d8eb35-a726-482a-9d63-cb103af6512d.jpg -6025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it18b30dff-c2ae-4480-bbfc-8088d62a9719.jpg -6026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it1baea363-9f3f-46da-a120-c5bc0b1845ac.jpg -6027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it2231f0e2-b756-46c6-9696-3313f74fb1ed.jpg -6028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it23f4b3e9-8b13-4130-a9d3-845710740954.jpg -6029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it28209083-a635-493d-b5df-9b8806512bb3.jpg -6030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it28c4ba99-f65e-403b-af10-924f6a443e2d.jpg -6031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it2b41ee6d-5028-4810-948e-13cd78b56b10.jpg -6032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it313fd4b8-ccaa-4728-9766-9c72e4d4be39.jpg -6033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it31c075a2-2471-48f2-8e29-20572965b9ff.jpg -6034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it39865c7a-c02d-4ab2-85e6-ffa958c07ea7.jpg -6035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it399ee5ff-5110-42cc-856f-89cbc4f2a5c7.jpg -6036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it3f904619-530c-493f-bd8b-b80d9937e878.jpg -6037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it401f4b96-0589-4ab8-995d-be0692e8fc9f.jpg -6038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it4087ba91-6cf4-486b-83c8-c234b6b8e6c2.jpg -6039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it409fd4eb-95d6-41ff-9044-ee905e321459.jpg -6040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it41ca587e-bd7a-431a-a235-18e6a9a6d656.jpg -6041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it433685f2-1a31-4f6b-a198-1b1e1c8451e3.jpg -6042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it43ec850b-c991-40d4-b12d-91418958481d.jpg -6043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it44ecf577-f77f-45eb-ac3f-2e4602fe0167.jpg -6044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it450eff20-53cc-4452-a626-7be1836b07dc.jpg -6045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it4af3498d-69d6-4a5b-96fc-e1ff984b9a9d.jpg -6046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it4b756d51-d934-446a-be98-92c0a3da9a81.jpg -6047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it4cda7b62-da65-40cb-b06d-45ea2dd8330f.jpg -6048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it4f5ce606-216e-4ad2-be41-9831368c6204.jpg -6049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it530ecfb8-cb2e-4264-9151-232a8392e8b4.jpg -6050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it538c19fc-b649-478b-896e-ea6132cc4fc6.jpg -6051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it575a54b2-48ed-47ff-a606-60d065177843.jpg -6052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it577cc8c9-91d7-4f54-a851-b244664e2319.jpg -6053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it58d6e475-547e-4430-95a0-b4ee090001a1.jpg -6054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it5bc70816-8d5a-448a-bbb2-0f23ca8a3a1a.jpg -6055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it5c4d2890-d05a-4302-b5e1-b85c2ff60fe6.jpg -6056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it5d5fab92-f7a9-4c7d-b2f1-23cf36ae376d.jpg -6057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it5e2647f7-a12a-4a2d-b9ba-c0eb6ae33ceb.jpg -6058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it6c50ce4e-30b4-4ad2-ad7f-f58eaee0f79c.jpg -6059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it74438787-e8ac-43c2-803c-0b4584c1c45e.jpg -6060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it790befc2-c6bb-49a3-982b-6f42866cbb88.jpg -6061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it7b195ad8-40e5-4721-a225-98db9c823783.jpg -6062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it7cb99e9b-830f-49b3-8ad0-4814a9bbbf70.jpg -6063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it7dbab70f-04cf-4197-bc7e-32d706ad07ea.jpg -6064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it7e67f953-efe4-42d3-b25e-5200112c8410.jpg -6065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it84dca55a-b2f2-4d30-9680-50c5285fd5b7.jpg -6066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it85a94391-50e4-4dfe-b1f4-92faebb27888.jpg -6067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it884cb646-0471-4666-9c4d-b63fd9c65462.jpg -6068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it89d5cf56-7ba3-4aa3-9a97-73e2ae9b428e.jpg -6069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it8bd2882a-0a0f-4ac3-8b2d-a461ba105710.jpg -6070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it8cab886d-adef-4466-9ca3-7bf6d6117f7e.jpg -6071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it90fc161b-b2ea-4b1c-ba47-0673fdc9bf1a.jpg -6072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it91ef98f1-804a-4c70-a1d2-5d6e22c20b3b.jpg -6073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it9d2273ec-9cc0-4ed5-9eac-006bf8c20890.jpg -6074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it9e6720e6-7a02-4b3c-a9bd-fd84d3d3bead.jpg -6075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_it9f702718-94aa-402b-91ad-dafe8fc0358c.jpg -6076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_ita3e244b6-8474-4602-ba79-bc59bde11cd6.jpg -6077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_ita9ef46aa-b096-4bfb-bcca-a9eb0da1cdb1.jpg -6078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itabe8f3f9-5830-4486-a0d4-74454dd0189a.jpg -6079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itac7a72c4-ba8d-4ff6-8c38-9b3b78e1457e.jpg -6080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itaed780c4-253f-4324-86d6-328edf7bf888.jpg -6081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itb2d46429-0a3f-4a40-b99f-05e4e94ef19f.jpg -6082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itb463c1f9-05ac-4ec4-ad86-e579c327dfef.jpg -6083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itb5915a0b-1618-4eb5-a522-885a4d3e5e2c.jpg -6084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itb5f72187-cbae-425f-baf5-a068d821d345.jpg -6085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itbbdf9335-d877-45f0-86d4-99c359456cc5.jpg -6086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itbc634310-5bdb-4477-8165-5c40bcfe53df.jpg -6087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itbd5ad120-fc3d-47ba-aace-eee3d1d53365.jpg -6088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itbdb74e49-2d08-4b0a-ace7-49f7880b51ea.jpg -6089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itbe56f0f9-24f9-4a84-9255-3d13772fe467.jpg -6090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itbf771253-3801-4ee7-b53e-6b763e51f3bc.jpg -6091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itc0254bc0-f879-40d0-926b-4df9bd709fea.jpg -6092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itc251cebd-e21a-455a-a1cf-8dcc90f46a78.jpg -6093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itc3af1788-bd08-49fe-9de8-2cb3045a6360.jpg -6094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itc67c6a43-7a17-4ca9-acee-cfd03659c097.jpg -6095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itcaf06325-bc92-4c97-92f3-02ab4a94fa99.jpg -6096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itcb386244-a542-413b-91d3-f8689143fabb.jpg -6097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itcb4b123d-5573-45eb-9eeb-5c49e2f326e9.jpg -6098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itcda4a173-f4ff-41c9-a48d-0b23ee6a8c0e.jpg -6099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itcf57fe59-eddf-4a21-b7a5-4392b104f99c.jpg -6100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itd5d56dd0-9302-4678-b18e-6324ca42a023.jpg -6101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_ite26a9740-e294-48be-a08d-bf1a85d4471b.jpg -6102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_ite5fdabe7-37e6-4545-9068-27167cc7da7a.jpg -6103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_ite8de6827-03fe-4fdb-8b00-736bdae0c1c7.jpg -6104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itea244784-5553-48e0-9e32-56062c63da9b.jpg -6105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itea2dda8e-2ae1-4248-a9e2-cd71f53547f9.jpg -6106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itec454d6f-a12a-4769-8352-3e08097dbfb9.jpg -6107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_iteccefd36-51a5-4c68-986d-13f0d77f4e1f.jpg -6108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_ited0047d8-f8f2-4726-891c-b1db404ba372.jpg -6109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itefcf0ee7-5722-49e4-8121-08758bed399f.jpg -6110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itf370a210-2e7a-4159-abfa-afc2ecda1b38.jpg -6111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itf4a89095-0b1a-4226-aad5-fdcb5ad8ebd7.jpg -6112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itf536c9d0-fa01-453b-8a18-f2d3e22fb227.jpg -6113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itf859f7c3-605f-4a15-ae14-df71f1cb82ab.jpg -6114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itfaaabafd-02b5-48c0-ad06-047cd3457559.jpg -6115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itfd26c9e4-dd20-478d-8e98-08dfcfa005ee.jpg -6116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itfda95d8c-ef05-497b-a564-f923ff056860.jpg -6117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itfde25e3e-e84d-4603-9b93-fc1c6ed2d2e1.jpg -6118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itfe8848bd-8793-483c-b3de-038d371ad8b2.jpg -6119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_laptop_in_itfed9efa6-c0fe-443c-8fd6-3722acf9a771.jpg -6120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it036fe16a-4a0c-4e38-aed5-9abbf9fb557d.jpg -6121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it03b6ba01-258f-444d-a8a2-51af38031134.jpg -6122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it0467f0e2-f919-4dcd-97f6-169a406d24ea.jpg -6123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it093cea6c-85fd-43a6-b65c-8027493de230.jpg -6124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it0c21dd00-d3c3-4b5f-b2b9-37e21e0fa3cb.jpg -6125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it0e090e4c-c567-4655-93e6-51f4008e596c.jpg -6126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it0f1416ac-7b24-45c4-bab6-ecb04a7b6fbf.jpg -6127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it14ed9306-90e8-40bd-9649-179f7348835c.jpg -6128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it1b5fa3fd-c6c8-41d2-8328-bdbe822dc3c4.jpg -6129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it1e3b5320-99d8-4109-84b9-54191c0293aa.jpg -6130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it1e74ce33-cf22-4734-903a-bf74d9c91bad.jpg -6131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it1e8c8c31-0a61-49ad-9e68-95d198bcac6b.jpg -6132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it22afa4e0-7b7e-49c8-a5c5-7026cbc847c2.jpg -6133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it26c5a07e-deb4-4c6f-93bf-b690a0a038e0.jpg -6134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it286e24c6-ee92-4324-97b1-b43467e643fe.jpg -6135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it2b31fbad-c3fb-419b-97d3-357408ed1fcf.jpg -6136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it2e32be3e-9917-4d71-bd77-70e6e6feb7fc.jpg -6137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it2f106b0c-bcd8-4f75-84a5-43976981b2a6.jpg -6138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it32ed2046-76de-434f-9751-bde1821f7681.jpg -6139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it33d21d0c-6e98-4047-9b76-c315bc6944d1.jpg -6140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it365bbf82-8e49-4f48-802f-5185bd1d1b84.jpg -6141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it3b343448-5dbd-4890-8601-0442d84e8e2f.jpg -6142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it418a4243-6964-4cd0-bc7a-f4d59a0a88f4.jpg -6143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it43860466-6b55-495a-adb0-deb8db279685.jpg -6144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it43e05393-e398-450d-92fb-35f108917e02.jpg -6145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it48b98409-00c3-484f-b66b-20fb1d4911d0.jpg -6146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it4c4d8c6d-d1f3-4def-b092-3aadd5af217a.jpg -6147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it4c97dbce-9cbc-4e06-9291-98e8f09ac6e5.jpg -6148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it4ebd0c9b-88d3-406e-a34a-15f7b2c6d492.jpg -6149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it564e8f88-e8d7-4c7d-843e-8370bbf494d0.jpg -6150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it577509cf-a0e0-45b1-83e1-a684b12e5132.jpg -6151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it581560f4-fe7e-4751-9e06-d70f060abb15.jpg -6152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it583357fe-0a6e-4a4d-af53-5308c96e443e.jpg -6153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it5cd4761e-736a-43db-8f56-f14b41f9e8e5.jpg -6154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it5dd8772d-684c-4b3c-a25e-fe51369df270.jpg -6155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it5de41800-c455-4eea-a60d-592fcaa0b5df.jpg -6156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it5dee352a-8ca2-4e2b-aa3e-ce12c9b49dca.jpg -6157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it630852cf-268f-4809-b352-0b83450458eb.jpg -6158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it6355a7d3-fd5f-4005-a902-595e9c147420.jpg -6159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it63922774-8afc-4430-8158-7befeaf01de7.jpg -6160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it6ddefdf6-8cfd-4fc4-b88d-4947e3385e03.jpg -6161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it6e3f1339-9031-4193-82ac-f1c5297f747b.jpg -6162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it70fa35ba-9ca6-4937-82a1-564ec839a8c8.jpg -6163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it75024ff9-6dcf-4899-9ba7-eb4c1287433c.jpg -6164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it7508b603-d61a-4978-aa9e-e427eba53eb1.jpg -6165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it7893f3a6-bacd-45f1-ac95-af88b0094307.jpg -6166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it7f66b272-debc-407b-ae31-fdec0e9bb585.jpg -6167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it7f78b3c8-1b20-43c1-bbf8-aec7deb76acb.jpg -6168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it82680b1d-8df0-4e36-9418-58b970c16a3b.jpg -6169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it828c8ffc-9846-4c82-9f97-92a8ead2c95e.jpg -6170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it84800a6a-9d98-4f74-bdfc-6b21a87b68c4.jpg -6171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it84e61098-bcf5-4b6e-ba7c-e2e823b0dad3.jpg -6172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it88c74d73-2e87-4645-8a3f-b03fb315df92.jpg -6173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it88dbe8ca-027b-447f-8fe6-0b1a9c1c038a.jpg -6174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it892ca09c-1752-42c9-be1d-fb563edea0b5.jpg -6175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it8ac19535-4a89-427a-a650-67d4a874e9e5.jpg -6176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it8f87fa47-80ca-4048-91b9-171587bb20f5.jpg -6177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it99386f09-4cb7-496d-9861-462b587998cb.jpg -6178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it9964118a-646f-4080-846f-578245cf5334.jpg -6179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it9d283413-8221-41aa-bb77-745f4e550648.jpg -6180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it9e554e3b-359d-4558-ad37-11069b2140df.jpg -6181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it9f03e52d-ffa7-43fc-9e73-9f147a4abd64.jpg -6182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_it9fc48472-2bbe-47dd-8ac6-eb348ae2e6fa.jpg -6183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ita1ff826b-4fee-4d0b-a01a-d5cf207504bb.jpg -6184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ita24438d3-d1e8-4435-b8d4-796384d75b14.jpg -6185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ita4d90bff-0c88-4bc2-99be-e1a5e6c72390.jpg -6186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ita7b71ab9-0204-4a4e-ae8f-7273fcb30884.jpg -6187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ita83a92da-50e3-4dd3-894a-93038d3d4e75.jpg -6188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itb11c1842-527c-4711-9f33-57e93867c869.jpg -6189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itb12b10d1-6ce5-4af3-8bfa-1fb57eb05b89.jpg -6190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itb3989b3e-131c-4935-990f-9666c2afcd93.jpg -6191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itb44a860b-eec3-44a7-9db3-92a218c9f41d.jpg -6192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itb4ffc31e-61e2-44df-be62-747bd12b0ae1.jpg -6193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itb6077f58-0c1f-43d5-85d4-7bfb4102ddb7.jpg -6194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itb863fb04-a0c4-40f3-ba2e-830a5653ce25.jpg -6195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itba6a6931-875f-40f1-92a2-017b283e3940.jpg -6196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itc627edfa-e7ee-42b5-8433-9c6a491ea50c.jpg -6197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itc6bd31be-5485-45d7-8468-17b1d2006587.jpg -6198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itcaa56f1b-61c4-4caf-a530-2da1f35c52dc.jpg -6199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itd5a5b65d-6886-4def-ac11-8d9966b88d81.jpg -6200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itd8a2dcdd-33e2-4a1b-b2d4-8a4eff1c9d29.jpg -6201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itdb0153cb-fc89-406c-af23-d0eea8d4d2c3.jpg -6202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itdcd4104d-dbf4-4a8b-b2f9-f50f2c8656d6.jpg -6203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itdd317b80-b94d-4d7c-9765-304c96a08e18.jpg -6204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itdd763efb-3225-4ea4-b0e1-33091666d9fb.jpg -6205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ite16bf665-d610-485d-b6f2-8e2b21405e08.jpg -6206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ite1862098-15e0-47d4-b84a-f36988af3a2f.jpg -6207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ite3d23b6d-9049-46a9-b4d4-b967cc5458e8.jpg -6208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ite67e1608-98dd-4e04-a3e0-294db6e740b2.jpg -6209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ite79cd438-be8d-4c57-9ec1-716181579f70.jpg -6210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_ite7de7ae8-63c9-4c75-9559-ea55612090be.jpg -6211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_iteced140c-8e8d-4868-bbb1-48912d6dfd71.jpg -6212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itecf9da94-a3e1-4b79-bb6d-cb5ed9bfd1fb.jpg -6213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itedcc5e15-fe29-4f5b-b3c1-483740ecb984.jpg -6214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itee0ed16f-5ad5-4310-9ebf-c4865c5a4dac.jpg -6215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_iteeb83632-46d5-410d-8b29-fdd0d083a865.jpg -6216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itfb8a8cac-005c-4745-8434-475d479b510f.jpg -6217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itfbc545bf-dc8f-4fc6-85be-2599a73f70e8.jpg -6218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itfcaf9a56-dee5-47b2-9610-d30098274dc8.jpg -6219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_microwave_in_itfd408ac4-5d9b-430a-80cc-4092b494e81e.jpg -6220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it03359090-a578-4737-ac93-74b70d1a2196.jpg -6221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it0386cdc2-1d51-4639-99fa-8dc9d7e00d3d.jpg -6222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it0872adc8-4a1e-4267-9570-66992872c9d0.jpg -6223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it0d5c9602-e8f3-4b86-8d9f-8060863700dc.jpg -6224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it0f9a1ab4-71a0-454f-895f-45c9f28fd512.jpg -6225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it1ac06cb1-6165-44c0-b0bf-950b8d636b98.jpg -6226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it1b618119-92e1-4c3d-afaa-2e1b57f3df55.jpg -6227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it1db059fa-ac06-4a5c-97d2-e160cffa4c22.jpg -6228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it1de98f32-00a0-44a1-aa8b-a285848f17c1.jpg -6229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it203175a1-d63d-4657-91a6-4aa7457d276b.jpg -6230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it22b6500a-5447-43b7-afc4-47448e8336f9.jpg -6231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it232b3fd0-a549-4619-be85-48d50377f420.jpg -6232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it25d79eed-1f0a-49ea-b409-2ade5bc0ef16.jpg -6233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it28f6ad6e-b5a7-4947-aeff-925f7f66832f.jpg -6234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it2a00779d-1e15-4d7b-bf60-27ca4d955ea4.jpg -6235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it2e207413-9738-4cb9-ace0-4059a0009df2.jpg -6236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it2fb5d488-03c0-476b-8cef-57333697cab2.jpg -6237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it302736df-41f9-46a6-b24f-aa4587f15dbf.jpg -6238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it3176292c-7961-4a01-879c-39c92e1a12cc.jpg -6239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it325a2a1c-ac00-4389-9cb3-44d931f326c3.jpg -6240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it38d8619d-86f9-48b2-b9c8-7e49c4bcd284.jpg -6241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it393a1ce9-4b98-4afb-9cef-e19cebe0345e.jpg -6242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it4481416e-9ce2-43a7-9920-4150a86e4222.jpg -6243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it462bbdbf-d469-4bd1-8321-d7527e403be3.jpg -6244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it48548b46-1a72-4411-9c84-c44c2826213f.jpg -6245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it4881b0bd-11c3-4229-839f-62c5189d3922.jpg -6246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it4999df6f-8be5-4a77-91c6-588d832d826d.jpg -6247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it4cb52f86-c6a5-4170-90f6-cf6d9cc54ec6.jpg -6248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it4d1d8116-18f7-46a9-894d-a8dc4ddf2980.jpg -6249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it4e1574d3-c652-4795-9445-6d382905d91d.jpg -6250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it4f0ba914-6070-4331-b1c9-9817b37dfb35.jpg -6251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it5378782f-20ee-491b-bb22-d849ac69918b.jpg -6252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it54e9fd70-62e7-4949-8ded-caebd281126d.jpg -6253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it5704ae5e-b375-49bb-ab2f-a1e8a157a05e.jpg -6254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it579c01c0-5458-46fb-b5ba-1924140d39cc.jpg -6255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it57a0d157-bdf0-438d-a14f-30747014682c.jpg -6256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it57c78070-d64c-4ad5-84fe-11eb2013c3c5.jpg -6257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it58a18557-25b9-4023-a454-fea2a55bb73a.jpg -6258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it58ff9079-94f6-4cbd-b2af-5ab003aabeec.jpg -6259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it5b346eed-1dd6-4d14-b778-8b1d59eef255.jpg -6260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it5c783eee-ada4-46f8-b89b-8eaa46576451.jpg -6261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it5cd72c5f-7d52-4436-b555-626d359518ab.jpg -6262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it5daac48f-58d7-4cac-941e-ad598e08f408.jpg -6263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it5fc5dea4-3eb0-466a-bc8f-c2d2709dd1ac.jpg -6264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it60ed4b7e-3aea-492e-9378-54131d4cd056.jpg -6265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it63715f86-df05-470f-a1f2-a3abd88adb47.jpg -6266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it6419829a-45c9-4ccf-a4e7-65e640fd9937.jpg -6267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it677640f4-8330-4b8c-a580-cdeb94edf81c.jpg -6268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it6a370b62-d307-4d1b-bac2-386f3bde6f52.jpg -6269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it6aab0037-cff1-4382-bed0-9a09699cb398.jpg -6270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it6b9edfd1-8e88-42aa-938d-964c661d432d.jpg -6271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it6c864da3-9dd0-42f0-a2a6-0a311be5bcf7.jpg -6272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it6f34aef3-862b-430c-a48a-8c04e016a139.jpg -6273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it75930ee4-99ae-4d54-998a-fce5179df9b4.jpg -6274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it765ea0d2-1256-4cd5-acd7-9940930e0636.jpg -6275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it7c6909a3-3f01-4b1a-8a0f-f0d68df126ac.jpg -6276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it82bd54a5-5318-49b5-a2e5-0534172124d0.jpg -6277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it84706612-9735-4ed3-8bec-db19d07ee8c7.jpg -6278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it879bb7ad-2d3a-4493-8f73-d9f83c554413.jpg -6279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it88b1aadf-3e82-4d5a-a9cb-758ebe39963c.jpg -6280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it8b90e616-bcca-4fdd-b61d-cfabdf438611.jpg -6281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it8cde6d44-5f9d-4bb4-8104-437e4ccf7761.jpg -6282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it8e368a1f-4ba9-4372-8bba-bf7a7352879c.jpg -6283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it92492e99-99d6-4d97-87ee-46aa2d24b996.jpg -6284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it980a05a0-a40b-443f-93d1-ec8600c60431.jpg -6285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_it9a36f1c2-10ae-4837-8cad-c88b3a9b58cd.jpg -6286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_ita2df5bf1-e28f-42a4-9ded-c4b54067ce63.jpg -6287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_ita2f10c7c-068a-4e83-b61c-afb3e7d0dae7.jpg -6288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_ita33096c8-5e33-4c41-87c5-9167043f916f.jpg -6289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itadeaf5d4-41e5-471e-a3e1-5add6347b050.jpg -6290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itae9d5775-dbaf-4718-b2f7-b5987320dcc0.jpg -6291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb0e25a06-ab85-4c58-baeb-da1f5306b2db.jpg -6292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb13a8b61-5625-4374-8423-be90ea0d494f.jpg -6293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb4b339e8-d74f-4f20-b94c-2b1f98ce82ea.jpg -6294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb51617e3-ad69-4d93-ad95-51e20b9d8e14.jpg -6295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb5c2b083-9c4d-4132-84cb-484419a13a07.jpg -6296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb6e1599a-730f-4b19-9bce-6bd9997ba6b1.jpg -6297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb7d4818f-f5ed-48ca-a98f-1647d220baf4.jpg -6298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb93592a7-be92-4bde-a393-88323d93155d.jpg -6299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itb949bde5-31b1-4e7b-b323-297a9eca90e1.jpg -6300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itbdd2d635-e454-4181-8f72-691d622ca27f.jpg -6301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itbef82cbe-a225-4033-92c4-9fc27245218d.jpg -6302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itc48d293f-a568-4f92-9919-a4234039c510.jpg -6303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itc51fcf0a-c5ad-4652-abbb-d53c13f02109.jpg -6304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itca221577-7fc3-4402-ae87-a7acadd884c8.jpg -6305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itcbb40b66-e1c3-434f-85ea-80cd4336ea4c.jpg -6306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itd19474ae-a599-4d72-ab4d-a5f8f804527e.jpg -6307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itd3d557fc-8087-44d1-9b7b-3a118f9bb31e.jpg -6308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itd7edc1ed-79a8-4c29-bb53-bac454d2a58c.jpg -6309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itdcd89e91-ce4f-4dde-92b9-d78250bba473.jpg -6310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itddf1f039-42e6-4845-bc26-7f0a73983110.jpg -6311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itde823b48-b71d-4bf2-9d28-a86f86b06116.jpg -6312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itdf02e192-a904-42c1-b5bf-ea3b9f0ecd3a.jpg -6313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itdfa35cf1-3bb2-497e-b535-700547184c83.jpg -6314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_ite849064f-84f6-4d3f-a99e-f7cfd85e37bd.jpg -6315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_ite99916e3-a077-4733-82ca-3288dd4efd98.jpg -6316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itf3398c40-482a-4ee6-bf76-1c44b6358f48.jpg -6317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itf8b9eafa-ca74-40a0-b5df-702fb24cf1bb.jpg -6318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itf9a1ac3c-ecb2-4776-96db-0fe9aa6c991c.jpg -6319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itfb003b7b-ccbc-41bc-8726-03eb8f914adc.jpg -6320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_motorcycle_in_itfda24e8f-8744-4062-8dd5-676cf61a06da.jpg -6321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it01ee3073-b8e9-4e37-80d2-8a83ca614774.jpg -6322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it0229c41f-6cca-42fc-a0b5-f8c5f4782012.jpg -6323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it0476f8e7-2a8f-4426-b4f5-fcc62fcf0190.jpg -6324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it085afc7a-05df-4e80-ac97-1baaeebf69f5.jpg -6325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it09d3650a-ff12-4f83-afbd-18535ee0ac5e.jpg -6326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it0cf498a7-3fb7-4125-8102-d552e59e7116.jpg -6327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it0f4ac38e-2e46-4fd7-992a-31de3e884647.jpg -6328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it16e6b29a-3740-4255-8f38-29d29a1780f8.jpg -6329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it1783c9ba-d40d-4a06-ae52-39098991785e.jpg -6330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it1cc7caab-2afe-4988-9efc-fbca8ceeaf88.jpg -6331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it1cca1a94-ac84-44fe-9829-291421b60a78.jpg -6332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it1db27830-fbe0-4adf-86b1-33881c098203.jpg -6333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it1eb16c10-2fde-4b38-aa99-33ecaa625659.jpg -6334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it1ee3706f-ad5c-4dfd-8ca5-96c4cd38cda6.jpg -6335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it206e8545-369b-4798-838b-f6d1ecf64e94.jpg -6336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it209e012f-1400-42cc-b510-5f47e5d3a065.jpg -6337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it21f0e629-3817-4354-a376-ab4930f7fd19.jpg -6338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it22bb9c61-24d8-41bd-96a8-e296a87be6da.jpg -6339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it22cd2829-9c44-4574-8a32-cc8e9b32f10d.jpg -6340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it257ef9a6-e83b-4467-a260-56387bbb90e4.jpg -6341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it29e91edc-4644-40c1-9578-9ac97d48b819.jpg -6342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it2c9a61db-7908-4e79-a218-f6333d8f4906.jpg -6343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it32c0ae1f-1df5-45d9-9a9c-a5ad4cb2c51e.jpg -6344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it398e4abf-7f2f-4005-9fc0-a523016500a6.jpg -6345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it3b8edba9-3663-40e9-bd46-ba794bd24345.jpg -6346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it3c04b401-677d-4c84-9d3f-3382c5c5b8ff.jpg -6347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it3df10146-9f73-4b0c-bd85-b4854fd0da6f.jpg -6348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it4014e77b-44d9-4a9f-8f5d-b2680bbf37b6.jpg -6349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it4389a34e-cf89-4325-ba88-6bb41cb02b11.jpg -6350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it4428bde2-aab5-4e0c-8083-a00fd2611bd2.jpg -6351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it4b182f3c-f25d-4d52-bbc6-96e8ad639748.jpg -6352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it4f74da34-8650-4c94-9648-8a74e7def7d0.jpg -6353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it4f9cc07a-c665-49a5-9e7d-625fdb8955c5.jpg -6354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it5092cf41-242b-41bd-ac2e-6b9aa681b62a.jpg -6355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it5144945d-6f9d-4567-abaa-a50bda58a761.jpg -6356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it5473cfdd-0f58-4325-95a3-064fffe0fe4c.jpg -6357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it56124ba3-a92e-4c21-a744-90c8f1eac351.jpg -6358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it5d95ff50-88e6-4d54-9b4a-ad16100964ef.jpg -6359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it5e0db61d-4458-4ece-b5db-3d8e3cf0c52b.jpg -6360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it60505ff6-c371-49c9-b00d-83072b153605.jpg -6361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it61ab1b52-8541-4ba2-86b9-a0c107a40a95.jpg -6362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it660610a1-260d-4d17-9001-b454827f92c0.jpg -6363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it66d56faa-081b-4511-ae21-3cc274f2301a.jpg -6364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it6a874a15-c006-4297-b3f2-00e311335743.jpg -6365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it6af82630-a7b0-4ee6-97e4-13c9cf4b4ca6.jpg -6366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it6c0b4955-e286-4a81-b5c4-a1ae8bae9bba.jpg -6367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it6cda1893-8f5c-47ab-b073-ea5c174d8cb2.jpg -6368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it74178f82-f115-4d3e-9774-76201419f074.jpg -6369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it746ac290-7146-410b-900b-265046bb4075.jpg -6370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it759c1eb3-b217-4796-8c18-39a461d63572.jpg -6371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it77c4553e-60e0-4aeb-abe2-ce5af6f97334.jpg -6372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it78f770be-0a15-4ef5-a980-8986e70c5075.jpg -6373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it7a373799-7889-490c-8099-9f14d5221a30.jpg -6374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it7ad6d9ba-31f1-4d5e-8c79-dc027d6e9a72.jpg -6375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it7b872867-babf-44ea-8fd9-aeac0217eb1b.jpg -6376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it7e15778b-30db-4718-a6e2-3ce23e68ecbe.jpg -6377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it81df50b5-770f-490b-92c1-8505950a25fe.jpg -6378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it854d3314-a97e-498b-8bfd-70481ca65d5e.jpg -6379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it86d33097-061d-413d-aff9-f598a6a25d0f.jpg -6380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it90207bcd-62b6-443b-9809-db24dd3d1dfe.jpg -6381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it9333962b-17ac-4110-8144-4ab2293c9d17.jpg -6382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it94411425-8e24-409e-a293-4ccf5dd3dca2.jpg -6383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it970eebb6-e9cf-44c2-81b5-c54d2c4f7d9a.jpg -6384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it9ad31bca-70b2-4f85-8187-3b0173aaf3d8.jpg -6385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it9c517bcc-72b6-4a10-a8a6-b8ed49faad0a.jpg -6386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_it9d4977bd-31f0-461e-a704-ffe48f49b51e.jpg -6387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_ita47771bf-15d6-4727-8d28-45b6bc05e0ba.jpg -6388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_ita4f9334f-9123-4cf8-89b8-c3f26b6c7cc6.jpg -6389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_ita5d47df5-e649-4021-9e56-78b9be11fbc7.jpg -6390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_ita9ddee24-436e-4961-b994-328e747a9593.jpg -6391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itabcd97da-df5c-4041-bf32-4e77acc0fd37.jpg -6392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itae2791db-65fe-4b95-b6cf-5e87446eb99b.jpg -6393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itb269f75a-66e0-4343-90ea-b21d3c148826.jpg -6394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itb51f6d82-b5dd-4da4-8ed8-75406e27c198.jpg -6395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itc036739a-15ac-463e-9e71-4f0e64fd829a.jpg -6396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itc1464274-11db-4a6b-a375-39e8b4ed20f8.jpg -6397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itcabae27d-7340-4b48-955d-ef2cc5c9e3cc.jpg -6398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itcca9064d-7f11-4e9c-9744-d011dbe74caf.jpg -6399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itccbe6b59-9a72-41dc-9069-5070645c332f.jpg -6400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itcd4a4dca-e211-4b59-bc7d-405bd472635e.jpg -6401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itd5a01080-2754-496e-b3cc-76e6b3f9aeaf.jpg -6402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itd7d90778-dc3d-46b5-a588-259ba6c44751.jpg -6403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itdca32ced-38ef-4d38-abc2-fa16e83d2551.jpg -6404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_ite01d7b10-dde1-4990-97dd-e2c1a560ae0e.jpg -6405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_ite4ae1fe0-01b6-4314-af66-9519172b6b4e.jpg -6406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_ite5a11a7f-8741-4562-9ed9-eba3ce9be791.jpg -6407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_ite8861d11-05fd-4d7d-b342-e4b2630e9ad0.jpg -6408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itec8033fd-c243-4c93-9e64-d2a20e5db73d.jpg -6409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itf0e31122-cf8f-429b-978c-ded74e1c8643.jpg -6410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itf1f844c7-b12e-4a31-b58f-104b57c89557.jpg -6411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itf1fdcace-e15a-40fc-a278-aa85bc963a73.jpg -6412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itf243c1a9-4bfb-4e96-a396-09052d2375b8.jpg -6413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itf5438c3f-c3fe-48c6-a7eb-6b63c7d9f8b0.jpg -6414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itf7e0422d-2802-44d4-baab-a382673f86d4.jpg -6415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itf8c3bca8-4043-472a-9127-3741e69b3fa2.jpg -6416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itf9d1a9be-4b54-4fdb-8e95-2b1ceee7d9d9.jpg -6417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itfb0679b2-425f-440c-ba69-3fd913c44b41.jpg -6418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itfba64b64-38fd-4c63-ac92-469aa9f6eb70.jpg -6419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itff3e5df6-76eb-4228-b51b-c81b56a17ecd.jpg -6420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_mouse_in_itff69d484-ac83-4e32-b9dd-4c04a2a0ff91.jpg -6421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it00469e58-feab-4f4e-b103-5519db877bfa.jpg -6422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it00b34ac6-dc14-4093-bf79-e18adca47278.jpg -6423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it040cba04-67b9-4677-8475-7e57854c34a8.jpg -6424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it072bd8c5-c3ae-423c-afc4-a222b21c74c3.jpg -6425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it09b5f659-dfda-4241-aa62-c05ad98bc93d.jpg -6426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it0efdba42-3b84-49e6-919e-7d3c5db7e5bb.jpg -6427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it106ce09d-9547-435f-b7e5-373e5cc6ae2b.jpg -6428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it11e3e83d-7da5-47c7-a131-ce2ea4f869a3.jpg -6429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it18ad7c39-c9ca-4fe5-92b3-a68666c0431a.jpg -6430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it1a131005-47c1-4687-b6ec-cd31c60f7510.jpg -6431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it1aa648ec-7a28-47b1-9939-f4532dddc5be.jpg -6432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it1b5b7e10-cf73-422f-8e81-493691598c77.jpg -6433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it1b8761b7-ae23-4cd3-ab43-a627c8a8098a.jpg -6434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it1c89ee92-baf0-4541-8379-7d836c40228a.jpg -6435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it1ec3b62a-5981-4347-8fa7-be19c64cceae.jpg -6436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it24362a86-bfb5-412d-9254-e4cdebd07031.jpg -6437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it2c5da5d3-02ad-4c05-a7b5-fa0da69fc4b1.jpg -6438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it2deb226a-909f-46d5-9488-9239ba1f7c91.jpg -6439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it2e7e35df-d350-4760-a00e-74d3dc5d6915.jpg -6440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it302d4c95-2223-4468-80d2-5aefaa760c93.jpg -6441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it303bf916-308f-4442-9870-f72011252d1a.jpg -6442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it32da78d3-4c28-42e7-b54c-7d413e0bd9c1.jpg -6443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it35717e81-095d-459d-baa4-4601e354b439.jpg -6444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it37446934-e0b0-4d8c-8297-4a19183625f9.jpg -6445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it393b5fab-7b46-4d01-9838-eea641d1bf0b.jpg -6446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it3edaeef1-48fd-4304-ba75-20b99af36b41.jpg -6447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it3f350f8a-4967-4d9f-abcb-81a1a44ec1b0.jpg -6448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it4135af3e-aca8-4216-85c9-03cc16545cb1.jpg -6449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it416470a8-5161-4920-b3cb-1c8a09329f8e.jpg -6450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it4bf804ff-c963-404b-a530-d710e2739524.jpg -6451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it4ce95ed0-628f-4641-8240-f614a851f240.jpg -6452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it4d2e9f85-5f91-41b0-b10a-e8030ca040e5.jpg -6453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it50dda2e3-0197-43a7-9cce-c59cc8ceb178.jpg -6454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it54b10271-2685-4fbb-b52a-f0b9f46906eb.jpg -6455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it582d83cc-26fc-4fa7-bec0-5aae091a7a7a.jpg -6456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it59b2869e-155d-4660-a93a-3b84f61f754b.jpg -6457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it5acf8ac5-0133-45e2-993d-3a5ee22dab23.jpg -6458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it5e9ca73d-1c52-4c8c-acbe-0afa50dc81f1.jpg -6459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it5f4a2b68-00e4-4652-8a25-10c188123d31.jpg -6460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it640e60cc-7790-49b7-ae45-686b16a274af.jpg -6461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it67a01e75-8126-43e4-89f4-3eabdddbc3e8.jpg -6462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it6aa2cd72-3d97-4adb-8f09-c500d34df057.jpg -6463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it6fb47a06-c8e5-4de7-be45-dc723b46b44d.jpg -6464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it700e96b0-8152-4b26-aaf0-e4d4c03560fa.jpg -6465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it7130a823-130c-498b-99cd-102d37b4c3a6.jpg -6466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it71dfc412-3427-4ba5-852d-8486bc496f92.jpg -6467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it72cad02a-e592-4d71-b78c-e19eedb30d50.jpg -6468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it78e07c64-742c-4873-9031-f527da4381fd.jpg -6469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it7fa15f20-1628-4386-b101-e6f1bc2e5c37.jpg -6470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it83b76917-9cd9-4a38-8991-3fd582cb62b0.jpg -6471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it83c3624e-7169-4507-a23c-e9b6c1bed29c.jpg -6472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it8485af9c-df7b-4f53-98fb-e6b849279c5f.jpg -6473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it879ea3da-f705-43f9-b58c-bf25be84af42.jpg -6474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it8b266d20-a1a3-4e17-b2d6-4a2ab84ceb0d.jpg -6475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it8f82d7ed-ad72-4bba-8bd0-40759dc0523f.jpg -6476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_it9a6a7bbe-acca-48e9-8d90-d599eb62f6ed.jpg -6477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_ita026bcd9-fee9-425b-ba64-34069f908213.jpg -6478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_ita17a55a9-e313-4c55-a29e-122d982fefbf.jpg -6479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_ita698f566-3570-497a-8506-96d237c8d53e.jpg -6480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_ita7dd993c-c3ba-4fb0-8ba5-fe9d6370c357.jpg -6481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_ita9a90296-69bd-4b2c-843b-21a7c4a93cec.jpg -6482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itad0b9365-4793-40dd-8cb1-0a00df1fff67.jpg -6483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itb4f027eb-a426-4ccb-a9b1-29cb364bd2fa.jpg -6484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itb57284a5-7a8c-4e4c-9ab8-a16d1904e9e1.jpg -6485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itb5901909-8c3d-436c-971d-f9efafc419dc.jpg -6486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itb62f0c2a-de56-4f47-a980-6aa88598a20e.jpg -6487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itb6cba178-3b2e-4416-ac75-8d87555b0e21.jpg -6488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itb8ccab42-9f9a-41c1-aa78-7e0b2e62c8ef.jpg -6489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itba448540-fc4d-4fba-b9c0-b62fbaa751b6.jpg -6490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itbb7a87a4-7fe1-4ad2-9351-cb7f8032a6f7.jpg -6491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itbbb79efa-ad0c-4fe9-afc7-bbfa009ea8ea.jpg -6492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itc042cc6f-9e47-4f77-9bf6-b4a1856e1b47.jpg -6493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itc0799b97-d7a1-4f5a-9412-5ca65f125a5a.jpg -6494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itc1584887-5316-4531-b2f8-d65a2df9a831.jpg -6495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itc2df9d72-c521-47af-97a6-90c3415d5f22.jpg -6496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itc68d767c-75b2-48a0-bc87-c9c3d0346d36.jpg -6497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itc9daa257-1768-4077-8141-792b8bd3a4b7.jpg -6498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itccf037e0-faca-434d-b9a9-3b7e8317bdfa.jpg -6499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itcfb77652-152b-49f3-9eda-e5138cffbdea.jpg -6500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itd0da93e2-c759-4ef7-93cb-fa68faa0a3f1.jpg -6501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itd1daa74d-375c-4ded-9797-374042efa8ed.jpg -6502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itd2bc2ca8-469a-42af-b9b7-3b12ccce0b3b.jpg -6503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itd49dd354-2d0c-42d9-b365-9cb8367440f7.jpg -6504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itd5bcb9a5-4fae-400b-b087-94c3d1eac191.jpg -6505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itd5c02050-662c-4dd1-92e9-4f2d9d31defe.jpg -6506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itd787f0ab-5cc6-4451-b4e9-c0d55dfa83b6.jpg -6507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itdd4ae5f3-0fa9-4405-b0b3-b679bfc9461c.jpg -6508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itddf8fc7f-58b6-40ae-a806-c075fd98d1da.jpg -6509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itde67d960-55d6-4fec-a775-4cb4526042b3.jpg -6510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_ite58aa96d-71bd-4623-b955-d30f9587123b.jpg -6511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_ite68c7c25-f32f-4f4e-b542-9afa4ee2b524.jpg -6512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itebb32838-893a-4770-9f0f-ec29c008be52.jpg -6513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itec10abbb-6b7e-4825-a866-a1819ccffa69.jpg -6514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itec9e5739-0baa-4b24-9009-7796f75f3b30.jpg -6515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itecdb2344-155b-43ef-a515-f5008eaa16ae.jpg -6516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itef30ccd7-38b0-4809-9966-7932ecf80de0.jpg -6517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itf07375cf-96b6-498b-ab7e-f4417cea3db7.jpg -6518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itf4b45f90-7ec1-4281-b192-643857dd7f9a.jpg -6519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itf5691730-434b-4184-87f0-4966957d5348.jpg -6520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_orange_in_itf79556fd-7421-4fe9-a0a6-276f71a49f9f.jpg -6521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it02f57589-142c-4485-aba2-138f1ccdd46d.jpg -6522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it0353489f-f764-4335-84e7-0edc71e3d41b.jpg -6523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it05dcbb39-54e8-4a86-b12a-60d20324c7e9.jpg -6524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it06f5f129-8f68-4a5b-8e6e-ddb8c9e3acf2.jpg -6525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it090636dc-4ca5-46f9-a5d3-6825bdfdc6e4.jpg -6526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it0bf65ed3-111e-4500-b5d7-c6bf83d982ff.jpg -6527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it0ec0abcf-d103-4889-b034-c89b55d1392f.jpg -6528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it11ca3527-bcf1-4c54-b40a-ba4af0012ef4.jpg -6529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it13bafef3-09b2-4574-9d02-56394fe635ff.jpg -6530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it17ee8201-2e4e-4f50-926b-621fb2eb7dd0.jpg -6531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it1a9b5778-89a0-48c8-8bad-2fc08d8f6c16.jpg -6532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it21851849-9a8d-4166-8e0c-a1b8d4e87494.jpg -6533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it22b8013c-92b7-4635-92bf-ba4cd2bc2b21.jpg -6534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it253e3575-524d-4dc0-9956-fe6d09b99989.jpg -6535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it2e44e3c0-3707-4d96-9238-f2f7430e57fe.jpg -6536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it3083cf03-cd0a-4aea-b605-82a861f970dd.jpg -6537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it33179746-a3f3-4076-af13-abd0c9ed16b2.jpg -6538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it3371fe21-fb09-4d22-84ad-91abdd87890a.jpg -6539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it33b9fe41-a80f-416e-912c-b5e9e529784b.jpg -6540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it36ebf7bb-b9c4-4953-b045-cb235bde2ce1.jpg -6541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it3b890548-0c0c-40d8-ada6-30b79031a282.jpg -6542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it3c5ce78c-2a54-4bb0-9d16-d475dbc3b691.jpg -6543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it41f3ab9f-3a38-4686-b2a0-c0e81f6ba226.jpg -6544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it451d205a-2782-4d27-b5ee-e29be71dfd95.jpg -6545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it46079b15-2343-447c-a09e-7062948a97b9.jpg -6546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it492aada3-5330-4bba-a6ef-6e824d74b305.jpg -6547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it4b05bf03-3292-4744-b65f-7feb52669468.jpg -6548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it4b2de3ad-b0d9-42cf-989d-0544201616ed.jpg -6549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it4b664e6a-f7bc-4005-97e0-be5fa1ce614b.jpg -6550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it4b9f1a3b-a2fc-441b-82ec-3027c494949f.jpg -6551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it4c832adb-5fd0-4bf8-a953-a76d66d0c953.jpg -6552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it4f886b46-62ef-4921-82b7-a6a844fe90d9.jpg -6553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it50600eae-4c2f-494f-94aa-fc1bff4f1462.jpg -6554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it5267be09-f4d1-4b00-becc-9275f8d88291.jpg -6555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it5444cf12-15c0-4479-b2b0-a8a33d70e1cc.jpg -6556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it54669685-c121-41d7-9773-225af3998536.jpg -6557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it58b3e560-d2fc-42c9-b7a0-d96f20de9e47.jpg -6558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it597e5a7a-86f4-4f75-b8e7-4a055899a549.jpg -6559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it61ebf01e-6896-4671-bfff-ba9d86b073ab.jpg -6560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it6216e220-c312-4ae3-a5c3-4f4f4bad8d47.jpg -6561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it62c1c78b-f5ca-45e6-a3ae-ead7c951c3fc.jpg -6562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it66da760b-4db6-402a-a1d7-6a1b7f7d7563.jpg -6563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it6d5c7906-fbdc-4660-88d5-27aa83b769ba.jpg -6564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it6ef7fbab-521c-42f4-ae10-fab3159c32d3.jpg -6565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it6ff6b1de-cf7b-4436-a77a-768aee65d65f.jpg -6566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it71318956-27a3-40ac-8664-e6013e2900f1.jpg -6567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it72f167ac-3242-43d6-b7e5-af4ff209d45e.jpg -6568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it7737f80e-2ede-4360-912a-50088c5b783b.jpg -6569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it791f962e-b93d-41ea-b65b-1b50c32e5709.jpg -6570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it7b17d885-3c3e-4b9e-a8e7-f0107cbe4554.jpg -6571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it7e287708-19ab-4b62-8ffd-1fca259d930d.jpg -6572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it81859938-4614-45bd-a1d5-90cd92a1ebdc.jpg -6573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it818c39b4-7480-40b7-92c9-1be53071d92b.jpg -6574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it85964c2b-d9c0-456d-89ef-97f3eb8be526.jpg -6575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it85d6c024-6a73-4582-8fe1-b9316ddc271f.jpg -6576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it8d366e1b-44ca-4e31-8b1b-7945f7d3e453.jpg -6577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it8dfea099-ae2e-4770-bff4-51864bc4e9e5.jpg -6578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it8fa0bd36-117d-4b0f-a6d1-ce100e98015c.jpg -6579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it9701492c-9e85-482b-a9bb-94650b3914ff.jpg -6580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it97141fed-6352-46fa-9a6e-c43b3664a1d4.jpg -6581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it9971e10b-3cfa-43f5-b9fa-5dee425fd327.jpg -6582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it9a05cd8d-6b29-42b6-9abf-ddda4a1cdc4b.jpg -6583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_it9b76162e-595a-4fa9-8951-098ea0ef41f8.jpg -6584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_ita0ea5a8a-1d44-4141-a87b-39dbceaef8fa.jpg -6585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itaa898358-f1ea-4338-8790-01ed34d6c88e.jpg -6586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itab13a0bf-f4e0-40a1-b1f4-bc33a7e949ab.jpg -6587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itac3a73e4-b5e0-42a4-897a-fa1660f56b4a.jpg -6588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itb1e82692-2669-4927-9f07-12bf60bc3f43.jpg -6589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itb5ddeb96-9580-432f-ae98-792833b1e751.jpg -6590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itb6694d66-60a9-44c9-9542-decf94a41313.jpg -6591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itb9ab2754-83e6-4482-996d-11612b730504.jpg -6592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itbc5c72c0-8e34-4f33-85a2-a05fb1215e98.jpg -6593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itbd887950-f9af-4523-af4a-b0834696a37d.jpg -6594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itc0214e9d-d6e0-4ce2-811a-896f326a36dc.jpg -6595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itc1f20c70-79d6-4b1d-9767-4e108ce051f9.jpg -6596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itc4d6cec7-d45f-4294-89ff-6b6913b2b2d2.jpg -6597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itc5bd1662-a1bd-4251-8ae9-28f1a4417632.jpg -6598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itc8295984-6a72-4ca7-92ae-a0956e141a87.jpg -6599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itc8d05686-66f2-425b-ad00-86ea551e5e17.jpg -6600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itcad8b4dd-6f53-4f6a-a96b-008279ab538c.jpg -6601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itcd2c3291-b976-46b4-8928-4d1f4b8b4c39.jpg -6602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itcf5c35bc-374b-4917-9e89-46dfdca63b43.jpg -6603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itd3851a61-034a-4c17-8bc1-e0b4f64c64a3.jpg -6604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itd557144c-12b9-42df-be48-df8aed53368a.jpg -6605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itda2fcf30-8bc5-46f9-8e5a-be5aba975992.jpg -6606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itde8a944a-d118-41ee-9b16-f76ef160814b.jpg -6607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itdf1fba01-fb3c-4e7c-b263-80d5b930d4ab.jpg -6608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itdf4bd5ce-b461-47a1-b1cb-ccd22903d997.jpg -6609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_ite09f71dd-57fd-46a1-ba51-cec6378b1e8b.jpg -6610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_ite1ce583e-d891-4160-a893-a76f779a2b19.jpg -6611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_ite5b0b8f1-5b5a-49f2-b010-92e246a990e4.jpg -6612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_ite69c4005-e3e3-421b-9f26-1867766ba876.jpg -6613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_iteb9f1139-bf36-4a05-b747-2a2979cba55a.jpg -6614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itec00215c-8d8c-4b9e-8bf7-4df059a9fc09.jpg -6615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itec0b92db-f43d-4037-86c3-9ac8d53a4686.jpg -6616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_ited8984a0-2ec8-4255-96b2-8b5915276710.jpg -6617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itef93cd0e-f81d-4a82-b61c-e3e3d1e7a4ac.jpg -6618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itf5aa39a9-1176-4c9d-9626-c1ccb43694ab.jpg -6619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itf6d27f42-bdf0-43be-a67b-fd35bebca9ca.jpg -6620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_oven_in_itffb96b1b-baec-4762-8b9e-d3f815d84441.jpg -6621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it00595de6-c91b-4951-91da-4f5ef1c77d94.jpg -6622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it01afb3a7-f147-4fbc-b034-a97eefc02385.jpg -6623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it02459c99-6f63-45b6-95d6-fa4aded334a3.jpg -6624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it080697e8-6628-459a-9824-49457ba2acf7.jpg -6625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it0c51f275-5148-4515-9f7c-2686f3bc84b8.jpg -6626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it10ca31b0-3f42-466c-a187-b4bc3d339367.jpg -6627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it123a9512-20bf-4e40-9fa9-cc240347870f.jpg -6628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it17633ff0-aef6-425f-a2af-42b2753b7baa.jpg -6629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it18ae3a12-fb5d-4b13-a7b6-dcf30719c005.jpg -6630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it1c42bfcc-9a1f-48fe-bb45-a63a8f199e99.jpg -6631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it1c468d46-ba0a-4911-805a-537e4b01e64f.jpg -6632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it1de77210-0045-4b96-b500-06a1fd2726c2.jpg -6633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it216b481b-4dbf-4267-bc9b-14e55d9d36ca.jpg -6634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it274c2bc7-b89a-4cb1-a57e-a5cde67effba.jpg -6635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it28ded591-1d55-4b37-9620-15b008d5d4cc.jpg -6636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it2bdd45d0-db50-4f96-9e87-a522e20b7a25.jpg -6637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it2c9e828c-eecf-471a-81ad-0c67e5c32e05.jpg -6638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it2e2aae2c-18a8-4a34-9981-665bf2c25353.jpg -6639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it2e5b1d1d-154b-441b-854c-4612d4716acc.jpg -6640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it31dc34c3-c3f7-4150-b2d4-9735b382c902.jpg -6641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it326e214e-764a-4a8b-a7c8-aa58d1246714.jpg -6642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it332c39c6-4594-4b16-9570-1013021722b2.jpg -6643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it3334bc21-82ee-4b79-84e7-4f8443fa6349.jpg -6644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it3452cab6-819a-4cd3-9449-c78250d6c35c.jpg -6645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it35fba942-3eb4-4704-bb44-0b0fd147fdf5.jpg -6646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it3db2fe9f-9068-43b5-bd21-a5cf94891cc6.jpg -6647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it3e96b0d4-0360-40aa-b4cd-f046ca3cb50e.jpg -6648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it3ff59eca-7198-48de-ab47-d2c881fa1837.jpg -6649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it4210a216-622e-4195-8df5-2d4c73f2f1eb.jpg -6650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it44b1adb3-bd57-4fa4-874c-677738450d5d.jpg -6651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it48f7605c-1c28-400a-87a9-79d9f61c5c14.jpg -6652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it4aa4c30e-52b0-456f-94e4-7e2d7649c32b.jpg -6653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it4f3b9f01-bf72-4fa7-8a80-219d2488b15d.jpg -6654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it514917cd-3401-426c-8d20-7cc311e3d282.jpg -6655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it59c37b8e-8e4d-4979-bb41-efc2b7ffbf85.jpg -6656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it5ba7305d-d435-4dea-8fb0-9a4bd9c3d141.jpg -6657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it5c86f0e0-15e6-4b7a-98bb-2016cc15e0f8.jpg -6658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it5e4b487a-a1db-4f25-95e8-6057ffd62abc.jpg -6659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it5e85c731-cd81-4857-adf2-5d60f8bc290b.jpg -6660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it6e33bb0a-0858-4dca-a5e5-6bca5ec3cf82.jpg -6661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it70f4ea9f-7a97-4bbe-8ec4-4e3cb7b87a18.jpg -6662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it712acae7-ad4e-40f6-978e-e709ee845cb9.jpg -6663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it71fb486a-26ce-451f-9213-2089c946cced.jpg -6664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it72fbc9fd-0e95-4b97-8168-f064090c0e68.jpg -6665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it76a061c4-c880-4e5f-85de-37cefe997139.jpg -6666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it7746eef5-dcde-4673-b8dc-befead817e6c.jpg -6667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it77dca8f2-a9ff-48ee-a391-52ee4afcbfe6.jpg -6668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it7aac1410-ecdc-43e4-bed7-0f0bc12f606f.jpg -6669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it83e3ace0-2bb3-4f3b-b653-4e17b157c958.jpg -6670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it84c1c947-9699-437d-a119-6ade564a28f5.jpg -6671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it84ed781b-7d73-4a9c-93ff-e5dd5ebc5135.jpg -6672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it88a251be-18aa-40f9-b94b-7b3b91b3bbe3.jpg -6673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it89230896-f9c3-40dd-a0c3-128f098ef3a7.jpg -6674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it8a6446f8-197e-494e-9378-d50b64330d1b.jpg -6675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it97153d20-c296-4656-8cb5-51e55e708a18.jpg -6676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it999f2c84-faf3-4dfe-89e5-e29767b9e0ce.jpg -6677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it9ac751cd-dde1-47b2-824f-30ffd53a7656.jpg -6678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it9eeaf6f3-6fe7-4f45-a993-8f54d87f8d69.jpg -6679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_it9f0dd815-c56e-425a-997b-703d33a5a24c.jpg -6680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ita1d5e79d-43dc-4b5d-bbfe-3e76bde2c872.jpg -6681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ita37722de-1b61-4bac-987e-14e2c409c92d.jpg -6682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ita4258a1e-1b6b-4328-9363-5f9a1cd61c71.jpg -6683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ita62dbcb6-d2e3-49cc-8b3e-5efc0224cf65.jpg -6684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itb1ae93ca-cc99-4a74-92bc-12dbbc39a7f0.jpg -6685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itb4a73bd9-5505-4c29-99e3-2c699253180d.jpg -6686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itb66a6c87-e97d-405a-af48-d179b844e38f.jpg -6687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itb8409a13-fd39-4505-800c-93912814e587.jpg -6688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itb928eeae-b297-40f6-a1e7-3a4893aa7c55.jpg -6689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itbb0d3157-e5cd-40c0-9933-9e18cb82b21a.jpg -6690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itbcc859fc-db98-45fd-ae5c-1c5158726794.jpg -6691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itc3be8127-cfb3-43d7-a131-c750c52b78c2.jpg -6692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itc7702662-901b-43ff-9e06-5d6e7b694268.jpg -6693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itc7b03d9e-e5dc-4530-b501-5bd776ceb99b.jpg -6694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itc941d8c2-8da4-47b9-879c-3f7d4723e7cb.jpg -6695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itcb2e9e7c-74d0-43db-8cc3-f5d094776184.jpg -6696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itce379f81-8351-4f66-b728-05b9a2a7a119.jpg -6697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itcfc5aff0-a8d3-4762-9f12-8d9b826a975f.jpg -6698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd081ef82-0b89-46ef-bf2f-4c1916abdb3b.jpg -6699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd0d6b843-8dcf-4a40-a2b6-75c94c35ade0.jpg -6700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd1b4acb6-c979-49aa-9a97-ed875ea0c835.jpg -6701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd2fe8b46-d74d-4984-b44b-8a7622813079.jpg -6702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd343dced-1a45-45b7-b1d7-69a5572f0bcf.jpg -6703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd39b355f-f19b-4f04-8645-71861d9462cc.jpg -6704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd42177a7-0027-4d1f-9c72-886d029e850b.jpg -6705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd573ac32-244c-42b9-b073-2347c6ef448f.jpg -6706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd721da79-fcfe-409f-9e79-ac9eacaddbd8.jpg -6707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itd90cb364-7d5c-4e97-b06f-bc6e01287ad6.jpg -6708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itdb9b8be4-6127-4ffd-b9c6-ea61a1abc142.jpg -6709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itdd850b49-b9bd-4279-a05d-d9529f74b6ef.jpg -6710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itdd8693fb-5e89-45a1-b355-f71b342fb7e4.jpg -6711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ite0613f59-b9d2-4cfd-b268-046b24afe1dd.jpg -6712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ite2c29ea6-016c-4c78-a56d-ad4323f34318.jpg -6713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ite389c114-2494-476c-bf52-35eb15c187eb.jpg -6714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ite586aaad-c3ae-492e-9dde-6d65451f6205.jpg -6715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ite9263d14-0292-48b0-a855-ea8c85427d4b.jpg -6716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itea66c465-7722-45e8-8434-9f8973d5b2c6.jpg -6717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_ited88ad4c-a997-4ac6-a00f-38fb012c26fe.jpg -6718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itef31f79f-a2d3-469d-a0a9-f9c16da9fd21.jpg -6719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itf52a3323-046f-47b0-bde9-d4dfa0da4a9e.jpg -6720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_parking_meter_in_itf59196be-7ed4-4f7d-bc7a-4b7da17212cd.jpg -6721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it02285418-5b6c-4216-8a2f-b299309b155f.jpg -6722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it02daab8f-0336-4c11-ad40-6ae6bd4c8e38.jpg -6723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it03ba5e66-a914-48ca-a36d-54f824bf0836.jpg -6724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it0690a9d7-97c9-4154-9d0d-e708ab722dd7.jpg -6725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it0fdf6b1b-09b5-43e8-9443-a5d67a3fa4f2.jpg -6726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it109f526c-407d-46b1-9c2b-4d1f3a9f0c4d.jpg -6727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it188b8c2e-d756-4d8d-b719-97ded0ba0f25.jpg -6728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it19f181da-eb54-489f-97ac-d48959c68df4.jpg -6729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it1e45555c-c74c-4fad-82f4-3e274d1c7950.jpg -6730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it21e077a2-6382-4832-a86b-ffefa221b93d.jpg -6731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it237d7dbb-1dc9-4e96-9db4-70a802d000f5.jpg -6732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it2665ea18-f00b-4c2f-acda-ba763fd7ada6.jpg -6733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it27132877-f9f3-40b7-807a-ba58dcfc9563.jpg -6734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it2ed763bc-909b-46e6-aa1c-241dd07e99de.jpg -6735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it326354c3-29f4-479c-91d5-4e63623734b4.jpg -6736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it3832168f-22a5-4cd9-85e3-67706715dc84.jpg -6737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it384b1338-931e-4c9b-a7a5-d6a5bb92c64b.jpg -6738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it3f87be0a-60c7-4c2b-871c-32d8f7f8a7cc.jpg -6739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it41437812-831a-4738-ad36-ea13a5420dbb.jpg -6740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it470d5bb4-1f3f-4831-9eb9-86919e639d9b.jpg -6741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it49e1f3cc-9c63-4b7f-b635-a956680cdd5d.jpg -6742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it49e301da-a191-4bb5-a164-900cb95c1fbe.jpg -6743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it4b26acf4-dabd-4af5-9534-fdb3efe638ef.jpg -6744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it4d15e01c-7049-4b94-a37f-c3e2232a9e1e.jpg -6745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it5454c29f-ef63-418a-9bd3-5984e4a69dca.jpg -6746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it56c0ffed-c237-436b-882c-bd4d69478cd0.jpg -6747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it5713ea03-1ee6-45aa-9880-3dd0b6539675.jpg -6748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it58121502-1a4c-4975-8c64-8e77d87653f8.jpg -6749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it5aa0ef24-9110-44be-9ef2-efb7561a784b.jpg -6750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it5bc8c986-aff0-42bc-9a84-b43ccfb42695.jpg -6751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it5c8940cb-8689-427f-9a66-e36675dbad51.jpg -6752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it60873a7c-ef99-442e-960d-5f780502db2d.jpg -6753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it61e89547-a627-4b15-a208-6692f38f674b.jpg -6754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it62176915-b01c-4b14-829f-13e67d57d360.jpg -6755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it63f3c483-360e-4960-bb58-de7a7e317215.jpg -6756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it667ec8c5-32fa-43f1-8ba9-aaaad63c104d.jpg -6757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it67f9b9ad-92a6-4154-a378-12d395ec1624.jpg -6758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it69be6846-fdfc-466c-a897-8fd1abad6ae7.jpg -6759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it6b5ba878-9308-45ec-9e22-fbae72e9e916.jpg -6760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it738b09f1-388f-4453-bd29-1e18fe5d1715.jpg -6761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it7a616d23-47a5-4e64-b246-3edae55f4e90.jpg -6762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it7c959361-cb40-4361-b2ef-e446e52d81b1.jpg -6763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it7dba106b-a1b2-4043-b15b-5bdf9aad34e0.jpg -6764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it7f1f0e2c-1a80-4575-af7a-39b3eb013911.jpg -6765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it8075bd77-7418-4d10-8ad0-f6411488d4ba.jpg -6766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it81259d4b-b3c3-48a8-895b-1f5a793f4e51.jpg -6767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it85ee7bd9-285f-4395-843e-3b3bcef824ec.jpg -6768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it86ca8790-845a-4d35-9f38-1e871a98aa87.jpg -6769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it8bb335c4-d753-462e-bae4-0f17912e0a83.jpg -6770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it8bc0527c-ce52-4675-a9e5-b7b23c8f04a5.jpg -6771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it8dd27875-910a-4ebf-857d-6b3812ad71a9.jpg -6772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it90542fc8-a3f0-48b1-9d48-89846f4b39b6.jpg -6773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it91b75345-4ffc-4031-ba07-e8e784d5ce80.jpg -6774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it91fe06ff-641a-4a55-9123-56adfb7107ab.jpg -6775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it92d63fa9-78b3-4c93-aefd-b8107e738772.jpg -6776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it955b8332-3081-442a-8c97-b67fdff66e69.jpg -6777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it965b6d3c-6794-45b2-9dba-2483df7552bf.jpg -6778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it96a84c6b-34d7-483b-ac57-694edbec56b9.jpg -6779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it9b1fa716-2ff7-4b89-a7d6-e66e7234a489.jpg -6780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_it9e6e60d5-6de4-4db3-a1d4-761dad891007.jpg -6781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ita1c75608-a152-48a5-ac45-cec4b093b737.jpg -6782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ita6c550d8-dfa5-4165-9d3d-51ae7d96ad3e.jpg -6783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itab831cd3-c358-487a-94aa-1c74be1cd812.jpg -6784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itaefa6de8-3de3-4565-90f3-420efb5a53d9.jpg -6785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itaf2732b5-4447-4f99-a63e-35f444e4a3a8.jpg -6786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itb0015b6d-7aaa-4604-af6f-7553061c8614.jpg -6787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itb90f3fc3-4b66-40e6-871e-739b48ad0451.jpg -6788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itb9335de1-e666-4f90-a33c-a828a079bffc.jpg -6789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itb94a01f1-9691-46fb-b5f9-d358f154ad8c.jpg -6790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itbb26a718-8c3b-41c1-9c8e-a5771a3db70b.jpg -6791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itbb322c91-17b4-4839-9d82-01cbe14687fd.jpg -6792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itbbbd5bb6-bad9-44b2-9c93-c758330d7665.jpg -6793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itbdc61c29-beaa-4df3-b31e-1e25bd02bd5a.jpg -6794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itc09e6d7e-9c79-47ec-8c62-c4a4b3fe98e8.jpg -6795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itc3c97748-7c3c-4141-8e28-e8e6d7a9d98c.jpg -6796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itc4d2cc42-d52c-4db5-991e-280496a7b522.jpg -6797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itc5007bdb-5226-41d3-a7e0-db7e33279c38.jpg -6798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itca80270e-853a-40c0-be91-9473a7ea1e41.jpg -6799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itccc7a647-2eae-4690-862f-e9a58e8eb3c6.jpg -6800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itce9ebdab-f918-4031-bd23-904a24abd6d1.jpg -6801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itcf1d821b-35b5-49d8-82ca-a659b3e2660e.jpg -6802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itcf8f01f4-7291-4799-aed5-abc52aa5badb.jpg -6803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itd172d31e-7428-4148-9bba-ebdacc6c152d.jpg -6804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itd31f4009-5f1b-4635-b32f-6763d030c1c8.jpg -6805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itd6d3b05d-d248-4a38-90bd-21314fcb93e2.jpg -6806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ite2ea5c42-529c-451f-9adf-b0a804d1079e.jpg -6807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ite41efce4-f2d3-49c6-b823-8da8bee849f7.jpg -6808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ite67c1a0f-6a6f-4e14-8243-8f144d22e30f.jpg -6809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ite8e6871b-78ee-42a1-a729-e31fe69e5c42.jpg -6810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ite9d023e9-1121-4c5e-8c3d-f5791fc0d135.jpg -6811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itea2e9920-264e-451f-9f77-e2d0cfdc2461.jpg -6812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_iteb1dfa5c-20f2-422b-ad6e-c7053427570e.jpg -6813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ited549f7e-9d5a-4a00-9f87-c6c59057edf2.jpg -6814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_ited95f5b4-16f3-4274-a8a3-2897a6731c8b.jpg -6815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itee269af7-e128-4a7b-a486-596f80e14227.jpg -6816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itee29168e-fb56-458f-aab2-e8759ee4a3aa.jpg -6817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itf92a6913-b452-497a-aa53-f8d23a694888.jpg -6818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itf969eebb-29e5-48cf-8ff6-e79b500530e5.jpg -6819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itf9793da7-93f2-49b1-b501-1b92a73e4ffa.jpg -6820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itf9866287-edab-4837-b9dd-95697cb54a13.jpg -6821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_person_in_itfced6f5f-d9ab-4c1a-91bb-8f0fc78513c1.jpg -6822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it042c6a10-10d0-4c45-af16-f0cdc1f56869.jpg -6823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it1143ac5a-459a-4ad1-865a-49cacf9a2158.jpg -6824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it1152c9cb-db5c-415f-bd00-d6aa87507375.jpg -6825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it14b90eef-51ab-4c3c-a32b-3a4606243f2d.jpg -6826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it171a52ce-c96d-4ada-a0d1-664570434c99.jpg -6827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it1971e9ff-6e05-47f5-934c-e1d698404ac2.jpg -6828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it198ea863-2ece-4af0-b667-d96749745a3b.jpg -6829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it1e3552e5-cb9a-46b3-b978-3e4303759b80.jpg -6830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it255279f3-36a6-4b23-8a71-f981b3a55316.jpg -6831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it2817f1b9-56e9-4cfa-9f3a-8c2c40d50cb2.jpg -6832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it2bc513f1-9d09-4b35-9847-84b3e03ac4d4.jpg -6833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it2fa80c52-9f1a-42f2-957a-d38bdab1dd68.jpg -6834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it30603d88-6afe-486e-9713-84f197e85af4.jpg -6835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it31d6d583-cdfb-4bae-ace8-a54568861a01.jpg -6836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it32432e42-29ca-47e5-b629-8c02e6c2cc8e.jpg -6837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it32988b96-b626-4f07-ac60-9c55d0d82f7d.jpg -6838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it33c8838c-19d7-4d49-b720-94ea7d865ec8.jpg -6839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it36f171c7-da28-4362-834d-cfe2af70ce70.jpg -6840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it38200129-9a2a-443f-9d01-a634ddf92013.jpg -6841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it40642d4c-25d7-49ee-9dbf-7a96eade7e9b.jpg -6842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it4392f620-1391-4be3-bfb5-4a40a81f27e4.jpg -6843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it446f5e2e-aad9-4973-9c9a-11ea6b8dfa8c.jpg -6844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it45400226-2137-4112-8a50-a119179b0bec.jpg -6845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it4744477a-fe9a-41e2-85b3-b386c5d454aa.jpg -6846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it47681fe0-8c52-4b04-a3c9-91ac35f6a899.jpg -6847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it4837ce68-4898-431b-9d53-5b4e9e7a982d.jpg -6848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it4900e250-9cba-47ac-b5e7-4064e17951ce.jpg -6849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it4e9b73ce-2215-46e5-a275-691b9c0dd7d9.jpg -6850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it500d0220-9d6c-41a0-9d32-0ff901878ed3.jpg -6851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it50b33e52-cfab-4d1a-8677-26d8469d71b3.jpg -6852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it514457e9-7f66-4f46-8781-c8bef8c0f51e.jpg -6853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it54ec87be-e4f2-4917-bf5b-e716ab4ffce0.jpg -6854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it5b4f6d67-5295-47df-b0e4-f7addbc06c49.jpg -6855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it5bc0ec10-548b-4fd0-8bbe-317e079acc38.jpg -6856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it5c199dc0-51f9-48e0-8d9e-bfdadb2f3bf3.jpg -6857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it6045a7e0-e387-42c1-a6cf-9c782397a53e.jpg -6858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it6188246d-a814-4be1-a6a5-3e5b4f25f87e.jpg -6859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it64f0ed96-f46a-47bc-a676-095fc1d2a8b2.jpg -6860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it66446886-5c41-4418-96a5-b6ba6b1ff83c.jpg -6861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it666236c9-e4ce-415b-8049-1cdc270b7704.jpg -6862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it679f5d67-e30a-4d03-ab19-6ebca9260259.jpg -6863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it700e4402-ab14-4367-ad00-68efdeea36fa.jpg -6864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it7042526e-4527-49e7-abab-408a31f76072.jpg -6865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it70ed5c5b-c5a7-4f97-b439-98caafad47c7.jpg -6866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it72acbd69-0dd5-4931-a82b-e4e2eed3708d.jpg -6867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it77c4458b-db81-457f-80fc-7f8594285d04.jpg -6868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it7905c520-8efb-4d08-9afc-5e69abe8cd09.jpg -6869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it793a22b3-d3e2-4830-b42f-da7b4ad913ae.jpg -6870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it7d2c401c-0276-49de-a224-0e5de92987d9.jpg -6871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it82297f90-adee-4da9-9dd7-5286556ba3de.jpg -6872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it88e05069-63b2-4e6e-a152-295186e422e7.jpg -6873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it8e3d50e0-e69c-48de-87d7-1c289c479b8b.jpg -6874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it8e40841e-d400-4bd3-b7db-f791c981d0b8.jpg -6875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it9067a1f9-395b-4591-a2e9-05bb2b9111d5.jpg -6876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it9224ae13-9ac4-4f47-bf94-90eae51142b1.jpg -6877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it924d1ddd-284d-497e-a5c9-47bb0ea11e9d.jpg -6878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it93382430-973d-42c9-b04b-d169fc7e51c4.jpg -6879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it94272124-669d-4617-a95c-59417c268360.jpg -6880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it9525d885-178e-41cd-9a31-211f72b39235.jpg -6881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it9897a767-3b8b-4b20-95ec-a3a136b3ae7b.jpg -6882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it98e57113-6b32-4a6d-87f1-df1b50f7ce71.jpg -6883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it98ea3ae1-ea1c-41da-b449-1f1d8ed2b6da.jpg -6884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_it9b655539-81db-4891-b21b-8f79e2d9ab01.jpg -6885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_ita430047a-813e-4730-9791-c10413906ac0.jpg -6886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_ita978bb2e-e4a2-4c7f-8a0f-cca379bd67be.jpg -6887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itab1da749-0d5e-43ae-bab8-871e651072f9.jpg -6888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itababe69d-b6de-451d-a339-97e3e424346e.jpg -6889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itac24164c-558b-4d1e-be9e-fd25c100218f.jpg -6890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itac73be53-3f13-4dc9-affc-21e61413a273.jpg -6891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itaf54eb49-8bed-46a5-ab4d-757918816fcf.jpg -6892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itb6cb8579-c106-4b34-bd74-03ef214dcb15.jpg -6893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itbb38e4ac-8925-4073-8251-10e03bf52f2a.jpg -6894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itbcc1da8b-2783-475f-82e9-42e49e3ac73b.jpg -6895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itbe504259-18f5-4515-ba85-0a139151979c.jpg -6896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itc048035f-cfab-4cfa-9523-b9a50512103e.jpg -6897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itc0660d4c-1ff0-4bca-81bc-ecf656a0d724.jpg -6898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itc3680739-2879-4f2f-b7fe-344be2a0d5b7.jpg -6899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itc5c995ed-2b01-43fa-9356-fed6347cb674.jpg -6900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itc88728cd-a0cb-4f28-b96a-4d50f5dd2104.jpg -6901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itc9e42d24-0d18-4250-b4ff-441a9944b498.jpg -6902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itcd2db13b-7c4f-4a1c-a638-f82fd9117270.jpg -6903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itce1910b8-2927-4cee-a1b3-1ef086077afe.jpg -6904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itd280653c-2616-4c9b-bcf2-901a66097d19.jpg -6905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itd2fc2bf5-cb39-4b97-8931-b07510825182.jpg -6906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itd30267fe-c9d9-4037-a70a-5615f0d6c05f.jpg -6907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itd3393832-5898-42b0-90b1-95ba29651369.jpg -6908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itd3a8b5a5-c9d5-47b9-a99a-6040eb075edb.jpg -6909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itd624f4d9-5a39-4b09-a0fc-39cde2f8d77c.jpg -6910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_ite16a1c17-b6c0-4494-a32d-92e3343f404e.jpg -6911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_ite3336f0b-009b-4dc6-bc11-09fe3ea59d6b.jpg -6912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_ited4ee234-12bb-4223-936c-a388a95d9027.jpg -6913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itef9787c8-75b6-4a6c-b4c8-b44a70a71d0e.jpg -6914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itf0a8e440-215d-4ce9-86e6-1e3605d0a836.jpg -6915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itf42a1bac-6c82-4dc9-8d87-e428fc8644cb.jpg -6916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itf523ffce-59a7-4456-8192-9148e9b4fbe7.jpg -6917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itf544b065-14b5-4636-baff-f790a539a403.jpg -6918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itf5a19ee7-0bf8-435c-8a11-c32d7e1a96d5.jpg -6919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itfeb64864-0a5a-4319-bb58-4a77f8475aa8.jpg -6920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itff381426-048a-4208-bccd-612205f78d49.jpg -6921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_pizza_in_itff4007e2-0b68-4eac-b818-18ba5ec2b555.jpg -6922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it011dcde9-a5d7-401b-a870-cb74ed62ef0e.jpg -6923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it061f4867-dee7-4247-80ac-51b5118382ed.jpg -6924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it07f49f85-c985-4607-b330-cdce70b29d20.jpg -6925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it08f3e8cc-8a95-40b0-8eb5-1c9cc7a4a59a.jpg -6926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it0c9ffa25-d57f-4617-89e6-33b0a4712117.jpg -6927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it0ee62aff-2736-487e-ab2e-2f5173c4d5ac.jpg -6928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it0ef67c8a-716f-460c-914d-67a8db326349.jpg -6929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it113d9bc8-1473-43bd-bad1-07cc7c94f76e.jpg -6930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it115c016b-9b3d-4b71-ad3a-cc19f2228e1f.jpg -6931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it14c4e28f-36d4-4531-91e7-3579ffacd605.jpg -6932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it1797ac83-aa53-44e9-a05a-ce358b1de503.jpg -6933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it17f4a2f3-b8f9-4f7f-9049-779c9ebe3899.jpg -6934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it1a82692e-aab6-4960-ac28-6aa912ea8cbb.jpg -6935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it1b005653-9389-41ae-8f1e-09fb2d24336a.jpg -6936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it1e984056-64cd-4f7e-baa8-ff7f6453d4f9.jpg -6937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it1efdcbcb-82e6-40cc-8cc8-acbd8d7c21d9.jpg -6938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it249440e9-1373-423e-b42f-07eaff70e8ab.jpg -6939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it25300ed7-7ce4-435d-bf7a-dadeb22e9854.jpg -6940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it272b3459-cedd-4d4d-a06f-1bb356328bcc.jpg -6941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it274eb135-d686-4179-9d90-ebccb6733a58.jpg -6942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it275d9d8a-331a-4fc2-ac76-5360deb57f0b.jpg -6943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it29f0a6cf-cb46-4d13-a89a-1f79cb6701c2.jpg -6944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it328611d1-e296-4a6d-ace9-1c67b7aa066e.jpg -6945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it32b640de-bc2e-4c5f-81ec-872af7ead10c.jpg -6946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it332f982d-bd22-451b-a4d4-6eaeaaa0cb75.jpg -6947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it3a7f8634-4f7c-4162-a420-84e4f1ff8b4c.jpg -6948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it402f1357-2e80-4d54-bbb8-e518bfc85dd8.jpg -6949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it42f672ee-60ff-4330-bb8a-c10f5647bd71.jpg -6950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it473e2d09-bd20-46cd-b046-4ffd1f455cc5.jpg -6951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it4c02db1d-c9a2-4c88-bdfc-28eb5c728266.jpg -6952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it56691233-13d8-478b-85ea-43ad1e7bef2d.jpg -6953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it597a1456-f0a8-462f-af07-ba767e8f163c.jpg -6954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it5d2b9fd3-befb-4c03-95d0-9651cbd6d8f2.jpg -6955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it5de3f9b9-d93d-4e63-b5eb-6a5a63e45cf6.jpg -6956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it5e6dcbc4-4f28-40a1-bec4-703e0da923a9.jpg -6957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it632669a4-b651-4da7-a447-1e9ff7e1300d.jpg -6958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it69c38df9-87a9-4b31-b8a6-e02f968d3467.jpg -6959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it6aea5cc1-a601-458d-924a-8d6c080b14bd.jpg -6960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it6b0211a2-6eab-43f2-b831-e504f3a42726.jpg -6961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it71017960-6293-4072-bbca-4ab71912a391.jpg -6962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it71ea5853-48d0-43a6-a4bf-8da0377ec48d.jpg -6963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it755b5f8d-dcbe-4cb3-8212-69869216c013.jpg -6964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it79cf7fa5-bb66-4b03-999b-1649e49c411c.jpg -6965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it7d75009e-3eaf-4536-bdb4-f5ad15e45006.jpg -6966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it7debb655-f4f0-4000-8268-b024a5448624.jpg -6967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it7e2727a2-3c47-4dbc-90b5-213500d80b47.jpg -6968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it7eec5b7c-c45e-4341-ad3e-9589fbbd481c.jpg -6969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it827179f8-c647-4086-ac98-894b5481595a.jpg -6970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it876c8d59-2d05-4cfa-976d-760bccd10be1.jpg -6971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it87aba490-93e4-48a9-a10a-140db28b0be5.jpg -6972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it88cc079f-ebf8-45ae-a97c-51f788d4a314.jpg -6973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it89a51505-1896-41e1-badc-4ab6f713299c.jpg -6974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it8adeb375-e992-4ec3-a703-ed629e6193c0.jpg -6975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it8af79c8b-267d-4888-98c2-f969f80780b3.jpg -6976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it8b1048ee-dedd-4318-8909-6bf7dacc205f.jpg -6977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it8c589fd4-a295-4661-8bc1-2e3902465cb5.jpg -6978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it8dc40019-18c3-45cf-a594-0682f9a449f0.jpg -6979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it8f742943-0952-4213-b076-d4d009825f31.jpg -6980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it914e8d08-958e-40b6-94c6-84040920ea26.jpg -6981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it9245894f-5960-4895-ab00-7b278dca3a68.jpg -6982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it9304a194-0361-4269-b489-d943c4b0bfa0.jpg -6983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it95ac56c6-0d3f-4525-8d64-6ba2d5c48c43.jpg -6984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it97976ab8-3a03-4078-8cc3-4f42aa46e828.jpg -6985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it9b64d3fa-6dd7-4903-8c24-bf98dff38232.jpg -6986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it9c8a298d-1cfb-4fc0-8045-7c504a4ae81a.jpg -6987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it9e97fb20-6d09-4eb5-a698-8cde934c2c96.jpg -6988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_it9f7a939c-5dac-4665-ab5e-00ab8d0a8a6e.jpg -6989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_ita026e6f5-5d14-4258-be94-9fe7983a7a5d.jpg -6990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_ita534ee49-2588-4726-ae55-b2f3ae45a0f5.jpg -6991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_ita878c26b-67a2-48ff-b9ef-89e507f7cf1b.jpg -6992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itabfe78da-7e27-4901-9ef8-5abae185cec7.jpg -6993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itad41112c-ffc8-45d5-8029-0ada32da6b09.jpg -6994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itae4c6df2-7e6e-4db6-810a-39de221df6f5.jpg -6995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itb0c584f0-b78b-4f90-a0ab-12e87cb281a7.jpg -6996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itb1b5b37a-fa3c-4556-bf63-496fb3ad8e7e.jpg -6997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itb39d82a8-ee16-43eb-92d6-0fd9aa862e07.jpg -6998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itb6980a9f-a76e-484b-b6e9-845969c89340.jpg -6999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itb96e6313-58d8-426e-ba38-06cccc5f6fa0.jpg -7000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itbc0a5735-7296-42eb-b600-b37f056ba3d2.jpg -7001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itbc42888a-abfb-4d44-bbb9-4f2df23fbb68.jpg -7002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itbcec1d0d-11c9-49d9-8d1e-a4c0289217c3.jpg -7003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itbf2110f3-3057-46ff-82d6-e0efef986f34.jpg -7004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itc072bfbd-e925-4823-bc97-4edf4b7962a0.jpg -7005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itc1ad27f2-2740-46f1-9e61-68585ab85bda.jpg -7006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itc29b93f0-f2b9-4209-9594-fd014407468b.jpg -7007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itcf038704-b447-45d6-882e-281219e9c669.jpg -7008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itd33cfb9c-4852-4a35-9909-8dfc6653039f.jpg -7009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itd3e24d6d-8651-470d-8ccf-a464c1448b85.jpg -7010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itd48261c9-a6a1-49e4-971d-7d795b7653e7.jpg -7011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itd8abead5-badf-479e-b2bc-a9220c7c1732.jpg -7012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itde01eb79-a01c-4e0a-978e-f425f0e38327.jpg -7013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itdff5429f-2392-440b-b2bf-2c8429eaca7b.jpg -7014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_ite5231f76-3968-4aba-a5e8-2fb86559bf88.jpg -7015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_ite6ef548b-89f0-4df3-9ecd-76e982f1b61c.jpg -7016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itea315eb0-63b7-4247-8bb9-f82802e985b2.jpg -7017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itecd718fe-3458-4c7d-a372-630ee08cf77d.jpg -7018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itee66d488-3059-4fae-b6b4-87c4a5e864d4.jpg -7019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itf43df8ef-b656-4e08-89f2-41075b2cf3e3.jpg -7020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itfaca5dba-feb9-4eab-8319-cb89c3a25727.jpg -7021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_potted_plant_in_itfcd1a07e-c49b-4bba-a8a7-7138ed9b332c.jpg -7022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it00e53f4f-3158-448b-8721-788553045abd.jpg -7023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it08843264-3b16-4172-b5be-ec412ede1896.jpg -7024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it09b8c9cb-4c78-448e-9a81-8c72a33eafc3.jpg -7025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it0a2383ce-19b0-4e14-9df0-d50a466b482b.jpg -7026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it0b6d2555-b171-4ce4-a9af-644e7caf7448.jpg -7027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it0fa3959d-2a07-40e1-acb2-07aa6d06893e.jpg -7028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it1285642f-a691-46ee-ba0e-c9871c920214.jpg -7029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it1429a391-4fda-4d8e-a17a-46182513514f.jpg -7030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it1979d3fb-c3eb-42cd-87b8-b7d140250804.jpg -7031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it199d5248-67e8-4263-9e5e-2dfa31408645.jpg -7032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it1a13ff0b-0fc8-49ac-9944-bdfcb5582649.jpg -7033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it1c101a59-efa6-489c-bb15-28a5cd978514.jpg -7034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it206b0725-48df-4f1b-8a21-63556796edd7.jpg -7035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it25c3c6de-20f8-4124-b6be-31b7e2c6e5c4.jpg -7036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it26f1abf9-42bf-4b35-8e00-43639f8bad99.jpg -7037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it2eb10aa0-f907-4dc4-bcd5-cad7c92d70a8.jpg -7038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it2eb76c3c-fde2-446e-abc4-3ac359e0965e.jpg -7039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it2ed73afb-6e01-436c-8269-cc086f62d906.jpg -7040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it2ff306f8-c593-46eb-9063-ccd1803c6f40.jpg -7041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it30ed3da2-dd76-448a-8d7b-36a7e595b0f2.jpg -7042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it3b3b3c8a-f645-46e9-a99b-e1c4b9d7c859.jpg -7043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it3c514315-b33b-4dc6-8074-3e786528e614.jpg -7044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it3ee0cd83-ee5e-4522-8e3c-67499e803b20.jpg -7045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it40dae163-95d2-4f68-a5ea-b2b56df33747.jpg -7046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it44975735-d0e1-40bc-8c23-65c8433e1bae.jpg -7047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it480bcdc6-1ad4-4cac-80f7-06c34227113b.jpg -7048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it49a4ae7b-7706-4818-b20b-5e3700762515.jpg -7049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it4b3604d2-79f3-4b6a-a72c-c17410ca185b.jpg -7050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it4fbcd860-3a02-4566-bf89-9ee4154c3f20.jpg -7051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it5034846f-8856-4f1a-9036-ff8d6c4a42a6.jpg -7052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it563f2842-bc35-4028-b400-5f0db7f1cc68.jpg -7053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it57ea7537-93e4-43fa-8e77-b2a7766530fe.jpg -7054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it581cc1e3-08ff-4d9b-9f50-db192cd88a2a.jpg -7055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it58a1c08c-89c8-46c0-8295-202c392367de.jpg -7056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it5acde148-feaa-4a02-afb4-689ba85f5db5.jpg -7057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it5e6c5646-c755-4165-a4b0-4cd99ee97646.jpg -7058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it5f139add-fd62-4c96-a4ef-f8d928ff68ff.jpg -7059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it668b6faa-bf6b-4b2b-9b92-69a8c8ef7ea2.jpg -7060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it6a497c57-c654-4603-8c99-0cb9604ed875.jpg -7061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it6b673d0d-c7d7-4419-9e5f-7a04c9d06170.jpg -7062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it731aa850-9b76-4985-a669-e01dba7edfc6.jpg -7063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it76170af7-eeac-4320-b72c-066db0ab7499.jpg -7064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it763ae562-f61a-4a2a-b1eb-fd7d4b7eecd8.jpg -7065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it76d75092-31be-4589-b3fd-be13253536ee.jpg -7066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it79b333cb-418b-4d51-af4a-d9c98e6b05e0.jpg -7067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it7ad4a245-404c-4723-b7a8-706058ea2235.jpg -7068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it7f0fad2e-5124-4cd1-8a65-1263e57879e5.jpg -7069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it8040c546-e41d-4cce-869e-be41e5edf661.jpg -7070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it8163e650-01f2-41e3-8b77-58ba593bd5b4.jpg -7071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it82ad4945-d826-49c4-ba9e-af2d83199dfa.jpg -7072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it869e5950-8e7b-49fb-a45a-3b8195d0facf.jpg -7073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it89e606d1-a65f-45cb-b6ed-0c72e77ffb1c.jpg -7074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it908b9e31-b215-413e-90cd-3db96b830c7c.jpg -7075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it97258c92-bfdf-429d-b5e9-e2ca17555785.jpg -7076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it9a2d06b2-8698-4728-8eff-d592133e8aa0.jpg -7077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it9b18644d-963f-48a4-be1b-87aa2bf67e13.jpg -7078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it9bb59d6b-600b-4fca-ac43-48e2b06efe95.jpg -7079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_it9d081947-af87-499c-8048-3b67c1b9ba93.jpg -7080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ita2d3e544-161f-45d6-a8ff-dd3f4657d39f.jpg -7081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ita41cff85-790e-4b79-9ca2-6b02c700920a.jpg -7082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ita7e477b0-6b82-41f2-885b-faefaf5d4d4d.jpg -7083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ita9ade34d-0f12-4f38-941c-967b1475e1ee.jpg -7084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itac809d83-447e-4be5-83c6-162fba44155c.jpg -7085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itadf25a66-b7b4-4ad6-92c7-ef58c78d65a5.jpg -7086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itb163174b-a2db-46fd-a1f0-580bc79e3876.jpg -7087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itb306b0c1-7251-49b3-9638-107230481179.jpg -7088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itb3418fdf-a8de-491b-901f-bc5594e62cc6.jpg -7089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itb3812abd-ecb2-4a0e-9a1a-9c8bf9d849fe.jpg -7090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itb5abfaa7-3e56-44e2-8b23-fc674944b69c.jpg -7091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itb5dbc51b-3c89-417e-a4c9-0b2e57789097.jpg -7092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itb6eeb713-debc-463b-9fdb-4d7cdeca12ce.jpg -7093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itb9f72ac8-820f-46c3-a71e-d2c32b3ca667.jpg -7094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itbc94d4b4-59fa-4e44-83ec-976c0bb3f5e9.jpg -7095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itbce4ea46-e27b-4b29-ac4f-45784ec5e76b.jpg -7096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itbdbc5b52-9757-43ee-8857-89d0007c7ff1.jpg -7097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itbe2ccaa6-7729-427a-8296-3073be86f9d8.jpg -7098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itbfb18a29-da30-486f-bec3-f4e1c23bdb44.jpg -7099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itc20bf6e1-db1d-4848-a5ec-e0587cd9dc49.jpg -7100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itc24ef132-1e90-40eb-8998-d59894a24816.jpg -7101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itc7802c6e-776a-48e1-ad94-229dee0ebab2.jpg -7102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itcaedd22e-baa8-4926-971f-676e74f624f4.jpg -7103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itccd9ffd1-3c50-499d-a446-c5ca87adacfa.jpg -7104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itcd23ae42-8412-4adb-8328-01387a219dce.jpg -7105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itcd7cfbd3-5a97-4e13-b534-c45819f10ca7.jpg -7106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itd0a002f7-28f4-4c9c-9a92-04bba8a28595.jpg -7107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itd8db0577-94f5-4ee0-bd4a-5bd3778e2e25.jpg -7108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ite06a24b3-9845-4256-8252-e02fbaae775b.jpg -7109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ite27f824d-7350-40bb-9c4b-d2fd6a6a71dd.jpg -7110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ite3254f92-4a16-4fde-95b0-ca05c2fd692d.jpg -7111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ite4fcdcc6-c62e-4315-a39a-f2d1436f709e.jpg -7112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ite87acfc0-fab0-4da3-ad97-859de7dd279b.jpg -7113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_ite91220b1-ae43-4caf-89ec-34f83a77e5e0.jpg -7114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itede52e1a-9b37-4c97-9062-be0062c87a0c.jpg -7115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itef60bdd1-1920-4750-b620-cc44835c4db7.jpg -7116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itf3136fc0-6761-4998-8d15-f8fb1673c697.jpg -7117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itf51c60e4-6e59-4c11-b092-2c9e367fb76e.jpg -7118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itf6c84aa4-fc21-475c-bc3e-3ecf84c1cd76.jpg -7119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itf753ca94-1726-453d-9e97-7be697ad1a54.jpg -7120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itf905d234-a180-4589-bc1d-0ceedde02817.jpg -7121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_refrigerator_in_itfe94384e-4024-4ccd-b560-0dc8d6d4a9bf.jpg -7122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it0385aca4-c054-40cc-9d60-2c1e636b1382.jpg -7123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it0554c9ed-d568-4cc0-b610-d2c0b9d74220.jpg -7124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it094ba49c-8fd3-476f-9dab-2b6061ae04ae.jpg -7125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it0e99b538-0fc4-4699-92b9-f05465424219.jpg -7126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it10a0f299-aca0-4453-9e41-eea0f893ece1.jpg -7127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it127e97d8-4176-4d84-b69d-9dc6586a4a45.jpg -7128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it14c90c36-9b5d-4990-8f30-05f6e3151c26.jpg -7129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it1784e6ba-8281-4941-8322-8a87a106ef8d.jpg -7130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it1959188e-0bbb-42e8-b26c-f73dd74070e3.jpg -7131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it1b934c1e-97c4-41c8-a508-f72ca8cd8b08.jpg -7132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it1c179097-efea-4307-8cef-7481651fcdcb.jpg -7133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it1cb733dc-ecbe-4cd8-80d9-86c1c55514f2.jpg -7134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it204e1209-c291-485e-96a2-c73c6e4ef780.jpg -7135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it211c41d3-91ae-4e4c-a89b-44bb34b7cc78.jpg -7136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it23dfaf0f-1f4d-4b8a-9766-43d86a626878.jpg -7137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it24982d62-831e-480d-9876-213474c00315.jpg -7138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it27f1153d-02cb-4d19-a250-72d7924cfeff.jpg -7139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it2bc2dfe5-fde8-49f6-9830-c29d71e3b10f.jpg -7140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it3025ea0c-3420-4997-a5a6-7300a99c55aa.jpg -7141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it30bee920-f027-4acd-9c6c-e4dc062665f1.jpg -7142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it30dd4f48-4b51-4e3a-863c-01e134eef571.jpg -7143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it3241b52e-f538-40d3-bd51-5b31bd2edc51.jpg -7144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it34c9910d-ab45-4da3-83db-d6a79b1d28f9.jpg -7145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it34d8f486-e635-4584-b642-466f4efb0a36.jpg -7146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it3605f80a-d740-4f38-9ed0-8f4be31c6d8f.jpg -7147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it42f7d90e-0ea7-460c-9066-45063e045dd2.jpg -7148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it43d00c56-5930-490d-8ab7-ee149d9381e8.jpg -7149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it44645324-1a46-4f1d-92d5-4d20f5e8a214.jpg -7150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it45d94754-9172-456f-9815-4cefcd77a3af.jpg -7151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it46c0c55f-8e95-401e-b64b-1477a0edba4d.jpg -7152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it47ec0ce4-480c-46e0-a9cf-073a35c2930a.jpg -7153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it48fa1775-84c9-4894-bd5b-344da9eb1622.jpg -7154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it49fc69d1-3626-42d7-a24e-5302a75992c5.jpg -7155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it4b0d358b-4751-4f3c-bc83-879e0fc988d4.jpg -7156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it5e4c6d48-c93e-448b-96a0-b466f2fb976b.jpg -7157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it5f85ab44-bfed-4291-ae78-cf37ce1e2fac.jpg -7158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it62cba9f5-84d0-45c8-bc3c-c00a987762a7.jpg -7159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it683bf3d4-c51c-476b-b863-1a90802d0e89.jpg -7160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it686c61e5-0dc4-475b-9cea-aef0f2da2104.jpg -7161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it691361ab-c309-46c9-8abd-19b0ea6adf2a.jpg -7162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it6a886623-f7de-4687-a691-542949002223.jpg -7163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it6b48db9e-838c-4a51-9170-a6ab286e166b.jpg -7164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it6f328039-1472-46da-ba2a-ee3d5fff096c.jpg -7165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it72c93fd1-a834-484b-9995-0c3c73616ef1.jpg -7166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it79344524-6fa0-4507-82fb-28060b5767d1.jpg -7167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it7c1c0ef6-e74f-4917-8be0-cd7e1278a86d.jpg -7168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it88693e07-da2c-474d-ae4b-c8e1633da9c5.jpg -7169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it8c69287b-fcae-470f-b317-5032a4e5e6f5.jpg -7170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it91a3b51a-6171-4c0b-86e9-cd96012d6ba7.jpg -7171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it93819003-e983-4102-9414-93aeb3995083.jpg -7172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it942c9ffb-087b-4b3d-b388-8964f36982b3.jpg -7173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it964729d0-e266-4170-b0f4-f98f0b558bba.jpg -7174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it965fbfa9-8280-48f5-b7a5-7d7beda91169.jpg -7175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it99bf91c1-1901-460d-8783-daa03a68718e.jpg -7176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it9f54789b-572b-45c5-ac0e-b75d4a7aa373.jpg -7177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_it9f9c9d66-8582-49a6-b4b7-a192d9aaa4db.jpg -7178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ita06ce7c8-788b-409e-aa71-bc4a2f89bb45.jpg -7179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ita13364db-1365-40fc-85b3-c39a3c7e2936.jpg -7180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ita5f1f1c5-6911-453e-bdda-9727592aa77c.jpg -7181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ita86e32b4-3532-487a-aae1-c40f2e9cad87.jpg -7182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itabb17b87-9f98-4976-a6b7-4b0bd6ab83cb.jpg -7183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itad649877-6058-4711-a819-75cd4177cb70.jpg -7184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itaff4f0f8-d657-467f-9d83-b22fceeb63ff.jpg -7185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itb47ebd9b-71f0-4a5c-923c-40ec31b20056.jpg -7186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itb4b52d84-e173-480e-a9e1-de981e96df22.jpg -7187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itb5ae1dd7-a1f0-49ae-a946-65491181f44a.jpg -7188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itb67915f6-9a69-4cfa-89e0-60914d487788.jpg -7189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itb73e028e-0054-4d0d-b81b-ecf813be1c2f.jpg -7190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itb76780d9-c19c-4685-8b60-7a4e802fae2e.jpg -7191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itbb4f906e-c679-4a74-ad9c-845b3152dc33.jpg -7192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itc5a4d029-3056-491f-93f3-4da59e98302e.jpg -7193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itc7c6e2a9-a766-465d-abf7-6c3b889ab972.jpg -7194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itce8f5b0c-acfb-451a-9e96-1a88451099c0.jpg -7195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itcfe1b8b9-252d-4e0f-9856-9fb99c90fc11.jpg -7196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itd2a38939-601b-4632-96aa-62f082161ad2.jpg -7197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itd4027ff0-3e43-4275-968f-a5a9ac510814.jpg -7198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itd6154010-b1ae-4bb8-b8f0-a791919b6b78.jpg -7199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itd63d21ef-4625-42c6-a41a-964e6169f7ef.jpg -7200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itd7a884d8-8294-4bd5-9584-7a6b43511fb3.jpg -7201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itd7f708b1-3c26-4dfc-8d97-ae6958dac664.jpg -7202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ite0d39275-66dd-4cfa-9d54-6081339226ec.jpg -7203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ite278b417-5e55-42b0-b53e-c3eec5dc1ecb.jpg -7204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ite35483df-f2be-4b7e-9445-1a2653bfc641.jpg -7205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ite523831e-28e0-4ea0-a5d4-6fc83444d339.jpg -7206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ite7263ae2-0fca-405a-88f1-61414708e850.jpg -7207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ite7a0b5ff-45d5-48da-a53d-b09262a4b58b.jpg -7208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ite87cb976-fd72-4017-b844-a3c4cab75ba9.jpg -7209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_ite886c2ef-e0a7-4be7-866e-53fddff4d4ac.jpg -7210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itebdbddb0-4bbd-4896-9d61-acf85f607e4f.jpg -7211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itecf2135c-3065-4847-93e3-a0fadd5e9d9b.jpg -7212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itede40ca4-1e0c-4b8b-848b-40334953e139.jpg -7213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itef630c55-40f9-4bd4-b189-20c72e3482cf.jpg -7214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itf0622294-78c1-4f40-bf22-d32e645d24af.jpg -7215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itf2a8090c-8f18-484c-8037-f2955a04a8f2.jpg -7216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itf5d59fc3-6c22-42fc-87e8-3f8cea34eb6e.jpg -7217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itf68989df-daf4-4863-b437-d948e6778f38.jpg -7218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itf6b9a75c-881e-4d9f-ae00-fea87fd1ec39.jpg -7219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itfc126e66-79b3-4aee-971e-523e4b244790.jpg -7220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itfd10cbc6-5772-4e49-bc49-98e41b0e08ce.jpg -7221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_remote_in_itfebebd8e-18c6-42f4-8055-fc463ab1c141.jpg -7222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it02f4ae58-6d96-4d84-8702-abc779e85aa7.jpg -7223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it057ab7a5-8666-4115-85bd-e6fb569a2097.jpg -7224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it068e89d9-ec77-4ea3-9b42-5d5ebb11b386.jpg -7225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it09793570-8088-4649-8d7b-27cafdf81b93.jpg -7226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it0d032a92-7a56-45bf-a8aa-fe4c7921329b.jpg -7227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it0ed45820-3c58-4ce4-af5b-c26ba56a7ed5.jpg -7228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it0ff225ac-c08b-47d7-8323-790c01d077ec.jpg -7229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it10979938-a7b3-4520-b966-d55c09f85ffd.jpg -7230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it10b6087c-2795-48cc-b12e-16740a273a02.jpg -7231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it10f14a49-3276-4890-a1f0-d789f66a9520.jpg -7232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it115ea3f9-1b07-47d1-b46c-784e0e4f87a6.jpg -7233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it17cbc004-ed5a-4feb-8193-dbdc1d88fad0.jpg -7234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it180b5a94-a75d-4df2-87fd-688c26149807.jpg -7235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it1b63f741-59e5-45cb-b839-70d0d6a4ebb6.jpg -7236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it1d075630-0cc6-4d5c-bc6a-cbc197d09737.jpg -7237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it21031d59-5c9d-4f9c-a585-74b1e9240251.jpg -7238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it251b7fc9-b0e2-47ff-bef3-f39934c14163.jpg -7239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it2ba3c731-ca4c-4b34-967d-579ede69f041.jpg -7240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it2f1c6b61-d2d3-42a7-8478-094f6c4604fa.jpg -7241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it2f1fac94-fde8-4541-b0ea-c95949011bc4.jpg -7242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it330d8223-1bd3-46eb-be6e-198ff8d3299a.jpg -7243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it340ea17e-929f-4670-9721-7999f067a1ba.jpg -7244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it366032fa-5dce-4b47-a8a2-63e9554a3dc5.jpg -7245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it39c74be2-8152-4879-b8c0-94c217b22537.jpg -7246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it3a0ad692-8852-408e-8e38-9c973a9d0364.jpg -7247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it3bc32190-f3de-4a15-b885-7d2d32bb3937.jpg -7248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it3cb7c9f8-dad1-4056-b28e-0dfdb316b97e.jpg -7249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it4096d712-047d-4a1b-8e30-47fdf300919d.jpg -7250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it417b021c-08ea-4953-87f9-f3456cf4ee0a.jpg -7251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it46d7c861-4a6f-4a41-9262-6fb00903d3a8.jpg -7252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it49927cb7-b354-4ba6-8ed4-973dc0356bdd.jpg -7253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it4b07ea34-f557-4242-9366-a6e142db8653.jpg -7254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it4ec25e51-9e3d-42cf-96bc-0de2f565fd7b.jpg -7255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it4f16be64-8ea8-46ea-bdc0-de5ff9cd3fba.jpg -7256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it53949f61-8ea4-45b0-b337-c3b115209b69.jpg -7257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it55c59d82-a1dc-463e-8964-827139e9b971.jpg -7258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it566b51dc-5af1-42e4-9d9f-29b27f40dc57.jpg -7259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it571c44d2-07d6-4201-bc76-6a8c1e7b6acd.jpg -7260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it59d0e10a-1b50-422e-a460-adf39eba196a.jpg -7261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it5b3613f6-84c9-42e1-a780-42347cabbe45.jpg -7262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it5b758c69-7c7d-4add-9e93-00291843188d.jpg -7263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it5bd9d9df-089f-4c24-8832-751beac727bc.jpg -7264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it5cff3e43-e16b-42a2-a8c6-358c3009eab1.jpg -7265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it5de791e9-fc3d-442e-a5e3-fd8c2a96402b.jpg -7266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it6080a0cc-701a-4593-81fc-056051cbad13.jpg -7267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it638afc06-81a1-4d6c-94c9-df2950ab33da.jpg -7268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it63dcced9-fa32-47fa-9ff9-8c3f51d3e5b9.jpg -7269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it646895fc-35fc-4f97-a9ba-463ab85c4acd.jpg -7270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it64f2e0f9-bd6a-43cb-a887-a56b79224e5e.jpg -7271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it67fd5c78-4412-4898-9967-13e2f9649edc.jpg -7272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it69e67811-2556-4cb4-a6c2-23d22d9eb42f.jpg -7273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it6b14b05d-3161-4933-bf87-3e9df7bfa065.jpg -7274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it6beaca3a-08be-43e4-ac31-df29f713cb15.jpg -7275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it6bfdde2f-e89f-4f0f-9152-165501e4e226.jpg -7276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it6e0e1cd6-c398-45f4-b8fb-8cfa185e0e07.jpg -7277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it7cc59e21-fde6-44dd-a230-4898a465265a.jpg -7278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it7f23180f-b070-4b56-9125-ba660c71c59e.jpg -7279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it81f889ce-aa6b-4e87-bbaf-5785ceec4b58.jpg -7280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it8263c9b4-4e3a-4d4f-8138-cf3940cc3023.jpg -7281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it82edb7e7-fdfc-41c2-aac3-23b298d4e8fd.jpg -7282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it8587af89-3c2b-479d-8255-a363f8d60902.jpg -7283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it877fc4f1-ed94-4533-a805-41d356218793.jpg -7284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it87e3592e-cec5-4c95-86b2-66d35254a23d.jpg -7285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it890a8e90-3b06-4e76-ab41-8ba1619a0eef.jpg -7286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it8a7be3aa-4f66-4a18-8922-888d2c93ce7d.jpg -7287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it8ac0cae8-10b7-4b98-a4df-3bb94fb8caef.jpg -7288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it8b65b3e2-4ec5-48b0-ad36-6271daf8c594.jpg -7289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it925e210f-36f1-45b9-90e4-d71958c4375d.jpg -7290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it92a35b9b-5cd0-4e02-ad7c-4b59fabe1636.jpg -7291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it932e9484-771b-4ae8-9175-7449caf14e7b.jpg -7292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it9ca7871f-216f-43c0-a4a8-2a44001263d0.jpg -7293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_it9d034426-8d29-4729-98a1-390d012bad73.jpg -7294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_ita03bb250-0352-4d04-859c-181c03e938b7.jpg -7295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_ita14b9779-4762-45cd-804d-6807610d4404.jpg -7296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_ita2192d54-cad5-49fd-b8b8-f66a7347a366.jpg -7297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_ita6019d41-b8c9-4baa-a87f-29ada059cd67.jpg -7298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_ita7396311-3026-4ec6-9107-8f38c7f9e808.jpg -7299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_ita90a4110-cffa-4950-b4b8-c2b26b7fda48.jpg -7300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itab43f929-d018-44e9-bff0-0f3dc40de5a9.jpg -7301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itaf7e92d8-d9ba-4d8c-b5b1-372ca3ba67b8.jpg -7302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itb151bf3b-c0b9-4fc5-a45a-e8529cc4e735.jpg -7303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itb4ad4eb4-13e3-42e3-ba94-58c90ff215f7.jpg -7304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itb5c86249-624d-460b-8cef-fa4815f8b31b.jpg -7305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itb90abe10-7f33-4b66-a124-b1d5236fd518.jpg -7306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itb9599bdc-be55-4b91-b066-6dec62687619.jpg -7307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itb9852780-998c-4864-93fd-614225cdd429.jpg -7308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itc161eb4c-ac03-4280-83be-49bd60c37e49.jpg -7309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itc3131da2-176c-428b-b04e-aa0fc46facce.jpg -7310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itc41d88a8-c925-4a3f-8b7d-f0960fcfea3c.jpg -7311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itc4da8a57-4db0-4655-b604-2efed9cd8f78.jpg -7312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itc5432399-2019-42f6-8e6d-ea194c48c56f.jpg -7313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itcf14fd73-b319-449c-8351-a2b17cd5d4b4.jpg -7314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itd6d23049-7a5e-4c4e-a0b6-e2ec2921d02f.jpg -7315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itdcc8c803-1eb5-4f57-aba4-b9a2974778af.jpg -7316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_ite3846874-721b-46f0-9475-1ea7494891bf.jpg -7317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_ite9160110-9795-47b4-a392-47d703c0c8be.jpg -7318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_iteb98381c-c3f1-4da4-b111-0b5b04e28585.jpg -7319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itec55323a-4d79-40be-a6a0-f02ed3633b35.jpg -7320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itf15df35a-d876-44ff-84c6-c15a751c35b2.jpg -7321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sandwich_in_itf69bda36-8b49-4076-b16c-8442dd2da0d9.jpg -7322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it058b1785-fdb7-45f8-903d-c403d746dd63.jpg -7323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it09fb76dc-5a38-4262-9171-094573f12791.jpg -7324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it0c52eee0-8ac0-4872-96f4-34cbfc1c965b.jpg -7325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it0deaa472-a12e-4e3b-bb26-6265f25b0280.jpg -7326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it0f10ffbe-ec2a-40ec-82fb-343a33fe281f.jpg -7327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it0f8c198b-4990-4051-bc9b-68e601f2284f.jpg -7328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it11d4ac99-931e-416b-9824-7bd69a8b71be.jpg -7329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it12387750-2048-4bd5-ae37-59f75ba21da7.jpg -7330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it17827a30-12d9-4617-b32b-4e623c884c94.jpg -7331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it1987cbdf-ef32-4755-9801-aee371739a9d.jpg -7332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it1aed8913-499e-478b-a50c-f7bcd2861f4b.jpg -7333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it1b91d67c-808b-49fa-a515-2d7f8485707f.jpg -7334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it1e26a53f-0a54-4576-b903-ac45401414a0.jpg -7335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it1f1ff3bb-0066-4246-a77a-cff62b46f993.jpg -7336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it2359ae1d-ee99-47d9-a3e5-798a1826df5f.jpg -7337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it2445dd31-521b-4229-843c-23f92a8fa604.jpg -7338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it2a315972-b6e7-455c-9396-24e0b3abcdf0.jpg -7339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it2c227fb9-23d3-433c-95e0-101900799ae5.jpg -7340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it2dd31813-a235-4cff-a612-644172d60025.jpg -7341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it2eedfe8f-6524-4959-bb09-6576f3c5cf05.jpg -7342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it2f11eb46-4d3d-4fd9-982e-e51f9f6da6c8.jpg -7343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it30900a29-e63b-4998-8f89-6531f93a6972.jpg -7344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it35a08dfb-29b8-40c1-9eed-168c42da63eb.jpg -7345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it3625f392-c78b-40a3-9354-56fb8c067686.jpg -7346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it3a94ed32-f120-441a-92eb-1133440fede1.jpg -7347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it3cdbe201-d8f6-470c-a34d-32bce4266aba.jpg -7348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it4663ac2c-3e5e-4223-a130-fa4815a7b2ae.jpg -7349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it46f21156-f068-4cb3-b063-266366ba3711.jpg -7350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it48865f9e-1715-43b0-9961-fff75ec1bf8a.jpg -7351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it4c80658f-2dda-4e10-864a-71eaad539ca8.jpg -7352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it4d7ced5f-558c-4113-b846-2d0680ca1f10.jpg -7353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it4e936e10-b499-4411-8d18-004811f40063.jpg -7354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it4fcaecee-e695-4a15-a93c-0ecdb9b91199.jpg -7355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it51778907-3d81-4217-bdce-db7f408cda38.jpg -7356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it5305d08f-b420-4d73-8e10-92b1ac132085.jpg -7357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it531fa036-5e82-4f6c-a96e-ec9b8ecd355e.jpg -7358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it535ec5a8-3236-44e2-81ca-cbcf9caa8d5e.jpg -7359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it592afa26-b44b-487c-be48-509dbbb0ceb3.jpg -7360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it5955dab6-c064-49dc-a302-47c875bc64cc.jpg -7361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it5ad7af08-35c3-4b28-b021-68e04f44a835.jpg -7362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it5c4b1c76-1dcf-49c5-9856-34b6a3d74264.jpg -7363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it5cbbb413-d14c-4f71-9594-c317e803a312.jpg -7364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it5e58ebb6-a189-4b32-82b6-300a0eb7d076.jpg -7365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it621d1ba9-2354-432d-b06d-5686dc7ea16b.jpg -7366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it63d48f66-9d7c-4488-bf82-dc9bffc1d5a2.jpg -7367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it676ea2e2-7973-4e07-9ae0-ea9b2cdfa709.jpg -7368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it6bc73cb8-4f24-4157-9519-e6cad28b2c72.jpg -7369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it70dd8a83-29cd-487a-a33b-20490d4159c2.jpg -7370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it73c70f6b-a651-4b1c-9327-865a0a5246f4.jpg -7371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it75842c14-fc7a-4315-9e2f-4f94af79e2b9.jpg -7372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it79c736a4-2632-4e9a-8a1b-9c5345daf314.jpg -7373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it7aa18ffd-d1bb-420b-84af-fa40ed819c25.jpg -7374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it7dbe6173-d03f-4be1-a8c7-6959174bc7be.jpg -7375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it818e8410-b3f2-43e7-ac7a-defdc7b0a186.jpg -7376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it83d3f3b4-804b-4096-956e-c012e5298027.jpg -7377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it870169d9-5b88-4b96-9368-8803ca53926e.jpg -7378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it8834c365-8226-4cb0-b712-765eeaf7924b.jpg -7379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it88dc51ae-971b-4e96-b32d-e6008341fe1f.jpg -7380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it8dcae149-d8c7-419f-95c1-858a33f8a6dd.jpg -7381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it90973574-0d27-4039-bc94-73bdeea23205.jpg -7382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it93d1fdef-d3c3-49f5-9eed-d4eeac5c4ead.jpg -7383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it946a6bd3-7d6b-45ae-b0dc-3d7593df7ae3.jpg -7384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it94712f69-8a16-4bb7-839a-d01e4667fea4.jpg -7385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it97faa91b-a253-45a8-b9a9-509adfe39c8e.jpg -7386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it9c6621f6-b30d-4dd9-8995-5ded8ef48ac2.jpg -7387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it9e1b00ba-85ad-4152-92d6-a8a194bf435d.jpg -7388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it9edb064d-0cc0-4457-87a4-08a858315de7.jpg -7389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_it9fb17401-e0bf-419f-be18-c19f8716dacb.jpg -7390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_ita684de11-a53b-48fd-a718-60fd2c86788e.jpg -7391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_ita6d45c77-557a-4e44-ba0d-3550096097e8.jpg -7392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_ita6f7882d-ee75-4fdf-8727-b54002675eff.jpg -7393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itaa477828-2ff1-4e79-b3db-1632e783ed13.jpg -7394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itaba2332f-4606-4b05-bcb7-e6460500e65b.jpg -7395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itb0be204e-ecc8-4de2-91a8-4f9cd85de6a5.jpg -7396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itb17311e6-8910-4c49-9e8e-a070d3ffd958.jpg -7397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itb66c8659-8808-434b-8bcf-84050e6ce3db.jpg -7398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itb6b5e880-5d0c-4ebf-b62c-426e79f90c4d.jpg -7399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itba3f4088-2e6d-4c0a-abb2-5b988921aec3.jpg -7400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itbbb9eb1b-64d4-4314-9021-eaf3dff36c61.jpg -7401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itc0532a47-1594-4ba1-8507-1e79bf0f808a.jpg -7402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itc5aaf1c6-ab40-44ab-a914-2f955bdb67ab.jpg -7403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itc6c78863-43a7-4a54-84a9-39909d4d616b.jpg -7404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itcc96aa10-c026-4541-97c9-7fd7d84428bb.jpg -7405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itcea8208e-da36-449a-9e4c-d8c914fa3faf.jpg -7406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itcf3a7ed1-f454-4052-9b97-9a7bff626b82.jpg -7407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itd67c240e-99d7-4c0e-8472-aa8703006ab7.jpg -7408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itd7d50c48-8648-4b8b-8f4c-f9127cedca3d.jpg -7409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itd9cbb3a3-b775-4835-ac3c-3532b984cd7a.jpg -7410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itd9dcc80f-49ad-433d-9426-60968b006340.jpg -7411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itdbe7024f-dc21-41ee-8cff-54ac8020b16e.jpg -7412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_ite39d6d47-dc47-4df5-a13e-39e15753d897.jpg -7413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_ite41d13cb-72e6-4cb4-91e3-a7cd97fffae2.jpg -7414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_ite61973ff-a77e-49b8-942d-50f81223c323.jpg -7415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itea389e5f-2306-453a-b552-ef6b9369c561.jpg -7416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_ited73251c-ace0-443a-b19c-b51125364855.jpg -7417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itf321260e-51e7-4b47-8c00-26a26b61cea3.jpg -7418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itf64f78d0-1769-4c6c-afd2-e951fb369ffb.jpg -7419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itf8723b29-c789-4e14-9b0c-240b685843a2.jpg -7420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itfb7b46c6-4f0f-415d-9d31-08a3b809b5ae.jpg -7421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_scissors_in_itfd641bdd-a5bc-4c3e-91ba-47bc2f5847a7.jpg -7422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it01ab3157-7378-455e-b1de-acf25ca5bc37.jpg -7423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it01cb88c2-416a-44cf-8b67-cec8329f33ec.jpg -7424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it0310eace-e774-41d9-b991-e20ece74fe6e.jpg -7425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it038100c0-40ce-4bb6-81ce-cd70050a3f95.jpg -7426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it04422abb-d433-45e5-b8f6-1fa72e84cdba.jpg -7427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it06779521-14a6-4c97-b25b-24171d7cb78a.jpg -7428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it0a40eb2e-5b38-42db-887b-bee5be89d983.jpg -7429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it13cee569-9f14-45e4-be55-d9c2c86db0c0.jpg -7430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it1596be28-eeca-428e-a016-58d157462883.jpg -7431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it182576b0-6c43-47ec-8f95-157d898a8fd1.jpg -7432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it185289ef-8445-4eb4-9bc9-bf252fa3713b.jpg -7433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it18d723bb-24d2-4312-afab-e8e43d6cd216.jpg -7434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it1a8f8fd5-2934-4995-a095-67a5382ba6fa.jpg -7435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it1be00d07-defd-45f1-a122-460ef156308f.jpg -7436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it1c12f607-42c9-442c-9dc5-137c6517396a.jpg -7437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it1d771af9-cbe9-4c21-a589-bd0c5f32cfec.jpg -7438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it2077133e-804a-4e77-b8f1-a07ecf88f71e.jpg -7439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it22d2c449-0d23-4abb-885c-916ee29d9325.jpg -7440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it23e0f30e-715c-4bb8-9c12-10a9771d9770.jpg -7441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it24b8297d-3d15-47ad-8edd-77e2481cfc6f.jpg -7442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it29a4d231-faa9-426b-b49b-aa6c84d3f5ca.jpg -7443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it35df7526-ffca-4ecc-ad88-2272e665fc62.jpg -7444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it3813a6c2-b44d-4755-828c-b6e27a92c3b7.jpg -7445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it39238822-dd80-4e1a-8f9d-8f4703cbb062.jpg -7446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it3c8d39cb-d54b-46bf-a575-93488a308884.jpg -7447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it3fd210e2-612e-4165-9ea4-bda3d22ecd01.jpg -7448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it43b24b66-2584-44af-ba48-95b9afe02561.jpg -7449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it4827fa91-5410-4517-a55b-76e09ead11b2.jpg -7450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it48f98887-078c-409d-b7b8-1bcdee8eedc9.jpg -7451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it4f220239-80bf-49a9-bd54-a3342ec7f0ad.jpg -7452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it50dabfe0-8449-4bc2-8338-ef8c8c3f0ac5.jpg -7453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it550b8a96-0e18-4386-a7c4-997fbb759e34.jpg -7454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it56cc3744-17d5-48f8-84d6-316bd15849d9.jpg -7455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it57b4b039-2e10-4b18-879f-532ae1104338.jpg -7456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it589af8ee-69ce-4cf8-a7b0-d0498cce7ed7.jpg -7457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it6248cdde-7118-4ff1-9d95-21f119412cf7.jpg -7458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it66d55cbd-ca5a-4726-abea-d0cb5c22e6eb.jpg -7459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it67350e3c-adda-4d39-8a3a-f7aa7e82aa4a.jpg -7460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it67857628-e49a-420e-9f65-aff6d2e305d8.jpg -7461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it6c12e6f7-efe4-4b6e-a786-5e47771ec1eb.jpg -7462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it6c297831-e728-42fb-a118-2949516be746.jpg -7463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it6f3be663-0c24-4f79-985d-5a7d5d076f1f.jpg -7464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it6fd36008-8b57-45a6-b100-3832e856a107.jpg -7465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it74533a62-5989-4cc6-bfff-922e54c93fa7.jpg -7466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it75a0a485-38cf-4116-b095-990cedb196cc.jpg -7467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it75f7e01f-aaa9-45c1-a499-b26fb879e412.jpg -7468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it780cf441-82e3-4078-a8db-777c81c8a76e.jpg -7469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it78f9e401-748a-4ad4-b52d-84c4bd1763eb.jpg -7470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it79e1c9b2-cee1-40bd-9381-be8f238affd7.jpg -7471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it7a8ef44c-fc54-4d2c-aa70-cb62e159cda5.jpg -7472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it80863522-c208-490b-a72f-6b178a110bad.jpg -7473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it83a6c89e-26c7-4378-8887-324ab6ca31ac.jpg -7474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it8c5e4317-118e-445e-b1bd-047f90002f31.jpg -7475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it8ca75ee0-5e3e-44f5-ade3-869b4b92a3e7.jpg -7476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it90a4b9e7-2a33-4261-90ac-6016ea0d1489.jpg -7477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it90ac17df-d308-48c2-9d56-e79dc8d35f0f.jpg -7478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it92ae313f-9a00-406e-a7f1-313d3816118f.jpg -7479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it93338994-68d1-472f-a924-d0963ab257f7.jpg -7480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it96a634b2-0033-43cb-817d-49ff2ed91b10.jpg -7481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it9847694b-24b7-414f-b2a7-8e7800e18af1.jpg -7482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it99d56c7c-2612-4676-b5c7-49e762c99ada.jpg -7483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_it9a6968f6-6525-4c71-9eb7-eddb05beb101.jpg -7484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ita283fcae-ed66-4fde-9128-8c86fabf3ea8.jpg -7485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ita3f7d4aa-61f4-49fa-b6e3-dc953a1fb175.jpg -7486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ita521c781-a63f-4624-85e9-b734364b9118.jpg -7487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ita7a8b6e6-1635-43f1-8094-f31d999a642e.jpg -7488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itabe7fe8e-4914-4da2-82de-ad62ea474537.jpg -7489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itac3ccb0e-dfa2-44da-875f-c2caec8c27c5.jpg -7490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itad48fbdb-2ab5-4fec-b29b-75c4c40746ce.jpg -7491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itaee55270-4e04-4b28-bae5-8ee3daa6b900.jpg -7492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itb28d331a-c507-4555-9be3-62f45cc90bac.jpg -7493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itb43ef4c8-9e0c-4a1e-9e8c-1f3e36d5a939.jpg -7494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itb78067b4-d84d-45cc-823a-0acb802f21a2.jpg -7495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itbd716155-a283-4a81-8150-b2e977bc4eb7.jpg -7496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itbd8861d9-4768-49f4-9f44-1903bad1c762.jpg -7497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itbf2185a1-b40a-42b7-8def-9fb35d0346e4.jpg -7498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itc89011bd-fae3-4b3b-855b-abc9d0fc9a23.jpg -7499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itcb38294d-3b9c-4835-b5e0-bd484a9f8ab8.jpg -7500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itcce902fe-6a31-4c5c-bca6-4598c413e350.jpg -7501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itcd4f20da-0317-40d5-94ce-3a08a39c061d.jpg -7502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itcdd197f0-03f8-4ebc-823c-3a123d6c3089.jpg -7503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itcecb2fe9-d8f7-48a9-9102-ee0ea76d840a.jpg -7504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itd040cbab-c735-4974-8959-f79e9abe4180.jpg -7505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itd31572bd-a619-4704-b347-a5f4a718dcac.jpg -7506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itd8f5eb7d-1a96-451b-b65c-ff48e142cdd2.jpg -7507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itd941077d-e10a-4e08-8c6d-f7d2f97a54d4.jpg -7508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itdba1a209-d8a0-4917-8ad3-b8d2981aff51.jpg -7509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itdc685d40-d521-4e5b-9bab-b6d6be2174e4.jpg -7510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itde27f022-08a7-4cb8-8124-163a84135123.jpg -7511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itdf6a2cd3-82f9-455f-88c1-1ef85689fdea.jpg -7512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ite0c1a6df-a214-4f64-9b3e-989b86a59943.jpg -7513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ite2869f12-e452-4a36-a0ca-5840b14fed1c.jpg -7514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ite3f1aec6-d944-451b-9d33-c7eeace7a87a.jpg -7515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ite4db8b5d-1bdd-4c30-9989-d26d4dbf0ea1.jpg -7516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ite86bd340-fc17-4ac8-b28b-a07004cc44d1.jpg -7517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_ite95beb97-4846-47c0-9d51-7c77dfcb5558.jpg -7518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itec8daf09-4387-401e-bb6d-057e572a2537.jpg -7519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itf2eb0535-f569-4a34-9d41-6cad81b41eff.jpg -7520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itf8147e93-ce15-4a56-aead-b11c8c21b2ab.jpg -7521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sheep_in_itf932b975-9b07-4a96-8ccb-5162bfe520e9.jpg -7522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it0181f6ec-b66d-4490-9442-2dd35207d788.jpg -7523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it05eea010-5fba-44f0-a154-d94370d2665c.jpg -7524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it0d19c33b-b507-4d00-befc-14ff924765f7.jpg -7525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it0d2c50b4-1e83-43b8-8a68-aca7c8716599.jpg -7526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it0dd7e9dc-f2c9-4ffd-baf2-6c9e81baaa6d.jpg -7527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it0e2f9188-f600-4114-ba1f-2629432e4e54.jpg -7528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it13e0f4fe-64ce-4606-b7c2-1a702fb01125.jpg -7529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it14b3529c-f657-4108-a813-eade7de2fe10.jpg -7530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it14db1d63-d7b9-4c34-9d64-cd032eb7923b.jpg -7531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it1b682868-f02a-4386-b70d-89c9798f5665.jpg -7532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it1c7cd06a-67d2-4025-8766-5537653ada12.jpg -7533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2322ea32-518a-4192-8138-26ea4ab0e6c6.jpg -7534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it23cc934d-c7ba-4494-9d34-92e71d7fce89.jpg -7535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it259e3a60-dec1-40c0-a53f-82faf692ff45.jpg -7536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it26f7c47e-e689-4830-be25-915ce35f275e.jpg -7537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it296e2d25-f30d-48e8-b6f4-bf240cf121bd.jpg -7538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2a2aab83-f9b1-4809-873d-782c1ef9d852.jpg -7539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2aec4477-b6d9-491f-b319-9f4307d1696c.jpg -7540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2b086db7-0d44-4831-b4ac-bba5e7dd74fb.jpg -7541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2c12d68a-5c65-4399-a230-861cdc8edb91.jpg -7542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2cdfccca-6c14-4f30-86b6-27a52c47fc21.jpg -7543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2d2764d7-0765-4be6-837a-b26ecf31b8e4.jpg -7544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2e2d2739-b3e3-45b8-a30d-91fd50a3bb2b.jpg -7545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it2fed7231-acd5-4468-9ee1-fd46887e6951.jpg -7546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it30fe8389-1cd4-472b-b470-0ee9444062ba.jpg -7547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it4311cd0e-48f5-48ae-91db-8056894b1b56.jpg -7548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it466d116e-8727-4170-980d-576c10ec6813.jpg -7549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it4a3fc8c5-d04d-4fc1-8f35-b9ec07e45001.jpg -7550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it4b470ff7-e5a3-41d9-bb9e-1172ffc782d3.jpg -7551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it4da26108-578f-4a5b-b14b-a4deb38eb371.jpg -7552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it4e416ef0-cf26-4300-92a5-d300dc3159c0.jpg -7553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it503a84ad-b4b2-4a8a-9b25-2e60d6fcff55.jpg -7554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it517a6b7d-afc1-476e-9616-fceab542a19f.jpg -7555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it560673d5-58a9-497a-814b-6aebb2f76747.jpg -7556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it5764dace-872c-437f-9a54-429e8390729d.jpg -7557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it583ef870-b505-4e84-b0a1-053ea6afd57d.jpg -7558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it5adebf2b-63be-4d76-b28d-4dd3877ea6c3.jpg -7559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it5b2e1140-ae35-4b68-97b6-edf344458bf7.jpg -7560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it5c43c0de-33f7-49ec-b476-33d59acb13ad.jpg -7561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it5de7f003-434f-4b59-9ded-45aba591b402.jpg -7562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it5f2aae13-d7c2-4406-911f-cafec5323ce3.jpg -7563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it60d76a25-2c51-4fd1-943e-930357a22419.jpg -7564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it663df1af-217f-4be9-92ca-740483962172.jpg -7565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it6f97dbcd-575a-406c-8dcf-289837858251.jpg -7566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it704c7d0f-3386-4155-9aa5-66d8e396f7b6.jpg -7567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it70f77f7f-9d8a-425a-b22e-41415bf938f2.jpg -7568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it7227fe30-f6da-42ca-a52d-c6b2617ecd94.jpg -7569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it7853988b-4f66-4e54-b599-b665b21be5a5.jpg -7570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it788829d1-5c48-4429-a173-d77ce4211f78.jpg -7571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it794845d0-7d37-484c-bc1b-cb6c150e269b.jpg -7572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it7e27497e-53c6-4ee0-898a-8b98af269a65.jpg -7573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it81eae0f9-a428-44c7-bbcd-7a7a5bb39937.jpg -7574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it8e1dce8a-acaf-419c-b126-92a595380bd8.jpg -7575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it8ecc6c5e-c36b-418f-9929-fa5355d8e5f3.jpg -7576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it953b4e93-7da6-4141-9db2-3beb3b5100d7.jpg -7577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it964653da-753f-4ec4-bb21-4c3682f254b2.jpg -7578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it9675ff3a-24f2-408a-844a-85106f17c0b8.jpg -7579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it995948cb-9a98-4f52-a631-437a0a9dfa51.jpg -7580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it9a505072-aa38-4f1c-81f4-5c256504dd4c.jpg -7581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it9bc3ac54-7375-45f0-8c41-be574380eead.jpg -7582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it9d8ab0d3-4cc0-429b-af5f-7ca3ea4856a1.jpg -7583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_it9d95532e-65f7-44cf-8df5-ef35d08f48f8.jpg -7584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ita08bae1a-05e5-4575-8687-bc1a7260ee54.jpg -7585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ita0d89646-c7bc-40a7-8762-eeff4f386d9e.jpg -7586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ita5d45362-0559-4ee5-9859-ab3f5f98ce3e.jpg -7587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ita8e85e68-e2ed-4677-81bd-a4f62cae5773.jpg -7588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ita92bf6b9-673f-40e0-a93f-8961ac1416b7.jpg -7589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ita937a1bf-c025-4d3f-8a7b-3b221247c9c2.jpg -7590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itae7def64-3bbd-402f-bc5d-98d64ff9c698.jpg -7591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itb0825451-4a65-4410-af44-1a1b4f6de8b7.jpg -7592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itb70669f8-db54-49a7-987c-a2b90fe2fad4.jpg -7593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itb81bcdda-6d30-49f2-b661-7b6c572a93dd.jpg -7594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itba83ed6f-fb15-4d3b-bac6-24b20c428e5c.jpg -7595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itbbabae15-2dbb-4bd9-935c-7041460bbd69.jpg -7596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itbc9c09cf-c10e-467a-8969-d98b75e2b02b.jpg -7597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itc20c0543-5521-4c5d-9f07-411859e16523.jpg -7598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itc430de8e-3480-48d5-82d7-4f32d1a06ade.jpg -7599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itc7b0d9c6-7711-4772-be37-3bc121a1b41d.jpg -7600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itc9d7299a-d5fb-4cf7-92b2-d0ea7b71759b.jpg -7601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itcc54c9ad-8563-4480-bc19-44507c484a3a.jpg -7602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itce3c8030-ee4c-4c55-ae04-fda1d3a0f671.jpg -7603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itd215aa4b-075c-4588-9477-cb20ef517eac.jpg -7604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itd343528f-713f-4665-9c84-a68190615db0.jpg -7605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itd6357dd1-38c9-48c9-9c67-21fa752486fd.jpg -7606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itd6d94511-e3cd-4b94-9407-41bfba3d36d3.jpg -7607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itd8793e1f-8e62-41c7-b509-a29fa11ae1c5.jpg -7608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itd9627acb-f400-43a4-831b-66f858c081c5.jpg -7609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itdceb5a17-bd6e-40c2-a207-ec7c224c10de.jpg -7610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ite5e008ea-673e-4563-aa86-56cfef618763.jpg -7611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ite615a570-f96b-456b-acfa-ded17aa4c6a4.jpg -7612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ite6438b57-ac6a-4fcf-ad18-42b232fa6828.jpg -7613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ite6ed82f9-6aa0-4f00-9b59-24321c615da8.jpg -7614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_ite9353fe9-1f37-401b-b40b-464ca3af73f1.jpg -7615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itea681d96-4fa4-42b8-b3af-57702c8038a2.jpg -7616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itee48759c-7769-48d8-bab8-598112ea3d6a.jpg -7617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itf3076ce6-db06-4ca8-8c40-9de5dc05db00.jpg -7618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itf30824bb-9966-4b43-895e-49556861c48d.jpg -7619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itf4283c8d-81f2-41ec-8b03-6a66320e7514.jpg -7620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itf45f0034-8e61-49a9-b310-721ed8056f3d.jpg -7621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sink_in_itf71f889c-9b8c-459f-a593-ede6d22223c8.jpg -7622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it033110b9-9f1e-42c9-878e-78e2024dbe81.jpg -7623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it067efc0e-d81c-489d-8a32-4bb18e3c6ba6.jpg -7624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it06b8f695-86d2-4631-83fc-b98efb3f4e4a.jpg -7625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it0b85ba43-19f4-4580-9c09-5e45de6a02df.jpg -7626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it0cf10843-fe3f-49ea-a2c9-85ca35ceae2c.jpg -7627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it1046d875-e49a-4080-8dab-2b38652705b0.jpg -7628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it10980d60-62ca-42c7-8f5d-539f9a499ae4.jpg -7629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it10edbbb2-27ef-4772-be24-4943cd4dc1ee.jpg -7630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it11ff8a99-46e9-4e88-8a2f-21a0d4c20d89.jpg -7631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it134b532c-4e5f-4245-89a9-c9222a337e91.jpg -7632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it15625cee-531d-4395-b4d0-efda459df2cf.jpg -7633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it15dc6fd4-8f5a-46ec-b8bc-915a3eb2ee34.jpg -7634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it171be830-efc0-475f-8b6e-ccd7826250f2.jpg -7635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it23670f17-1bce-453f-baf7-144ba98574b8.jpg -7636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it244fc0ac-5f96-450f-9f62-c4116bf3fc44.jpg -7637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it27619cd3-e4f9-4c92-9243-766189b38e9d.jpg -7638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it280adccf-2cc0-4065-9f46-16bcd541dcb5.jpg -7639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it2ca25a62-d7bd-4773-a40a-1505065dd46c.jpg -7640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it30e36aaa-9ff0-408f-8d9e-86ebb20f7dc5.jpg -7641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it3178d779-0309-493c-a19e-71f512ab4837.jpg -7642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it3422c607-bad6-4480-8c00-66de5378b372.jpg -7643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it344b4c98-b758-4693-8cd5-e80cd3ba9856.jpg -7644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it380a5f71-a9a4-4fd7-8687-3058ecf34e73.jpg -7645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it3ab6a27e-5dec-4a85-b062-7499f4d7ec62.jpg -7646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it3ac1a04f-45ba-49e5-a3af-940a349d2273.jpg -7647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it3b74788a-577f-4d2a-88d1-71152d71d516.jpg -7648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it3d2048c4-6ba6-44f6-b3ed-217ae182c24f.jpg -7649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it3d89f750-fa50-4842-876c-00f6ec479f8b.jpg -7650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it3ec8e8a9-e82e-4086-b3cb-e1a9848b8126.jpg -7651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it402e99cd-b269-4743-a5f4-28c422f57d50.jpg -7652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it420e8475-647b-4754-8af6-11a8a61d1073.jpg -7653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it46555130-fd4e-4aed-9d29-6580e70db8d9.jpg -7654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it4d5a5a63-3fd1-4a04-9acf-2381888fb7d1.jpg -7655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it50815d8e-2400-4cb2-a782-def9c8ecce9e.jpg -7656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it52c7495c-f3f8-430b-ad88-d4fef64c4e95.jpg -7657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it556e32db-f977-4f8f-a2ac-eb3818362198.jpg -7658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it56928539-5362-458f-ae3e-41ae04052c82.jpg -7659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it60fb5465-8b3a-45f8-a664-aa2ed3fa6c53.jpg -7660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it6214e912-a777-48a0-b431-2e2e56a6ae6e.jpg -7661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it62aaa9cf-8dd5-47cf-b7d8-b84182db5545.jpg -7662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it6431404c-22f8-47da-aafb-1eee800d4fe8.jpg -7663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it652e6b93-f6b4-4d4c-b975-597a7dec8f9e.jpg -7664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it684174dc-b5ab-43f2-9a7a-195cffdde5bd.jpg -7665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it697e5ee6-378b-43be-9d9e-34411cd581e0.jpg -7666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it733ee65e-f987-4c2b-af64-5b14a8b00150.jpg -7667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it7b2beb2a-e20e-4885-9d17-31e0f91f26fa.jpg -7668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it7cbaf316-eb89-436b-8a21-08ce76797ddb.jpg -7669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it822d0b65-2cba-4549-8b08-f11415d50131.jpg -7670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it84e1365a-3753-4268-b660-ea1f3ac264e4.jpg -7671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it870cb5f6-3ac1-47e0-9237-fd6483b4cf0e.jpg -7672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it8a9286f7-90c2-4b81-aa0b-93cc2812d43f.jpg -7673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it907457be-a330-4b3d-b388-69406d18ac23.jpg -7674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it9269f4a0-b929-4c0c-8cac-b154198e4db8.jpg -7675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it963cfbb8-236a-49ef-8421-f4334f3efc9c.jpg -7676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it987d715b-1b2e-4708-8ee0-3d31c1f6d2b4.jpg -7677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it98c27de8-4d7c-446c-9413-e96e4395786d.jpg -7678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it9a395178-377e-4d7f-b7d4-e6df608e171f.jpg -7679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it9a9acdf1-8656-4aa4-b53b-f24267df8238.jpg -7680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it9afc1edb-3b52-40ee-ab62-d6f1e54b0092.jpg -7681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it9eaf29c3-15d2-4b61-a91a-17a4427f7df3.jpg -7682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_it9f507923-5e15-42b7-9ebe-d0fd2492a2ca.jpg -7683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_ita07a2f1c-f993-4050-b7fc-ddd611c67080.jpg -7684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_ita46e3c8a-c60f-4706-96f6-2cc364cd9593.jpg -7685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_ita77185b9-aa6a-4208-811c-cd870b590aca.jpg -7686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_ita94cba26-9724-49b3-b91a-61a7957306db.jpg -7687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itb0a09043-8c76-46ff-919c-436ffc4e89b6.jpg -7688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itb1743cdb-2e12-4479-95cf-21e669bdb723.jpg -7689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itb1e591be-7dd8-42fa-88a8-272e12c603e0.jpg -7690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itb206b0fa-7074-4bf8-8ed0-6aec7edb65d8.jpg -7691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itb4c03e51-251c-4c77-a47c-73d2572462ce.jpg -7692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itb4ff0b72-eb74-4534-9a59-2203a6118b9c.jpg -7693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itb8567215-17fa-411f-a43c-2b0df61e5949.jpg -7694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itbd23040c-3cd4-4c62-ad17-e5b27ce69335.jpg -7695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itbf4b02bd-b781-47ce-a195-c60477b0d3ec.jpg -7696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itc338182c-29f6-44f7-8f00-b4e2380adcef.jpg -7697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itc4cc20ad-d901-4a58-b3a0-6578f4241ad7.jpg -7698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itc561ca72-b7da-4fc2-979b-4309fa674b2b.jpg -7699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itcae8aa88-47cd-4c08-8b18-3248f36ec4d8.jpg -7700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itcbe6a2ad-cf8e-4e03-9a9e-318882ac2fda.jpg -7701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itd2c113d5-d510-4135-8e0b-e490e50f5e95.jpg -7702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itd35e4113-961a-4483-9bb7-38cd08ddd3d3.jpg -7703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itd659d742-17a4-4cff-8977-334e98d9226d.jpg -7704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itd8159f4f-100e-48ba-a422-de4fd5256dfa.jpg -7705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itd944d085-abaf-4737-a5dc-98b44aacd8a6.jpg -7706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itd9ec0fa4-d61c-4257-b74c-a16e160d3d09.jpg -7707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itda635c65-b8bc-4ad4-bca2-1a81e2feac9e.jpg -7708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itdf0238f1-0239-4590-971c-93482fe5803c.jpg -7709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_ite0d8d1f6-8cbf-4549-be4b-dc1bb99ed5ae.jpg -7710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_ite14e798b-0c52-4e02-af96-ebddde6fceed.jpg -7711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_ite470b8f9-c3fd-4b2e-8c72-f18c1330b746.jpg -7712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_ite8df9e39-adbc-4bbd-a1f1-56435504bc70.jpg -7713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itea3aa464-093b-46c2-b9ca-9362ba291926.jpg -7714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itedd64e03-020f-436e-8d11-af4e7a027f02.jpg -7715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itf26c9a8a-65a2-4989-8fa7-aea650f3429e.jpg -7716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itf3c23d35-abb3-4ac5-b552-a282f8446e43.jpg -7717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itf99c8ca0-6c6e-4a78-a8e6-e2970087a814.jpg -7718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itfa049bee-09e3-4765-8be4-3c12bdbb2663.jpg -7719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itfb93dd02-3923-43ec-8aa2-5f14084e1b2c.jpg -7720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itfcade265-81aa-4687-821c-df542030ef71.jpg -7721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skateboard_in_itfff9388e-641a-4f4f-a5f0-d1bc1c18c3c1.jpg -7722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it003d626c-6e04-4199-90f7-5a30b54e74fe.jpg -7723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it046f3d4f-8b3a-4122-89d4-b235c4d4b193.jpg -7724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it0914eed1-7510-441c-a3fa-9f61c93168db.jpg -7725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it0d9b17f7-2b44-4273-a436-fdf7b9b7129b.jpg -7726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it0e902c14-32b9-4fd1-a588-567e79709076.jpg -7727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it143e2d1e-b852-428c-8746-c96d9db6b07a.jpg -7728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it1c5aecbf-b709-4081-a1bf-f3a149d9af07.jpg -7729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it1d3666a7-c994-4b00-a744-9a107134f37d.jpg -7730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it1d449a0e-922b-4344-ba51-f9563315ac00.jpg -7731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it1f4bebb3-d9ea-4ca6-991d-1193ca73f7ae.jpg -7732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it2078165a-7a60-4674-9193-c7ee7ccddb83.jpg -7733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it216f34d9-3da5-4d7d-a0ec-925f7fae41ea.jpg -7734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it2219996c-6963-48c7-9e0e-fd7e0108c351.jpg -7735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it226c16d1-c137-4766-9e21-195a2bf39e10.jpg -7736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it22de534b-ad53-46f8-b12c-89a623960779.jpg -7737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it2516c1cb-8ea0-4eb4-9253-060658408cdf.jpg -7738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it28ebc65d-95a9-4342-a3a4-4d0f43ca3cdb.jpg -7739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it2905f3c2-0351-486d-884c-48b23572c71d.jpg -7740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it2ac88ee0-6706-42f4-b555-96095e25c1b8.jpg -7741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it2ba21c46-b0da-4527-ba30-019e57f7d06b.jpg -7742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it2e61d873-6198-40af-a8e8-fb9696cc7842.jpg -7743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it2e6aae96-3b80-4ef8-8d29-1fa58266a00d.jpg -7744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it31bc7afc-1ca8-440a-93c7-f3000444f3de.jpg -7745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it33e544c3-c856-4892-94a7-1b02b75577f9.jpg -7746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it34b32c9d-5c02-4218-91bd-bc5fac4787c2.jpg -7747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it3878f983-d5b7-4f6b-8783-f05185cee97f.jpg -7748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it388dec89-1640-40f8-9b01-7f81cf752609.jpg -7749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it3c569174-c94f-4518-96b1-0dba42c30b94.jpg -7750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it3f722a67-fdf5-4b6a-88e3-5827e092bec0.jpg -7751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it40beb163-4f07-42cf-b6b9-43df055cc445.jpg -7752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it41e8883e-237b-42cd-b15c-25ef7c78516f.jpg -7753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it41f9fc10-0885-431f-adfa-31e0b9f1a9e7.jpg -7754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it44f8d8b6-91d8-4f6f-97c6-d96c8faae248.jpg -7755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it4830fe67-9680-44e2-8f6c-341af2fb2024.jpg -7756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it4cbb8ba2-ceae-4974-99a3-620df6ffb876.jpg -7757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it5291ec04-bf26-44eb-a064-633ab10bd11f.jpg -7758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it5361b289-7387-4d7c-a37f-ba3873e43a59.jpg -7759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it56602114-a6f0-4e86-9e26-cbf9eb5ebe97.jpg -7760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it56da905a-aa6f-4b17-898d-327565ae9bb6.jpg -7761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it58ae9f24-8ca8-4d24-8263-e75669da88d0.jpg -7762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it5dfe4f5a-80de-4087-9ef9-9a2703900175.jpg -7763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it5ee133c8-45e6-4e9c-966c-55811acb6384.jpg -7764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it5f37099f-9f52-47d3-b0bd-a51334dfa268.jpg -7765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it611bb66b-f179-4ecf-a10f-32dccff5d900.jpg -7766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it636ddf93-24bb-4301-b362-056ef938e0e9.jpg -7767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it65e7df93-7576-416d-97ff-8c9e8edca670.jpg -7768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it6d21d37a-b1f2-43f1-b869-e0227032a4f5.jpg -7769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it6dfccb36-2502-4e51-a6c6-5495e52112f1.jpg -7770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it70ae2db3-eba4-44f9-b87f-fc29b8962895.jpg -7771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it750ec7eb-e1e0-4b2b-8308-f948cb93a997.jpg -7772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it7b3fbb8f-b725-4458-8c9a-94ba74b437a3.jpg -7773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it842d0c38-68aa-4eb1-a5e1-98d22de91aa7.jpg -7774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it8646b422-6b4d-4c84-9620-1cdbc64f0d7d.jpg -7775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it881c51a1-6055-4ecd-9328-7accab9e3388.jpg -7776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it8ba77bf1-a6c2-4aac-afed-08ff842f1442.jpg -7777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it8d8140cb-1560-4892-bbf5-4aa3c4d60454.jpg -7778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it8e72a201-facd-4833-9798-da827b52d76a.jpg -7779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it9737b17e-8bae-458a-bf95-4ced91643671.jpg -7780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it974243a5-dbbe-4be0-bdc4-77b24e1929e9.jpg -7781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it9e7d3b19-bde5-4e4e-8264-091faf763f74.jpg -7782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_it9fd1f645-7132-411a-9aa3-4cafc01c21c2.jpg -7783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_ita2496f74-8243-4657-b973-59048bf96f98.jpg -7784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_ita30f784e-b219-4e3f-9c62-2e14881f727b.jpg -7785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_ita376f166-7d5c-4da9-a1f6-5f64ec091c54.jpg -7786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_ita72711d4-231a-434c-99ae-6dc3dc2d9340.jpg -7787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_ita8c9c6d4-2645-4488-8654-08e820b96a23.jpg -7788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itaa2baf01-0149-42b5-8a88-4705cdeac820.jpg -7789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itaab805ad-d47e-4cd1-84a5-50eb3f684244.jpg -7790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itacbced19-ff0f-4c39-bd97-cdf58aba9f69.jpg -7791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itb0a1f02e-2d22-4b01-acc9-b63bc59a1831.jpg -7792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itb36ccc7b-50c9-4675-8a6f-f6656f463e93.jpg -7793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itb5349498-b548-4eb2-82c3-4e35d1a22550.jpg -7794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itb684dd31-a2d2-4203-b2d7-21d17bd64559.jpg -7795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itb70353b8-5b11-4968-af5d-61818fb88868.jpg -7796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itbdb22b28-0019-4695-98a9-64621d4c8ee2.jpg -7797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itc00032aa-cb74-4152-b73a-768f35a8da39.jpg -7798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itc24953ca-d231-4f18-a013-0366e83711f9.jpg -7799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itc33418fd-66fa-46dc-adc3-d3bbd734d72d.jpg -7800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itc39a0235-1cc3-4b9c-b42d-f5104dfa2bfa.jpg -7801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itcd62afc1-e347-48b4-a9a3-0e441336d82e.jpg -7802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itcdd69e02-923c-4b0d-8b82-3313cca59510.jpg -7803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itd067ba43-2767-4773-b8cf-3bce13afc193.jpg -7804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itd20b4759-e323-490c-96c1-671e438b8c6b.jpg -7805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itd6af9470-e611-4fe0-b1be-4d76ad06ac43.jpg -7806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itd937c023-33df-4603-be13-37bd1d069746.jpg -7807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itd9e26120-3403-47f2-834d-b73fff34b2ac.jpg -7808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itdaf07879-c510-49de-9aab-f6d8ce3ae377.jpg -7809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itdbdec8a4-3401-42c1-8bb7-608097a33ece.jpg -7810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_ite15f83ea-6e76-4702-8f3b-6f964ac531cf.jpg -7811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_ite41f15c3-b3bb-4d1e-b6f6-5bb4cf26a452.jpg -7812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itead9904c-0ddb-4c55-b796-8445ff87e65c.jpg -7813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itebd79376-610b-4e0b-abee-0eea3a809610.jpg -7814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itf3d89440-b637-4b35-8670-c6994e84ef0f.jpg -7815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itf4a9a4a5-03b8-4734-bcb2-28593cb26484.jpg -7816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itf6067e49-1f5f-402e-835a-5a210803ddd2.jpg -7817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itf9d25ae9-278f-47a1-a9d3-9c8fc19e6005.jpg -7818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itfc021d34-64e1-43c7-862f-f34496fa18d0.jpg -7819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itfe0eedbe-5db6-49d0-8ce0-862626b8c878.jpg -7820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itfe28e00c-d4b7-47b7-b1e8-a5089b22dc38.jpg -7821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_skis_in_itff1479e9-3203-4be3-a9e0-8e9f5b96d5ed.jpg -7822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it0237e9b5-e2c1-45cd-b52d-8ce0590df838.jpg -7823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it0770a222-a707-426b-85df-5bff3b2503b8.jpg -7824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it09d6f5cc-d4fe-4fa0-8bc8-df8ed840808b.jpg -7825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it0ab1f0de-33f0-4e9a-980c-f6da83df7a85.jpg -7826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it0ea91926-eec9-4591-bebb-cd01397b47ed.jpg -7827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it0f839db1-cbfc-474c-95b5-29552bbd5137.jpg -7828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it139509e7-45ce-4623-bae2-03a77253abe1.jpg -7829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it14085a37-0eb7-4e8b-af2e-c12a4ee79635.jpg -7830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it16fb3710-a0b8-4efc-adc7-56158c3b83d3.jpg -7831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it18e72ca6-ec93-4bff-b178-bb2d7dae36a1.jpg -7832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it1a4d911a-e56e-4a43-afba-ba6d3d99aa33.jpg -7833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it1cdc1339-35bb-42f6-a002-c088885bbf3f.jpg -7834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it1dd9d415-cfd0-4053-899b-9437e55bc55a.jpg -7835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it1e6b79e6-6e97-441a-8382-50d952621a99.jpg -7836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it2321f14f-b553-4b0d-b055-303e79e62c14.jpg -7837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it246cd760-78af-463c-95ae-5f52a246005e.jpg -7838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it2652ca18-9278-4f99-a223-14a8d35ce58e.jpg -7839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it2861fa3c-6554-428a-9fb1-5c2661e5ee37.jpg -7840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it28b983e4-916e-4612-a728-1fd75e10b714.jpg -7841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it29fcf220-0d90-403d-9ab1-12b1c1cbbc61.jpg -7842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it2db057f9-53d3-4ce7-9b69-3446c88276b9.jpg -7843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it30cc9393-a619-4b53-aed9-7acec4412dc2.jpg -7844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it3253acca-e13d-44ae-a5ad-b7a712853981.jpg -7845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it3454915d-2e89-4588-bf42-1b33e73769db.jpg -7846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it377b58f5-d565-483e-901a-754b989a92ea.jpg -7847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it3a76879a-de75-424c-a551-0cdfa4a2ebe7.jpg -7848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it3f183589-81fb-48d5-a3e0-90dfd4b75c1e.jpg -7849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it434bf561-a8ea-4f19-8ec8-4d21c8b37d97.jpg -7850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it469fe6c3-1c6c-49e0-8ac4-24525a6c7c8c.jpg -7851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it496ded66-5d71-4877-8170-9daa9ae63da4.jpg -7852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it4a034e1e-0651-4950-94f8-34a75a64b73a.jpg -7853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it50a91c53-3331-49bd-b32a-cb8019ac4d01.jpg -7854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it5203c2bb-9af0-43a3-bb6d-7bdb12888022.jpg -7855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it5387c204-c44b-4c74-aa56-f413d4262aaf.jpg -7856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it5ae117fd-98fd-4623-b6d6-8c38ed6901b7.jpg -7857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it60534874-d04c-4601-a16e-0473bb88b0b2.jpg -7858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it66bf7ea4-f2fd-4ca1-8b73-1e447a82b830.jpg -7859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it680f82be-c290-42af-8cfe-29a321d7a210.jpg -7860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it692d9b4e-b4a1-423a-a5b4-306d9e1639f8.jpg -7861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it6a567f49-6867-4363-9ee0-0e7f341e5388.jpg -7862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it6a81f94d-8444-4e23-93df-cebc35872065.jpg -7863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it707df346-4785-4fb0-9306-b5676025d85d.jpg -7864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it710fe2a7-b4d8-4cdb-a685-a493dda91a37.jpg -7865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it715295b2-bf44-4df0-a722-632cbaf93d79.jpg -7866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it7184bf61-a820-4594-b94b-9c2fd2ee01d5.jpg -7867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it7474c1bb-0019-4478-b9a8-a27188fd822b.jpg -7868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it775bc83f-3447-4480-8879-076f23988626.jpg -7869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it7adbdd67-e0f4-4e9a-9b66-a407070d9330.jpg -7870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it7b67cc00-5535-4639-a785-5616550f3f41.jpg -7871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it7c67cb43-9211-4131-9685-3c7cdd23a71b.jpg -7872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it8015f9e7-523a-436e-b34e-ad606b528ae8.jpg -7873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it80b8e6f8-c32c-46db-9cd4-d1d2dcb2f298.jpg -7874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it816d75b7-2eeb-45e9-9e61-2eab60deae7c.jpg -7875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it86bc71be-3007-4b21-9f61-428c06342b1e.jpg -7876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it87f3fac7-a996-4cd0-aeea-0af2cc921eac.jpg -7877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it8957d63a-7008-4430-895b-e775cc7f1ca8.jpg -7878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it8c6f021b-7a91-4857-b696-b07a60296055.jpg -7879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it8ea653cb-6a99-442e-849c-d7d495e2a6bd.jpg -7880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it92c4a231-c8f7-4524-94d0-51116525646e.jpg -7881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it93ada973-b7ba-4499-8b11-cf33a299dc91.jpg -7882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it96d699a9-9df0-4f5f-ad03-6386e1aa4956.jpg -7883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it9835bcc6-d03c-47ca-b7ce-9fbc7da79172.jpg -7884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it987ffb3e-202a-48c0-aea0-eafbaa3fc682.jpg -7885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it9adbedb4-743a-4e3c-b326-0b81ba001ea6.jpg -7886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it9de58f92-0488-4fc4-b210-eafe243cadce.jpg -7887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it9ee5ec56-b793-40c6-a27a-1bb6b2d7e19b.jpg -7888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_it9efcda49-92a9-4e3d-997a-8284cc04e331.jpg -7889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ita21bb998-efd5-4811-b548-3071b3c9bdf8.jpg -7890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ita2373cce-cf9c-433c-a8a9-5a9ea7123ff3.jpg -7891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ita3e774d5-1204-47c6-bb10-630593bba167.jpg -7892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ita820751b-80e6-40a2-a7c2-b015ff50e471.jpg -7893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itad2b10dd-cb3f-4b2d-bd66-ffa3fbc29a96.jpg -7894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itad36705a-2f95-4cd3-a5c0-9a92b687ef8f.jpg -7895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itb4297428-c79a-4042-837f-d5a34038ed12.jpg -7896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itb51d45de-082c-4e90-80b7-06b1ed490db3.jpg -7897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itb60826c4-4909-4060-819e-2eece91adb8f.jpg -7898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itb809616f-668a-4003-8c0c-a0b4ffb271da.jpg -7899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itb82d7dd9-7273-4b7a-8856-7d2a916b8d10.jpg -7900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itc0116f5c-37d6-4c4b-a2d9-938ea7813ba3.jpg -7901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itc28cd4cc-7159-4f14-8c93-ef6f75b6a738.jpg -7902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itc3cbe97e-3872-43bf-9eb1-b36b738463b2.jpg -7903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itc7d4794d-107e-4308-b695-fb3fd6c557ef.jpg -7904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itcdc01414-2779-4a19-926c-c5cd6448b7dd.jpg -7905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itd7a6a8b6-a288-40b3-8185-cf6b74296c51.jpg -7906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itdb03941f-9406-48cc-8284-eec9e89a3636.jpg -7907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ite331e143-1bd7-40ed-855e-f6f489610d32.jpg -7908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ite3f3f165-66a4-4824-8612-83bc0fd34edc.jpg -7909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ite4ee9574-4fd0-4df0-b490-bf212fb2053f.jpg -7910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ite5261bc8-7113-452f-a4ef-678e74511b88.jpg -7911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_ite5c5dfa2-bc99-489b-85ab-437938313773.jpg -7912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itec4a96a5-89f3-4d0c-9686-e0ef0cb6c775.jpg -7913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itecababfc-a7d7-4322-a778-3180db1849cd.jpg -7914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_iteefc595e-f496-4f5b-ac5b-0919fef44ca0.jpg -7915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itf0f977a9-2a65-4acd-9343-520eb922274f.jpg -7916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itf297ccd2-b7ed-4d5d-b374-acbdfce50efc.jpg -7917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itf4ddb42f-d023-42a9-9ed8-ba786be10950.jpg -7918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itf4de0200-c38f-44ce-ade3-422f535c64f0.jpg -7919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itf864de75-eb73-4d21-a9b4-21555a3a5768.jpg -7920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itf865ae30-1095-4e72-a7c3-e30172473d1f.jpg -7921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_snowboard_in_itfdac8d30-b8e7-4067-9453-d3bec8d8d0b9.jpg -7922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it03170167-7e03-4df4-bbcf-86a17355adb2.jpg -7923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it0361a4de-0b7c-4635-80b6-861ff655d38f.jpg -7924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it04ac5ad1-c5dd-4537-a777-ef914e1f0c95.jpg -7925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it0804ac2d-91fc-47cb-b3a0-4f75126728d0.jpg -7926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it093d5611-f2a9-4ced-9fc3-091dd385aeda.jpg -7927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it0ad43133-a8b9-41ce-b477-a32363b49da3.jpg -7928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it0b8af60b-c58c-49e6-a92d-1eaeef131693.jpg -7929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it111b07f4-4256-4d1e-a40b-20b7008ac616.jpg -7930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it11fad0b9-b786-41a5-9a5f-25006f39f19f.jpg -7931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it128e065c-ec4b-42af-a69b-d5c29118de02.jpg -7932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it145133ea-e83f-46d5-967b-5ea9cfd4ff71.jpg -7933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it1f240103-fdf2-4dc5-b2a0-1eae187f787c.jpg -7934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it2020676f-8d68-4755-bf82-3ba263edf79a.jpg -7935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it233896e2-be79-44e1-90cd-b3d18a542552.jpg -7936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it26f52031-816f-4188-a2b3-2010c107c13f.jpg -7937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it270efdcd-d2ae-4d64-b30d-b395cf0d8245.jpg -7938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it2769eaa2-2aad-4cb1-a6bc-cd4767cbac20.jpg -7939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it2870b1a8-353a-4dc5-bbe2-331b15f5df88.jpg -7940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it28a1883b-812b-4c26-a3bf-e8b42be8c49e.jpg -7941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it2fdaf8ef-e262-45fd-b039-4667b59f25ee.jpg -7942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it319c5112-93dd-4559-b766-8e71ed33b2c5.jpg -7943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it32b22c47-74d9-45a2-908e-04e31835d78f.jpg -7944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it36262f66-16a0-4ef5-90d4-a1e914d7ec67.jpg -7945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it397130aa-4076-46f1-a531-661d316aab83.jpg -7946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it39b92360-bf9f-4a76-a80a-ed029d96cc24.jpg -7947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it39de05d0-0116-4ff5-8d26-6562e9321d09.jpg -7948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it3b787ce2-fd34-4782-aa0c-1c3f5a67720a.jpg -7949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it42f36d1e-d5a9-4597-b25d-38fd5ebf54a8.jpg -7950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it446faa71-4e3c-4b3c-8de4-17f41751264e.jpg -7951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it45915445-1580-467d-aa61-d431e9264a50.jpg -7952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it47755b91-8038-42c3-b9fe-60ad07cd1ca5.jpg -7953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it49204698-76e4-4ee5-a6f0-430456695130.jpg -7954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it49d60888-58b0-4cf0-8f7e-b133475f90e6.jpg -7955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it4a840d5b-9145-4a23-9ad7-df416a01f510.jpg -7956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it50901fff-32f3-4c06-b6e2-29fdf51b5b45.jpg -7957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it51ac6c1f-fcdd-4407-a3ee-d61b6a058874.jpg -7958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it52a94a52-98b8-4e48-981f-ce4acb4c0562.jpg -7959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it53ab4c7e-78c0-4ca4-a147-63b49104afef.jpg -7960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it577d46cd-3743-461e-b335-1d016c935c95.jpg -7961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it59c889c7-0155-4676-894b-3e7964ee25f5.jpg -7962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it5c72b628-7e61-400d-90d4-02188a8538af.jpg -7963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it5cd68535-1529-4c3d-aaf4-6f3d517e7132.jpg -7964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it616f6748-0156-4773-b9bd-4495ff06f8a7.jpg -7965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it621c28eb-c04f-46ae-995e-b18f068bcd1e.jpg -7966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it626a2cd8-9ef7-4b0d-9367-7f857f6aeb0f.jpg -7967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it6311332a-78ad-4389-bb63-c2d41c922098.jpg -7968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it6a10f8d0-4e12-484a-b8ed-751f976e15fe.jpg -7969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it6c9a6c36-9d19-4ef8-9c6b-153d1442121f.jpg -7970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it71f4fe2b-a05d-403f-a8eb-61878c73eb75.jpg -7971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it72af4fb8-b434-4dab-b0cf-047c6079faae.jpg -7972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it7467b77a-c7a5-4fe4-8ceb-470a023aff21.jpg -7973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it755fd6bb-bf32-4afe-a4a2-4022579ccf9b.jpg -7974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it7840dc46-3c2d-4a94-89ab-f5cf66105327.jpg -7975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it791362b3-c04e-42bf-a344-1a169c0cf410.jpg -7976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it7f240e06-aad6-4ece-9005-763d3c72fa9c.jpg -7977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it8487038e-6591-4d5f-b433-e6489373590f.jpg -7978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it87ea0ebc-efdd-48b6-a515-7bfbbc63d006.jpg -7979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it8d580d67-18d2-41bd-a1de-0d93386cc946.jpg -7980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it913d2558-c25c-418b-a220-8d1af1313153.jpg -7981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it91d07daf-6dc4-4ae2-8c9e-3d9239a2a9d6.jpg -7982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it937baff0-c578-417a-b7f4-97351163c183.jpg -7983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it9701122d-960a-4314-90bc-002bd4344b0d.jpg -7984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it97f8993c-1b4c-468d-9ae2-dbae146fda87.jpg -7985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it98ee9fc7-297a-4927-b1cd-f984a78ee453.jpg -7986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it9c381412-9e2a-4f4a-997b-8d5cbf2635bb.jpg -7987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_it9ed3e6cb-8f02-4084-a4d6-0e29e3dd1e34.jpg -7988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ita12a4232-1d31-4a8c-bf13-5157d22e1e3e.jpg -7989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ita1fce6ae-180a-4c8d-bd17-2f8d96af6ce3.jpg -7990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ita3dd142f-90ea-49b7-aaed-2ec215821675.jpg -7991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ita712189f-692f-4c96-aef9-5aa7e5d907e8.jpg -7992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ita7bca92c-ce40-46a6-b23a-a3e9603d0021.jpg -7993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ita85219a6-2daa-4637-9985-ecdd7c2a3cd3.jpg -7994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itab886fb0-feb9-4c31-89b0-04dece5fa684.jpg -7995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itabeaae39-2817-4ba3-8a25-11e7a1b13a2f.jpg -7996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itb1895fdb-7c5c-4483-ae61-d52c8ba0a175.jpg -7997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itb57d121e-738b-437b-bafb-3e964f6624e1.jpg -7998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itb7d4a06a-2940-41a6-a43c-9767eb608e0c.jpg -7999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itb955384d-f6a1-4a99-9a0c-33fafa4a8b42.jpg -8000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itba3a8814-9958-43c9-b732-0b8ed9334324.jpg -8001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itbc00ea73-70b5-4944-bb6e-5a521e241f0e.jpg -8002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itbfcc53ab-3519-41c1-9ed3-1874be7a2d81.jpg -8003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itc11e544e-0efa-4ba8-b1c2-ea9ab268c5b9.jpg -8004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itc1ff8383-a114-4755-970f-f90e77887ba5.jpg -8005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itc45cbb38-ac01-4366-9e83-b7ea14cf1f98.jpg -8006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itc87fe3e6-b322-41a2-b1d2-9db48cd77f65.jpg -8007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itda73f08e-a57f-447e-81bc-a62849838ad8.jpg -8008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itdba618fe-3411-41ae-80f6-f934a1be0b0d.jpg -8009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itdecad4a8-5caf-4244-9423-69773c5fbffc.jpg -8010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itdfa60e7f-5902-42be-bf03-fb206473cffd.jpg -8011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itdfd9dc2e-01cd-42d1-92b6-e8867c617328.jpg -8012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ite42e56e6-e924-41b5-bd8c-ce55cbe92433.jpg -8013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ite4f1d2d8-98b3-4952-9f4c-7d74f82f8f7f.jpg -8014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ite56e4d18-0811-4ca9-a4d4-b9622022330a.jpg -8015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_ite7a2a888-0a3a-4d09-a05c-f83ab5dd53eb.jpg -8016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itf108ab25-02b5-4ab5-8ae1-3f356f0044fc.jpg -8017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itf512f01c-cbe2-46f7-9417-7f54ff71dccb.jpg -8018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itf51d0347-c03a-42d5-8d65-fea172966364.jpg -8019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itf8cc662f-36e6-4e1f-bcb5-6ac13aaaaf66.jpg -8020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itfcbbc56f-290f-4c6b-a04d-99633cbd9a41.jpg -8021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_spoon_in_itfe6b5512-b29f-4ce5-bce1-54e516634bc4.jpg -8022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it003b74cb-262c-410d-813e-f09b64c43b14.jpg -8023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it01232ad0-4bf0-4f46-9815-a54d5e39ea28.jpg -8024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it07efd4d2-19c5-4b68-8811-cb252d19d7d5.jpg -8025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it0aec515e-9b74-4bc0-89c5-39d316ad7be0.jpg -8026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it0b90bb9b-845f-41d2-9c44-5f62b825a076.jpg -8027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it0e3101e1-81bc-4a2b-a970-1621f8fd580b.jpg -8028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it10ac3233-de64-43b1-b3d9-a8a53386eb9b.jpg -8029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it1212b45e-b1f4-4f66-b45c-5a1794f87c26.jpg -8030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it13cac807-6672-4646-a108-9d6fa37a7b20.jpg -8031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it14a10d50-604b-4fd1-b9de-cf8018842fa5.jpg -8032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it16a5e4b7-3c0a-43e0-9292-f090beeddadd.jpg -8033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it16ce9325-096f-4c30-8ac9-3a9bd5707578.jpg -8034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it17c42d5c-15f1-4cc7-8ceb-cb0fdbd02b59.jpg -8035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it180880d4-8df6-4873-8abb-9a50ff707bd9.jpg -8036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it190113ae-dcbf-451b-998b-5a685770b0b7.jpg -8037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it1ad61c3b-dede-4c5c-8f1b-600886c6abfa.jpg -8038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it1cd76516-68be-4723-a58a-2b179abdfcd6.jpg -8039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it1db11f7e-7285-4b57-b268-f546b2c7c5e0.jpg -8040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it1fb973e8-7f5d-45ce-b777-8429f317f484.jpg -8041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it245d8824-c792-436b-8484-2d217a039ee8.jpg -8042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it2b61db03-e028-48e9-bb76-e0da84b139c6.jpg -8043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it2f02c924-e7ec-41d6-a514-bd068eafc7c1.jpg -8044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it2fa46b5d-fc31-4d74-944e-259df5636c72.jpg -8045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it325ddf08-a9b5-4a74-8abf-c5bf135b8981.jpg -8046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it348dee1b-bc8b-45b9-8670-c5427f182098.jpg -8047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it37a744d5-9160-4837-8141-8c4f138038ea.jpg -8048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it3c120958-5155-4bea-aa14-9c33138672a1.jpg -8049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it3e456bb1-5e25-4961-b62d-96995fbbc5ae.jpg -8050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it454ee764-43c5-448d-ae53-24b0af7791c7.jpg -8051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it4b72f7d5-3d53-46b1-b9a2-4795595ac9c9.jpg -8052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it501611d0-1478-47b4-a31c-5b0f28015136.jpg -8053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it528bd6d6-71b2-4bb7-b82a-6d84cf710826.jpg -8054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it58947489-4e01-4a9e-8679-215e13a50ae8.jpg -8055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it5fc6b222-b86a-49d9-8419-5bb6eff57432.jpg -8056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it619e9805-80fb-4813-8416-42fba8be2a12.jpg -8057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it651863f2-7ec9-4363-829f-2db034045466.jpg -8058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it655c64bd-a988-493f-b068-bdaa640a7c70.jpg -8059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it678b7ca5-53e8-4290-bd1b-d3c164068d72.jpg -8060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it6881b96e-42e3-479a-868d-5a6528c1fd78.jpg -8061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it69cbf745-2a29-46e0-a51f-637bc0f3e765.jpg -8062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it6aff3237-e4d5-42f0-bafe-7910dc591a49.jpg -8063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it70d91f09-f55f-4698-bcf0-e3c00f8414e0.jpg -8064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it7226e014-2dde-4617-a313-33d22b3f5791.jpg -8065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it73921a1f-d169-446d-98bc-f305618ae17f.jpg -8066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it7767a24d-76d2-477c-94a1-be056310736a.jpg -8067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it77b2baaa-7874-4ac3-b2b8-f01453f02dc4.jpg -8068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it783282ea-694c-485c-9154-5ef554f3def3.jpg -8069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it7bb2d8ff-4414-470b-898c-cf5da8875f5d.jpg -8070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it7d0e5b0f-0594-4a30-832d-6982e9455270.jpg -8071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it7e84a4d4-7696-4560-8bd3-14eabca72232.jpg -8072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it7fe1bdc0-f859-4fb7-9d12-bcbf3383d908.jpg -8073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it81ff6521-eb18-462b-8c0b-20c6a0f0ec0a.jpg -8074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it823dbdb4-ec67-4ec8-b6e7-70f8c8b54ff0.jpg -8075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it82939f2b-062a-4e71-8041-881d09005780.jpg -8076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it838670e6-984e-4153-917b-7357e190e4d5.jpg -8077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it867f6038-97ef-4f6d-82de-429cfe8ef813.jpg -8078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it87ba77dd-3ab7-4af2-82b4-0fcfbc18fb2d.jpg -8079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it87c07ec3-bc6e-4a3d-b8af-5bb0ec8d1d19.jpg -8080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it8868e827-2085-4461-bcd2-a54b6e78610b.jpg -8081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it8a0f849e-0fd6-4ae6-ab3c-17ac5ea8f1f9.jpg -8082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it8a720f6b-eae1-41c7-9aac-302924817422.jpg -8083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it90be1daa-f604-462b-8975-3a63afcedfc9.jpg -8084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it97d1b5c9-8c5f-4f87-ba7a-57c42884fecc.jpg -8085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it993066bf-f906-4c30-96cb-410c3026ca1d.jpg -8086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it9c172039-dfb9-4be7-bd6d-df989e6e53ee.jpg -8087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it9cdc89bc-e9aa-4511-ae30-935da13a01a5.jpg -8088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_it9d19633b-068e-43db-b11c-4113244a389b.jpg -8089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_ita4f82087-77c5-490d-ab2d-7832a4936316.jpg -8090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_ita65d7ce8-0144-488a-93ff-cbc60abed914.jpg -8091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itab86833b-2a6c-494f-9ec3-77648ea7633e.jpg -8092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itb1c5af13-9a38-42b0-844b-a6e71cf9bf23.jpg -8093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itb2b9e74e-a45f-46df-be76-e02026888758.jpg -8094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itb2bb43f6-1f6f-452e-afdc-130c229b39e3.jpg -8095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itb2d2f1a2-1512-4113-a6a0-b0755daf57d5.jpg -8096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itb7502c28-b2c4-442b-8268-6caeaf7ff1b2.jpg -8097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itb97a07dd-cda3-4056-91af-a5fdbdaeca31.jpg -8098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itba66f39e-7a50-4aea-8346-14ccd73b3609.jpg -8099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itbc631adb-c550-4304-a708-e725cc7fdd4a.jpg -8100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itbf6b13db-30d3-468b-82b4-38cd714b3609.jpg -8101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itc532df19-8af2-4cfb-9765-c0f77242bc3a.jpg -8102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itc89d1e54-3aaf-412d-893a-4a5de174467e.jpg -8103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itc8a9b8db-1c90-4ad3-9442-daf1c012200b.jpg -8104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itc9e8c86e-adbd-457f-80bc-0c64aadea18b.jpg -8105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itcc19ae9f-3f95-4db4-89a5-bfb2525d0153.jpg -8106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itcd22bd2a-d45a-4e63-ac73-2513f0167b59.jpg -8107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itd0388707-ee9d-4779-90a8-9efb08d2d9d0.jpg -8108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itd47be529-cd7f-4605-899e-4c5ebfbd7f15.jpg -8109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itd835f798-2074-4d33-92c2-0c1d5bb412f9.jpg -8110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_ite1bcfd11-1c06-4a43-8221-f35646a90be4.jpg -8111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_ite4987192-996d-48fb-996d-77f780a3a70d.jpg -8112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_ite5eac33b-ce0f-4ede-896b-39b11996669e.jpg -8113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_iteb06e994-ae43-413a-a870-8111bad4f944.jpg -8114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itf0941692-d3ca-4577-8491-a0e406bfbbd8.jpg -8115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itf7b1e8e6-106b-45f2-923b-097891e00f09.jpg -8116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itf8049b62-c196-412d-9c56-421af47c7442.jpg -8117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itf8740900-62f1-4ca9-a19f-8ccdd0d876a5.jpg -8118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itf9563cac-fec7-4f6b-8f36-912ce7e6b7f6.jpg -8119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itfa8b3cbe-c47e-4146-af22-c8abcc31ae02.jpg -8120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itfb1d1676-3c6c-4c23-8ec1-3add6f8141e4.jpg -8121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_sports_ball_in_itfbce1d1c-05a1-4d6f-b575-10466191a98f.jpg -8122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it0efa4a52-52a2-4889-a581-7ff09ab0ad28.jpg -8123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it0fa1881e-3873-4ef9-bff8-d03ab37d9b22.jpg -8124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it150abac2-99d8-4ca2-8d82-d2baa5b2d194.jpg -8125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it177d0cb8-597e-44f3-8f08-dc8b8a2f4ab7.jpg -8126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it196fa808-0f39-4793-ba9a-d657510b8334.jpg -8127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it19f7fa63-70ab-48a0-afed-ed040d40477c.jpg -8128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it1b7e9411-cc94-43a9-b87f-e05e01062a34.jpg -8129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it1ca12cae-f4b4-465e-98f5-2806885a5b72.jpg -8130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it2160fa78-fb5f-4bd7-9117-06896cc69baa.jpg -8131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it23c70fc8-e8a5-4363-bfe0-56b5e412bb8b.jpg -8132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it29684e81-5f16-4d55-a822-d766eb40c3db.jpg -8133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it2a832081-afc1-4ce0-a876-0ec4c259a661.jpg -8134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it2a869597-8d69-4627-8722-11bca669a536.jpg -8135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it2dadb47b-b530-4bc6-afc7-7aa8d5df3e90.jpg -8136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it32455c70-a738-4a23-8363-94364e2f59d9.jpg -8137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it33401e93-babf-4bec-9ad7-982134ee0b44.jpg -8138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it383823b8-9e65-40b4-9b35-301156001f55.jpg -8139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it3a106bbe-0d7e-44fa-9310-e9ab624f500e.jpg -8140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it3a2af104-3b99-438d-905e-65dd8fefb547.jpg -8141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it3cfd3565-fa93-432b-8737-8e0aaccbe377.jpg -8142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it418d400e-5653-4aa9-8683-5c0175364dfc.jpg -8143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it4382f661-50a5-4aee-9fa5-73ecdae90dc7.jpg -8144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it452fe0ed-dcef-44d6-a249-5b4da76df7b4.jpg -8145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it454f06dd-2ac6-4665-b7b4-6a45b0d82447.jpg -8146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it4688d5d5-1bdf-416c-a7cd-db7b80d7920a.jpg -8147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it4c2448cf-ac07-4adb-9af9-302c8cb9fec7.jpg -8148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it4dd2ed07-6767-4e56-a0ee-f9bae9b35fb5.jpg -8149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it4f2974ee-06cd-413e-80bb-9c1aadfd37cc.jpg -8150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it5e84f7e3-251b-413f-bbf8-30167a3ab2fb.jpg -8151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it62008208-dca6-4b23-9092-6e6288ed5c03.jpg -8152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it6205273b-2eb8-46e1-92aa-6939db68c3f0.jpg -8153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it65af4d79-afdb-4bef-9dea-0fad3ed54773.jpg -8154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it67ab5f68-c852-4c8b-831d-72dcb3113503.jpg -8155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it6aedb684-4bc1-4085-a6c1-a409822c4796.jpg -8156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it6b3f3288-d0eb-4fb1-8d15-f75622b4ef42.jpg -8157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it772cd178-df00-44e3-b689-5ec7ed3e48b7.jpg -8158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it772faf6d-ebba-4c34-8ad7-a27c2bc5a840.jpg -8159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it7a11e6a5-b339-402f-83a2-070875024321.jpg -8160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it7bbd9f16-2f04-436a-a72e-10d2f99395e5.jpg -8161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it7f67a410-cd4d-48b2-ad13-ffaa43709ada.jpg -8162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it80a72908-ec05-4b60-a6d6-898d0023a015.jpg -8163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it8302950f-8584-4ef1-91e2-7be28c145657.jpg -8164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it8384815a-4b97-4e3b-b2c0-dc001674fa85.jpg -8165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it86915933-4b32-4daa-aa29-bd8120992f33.jpg -8166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it90786b0c-beae-4a9e-8289-470f2a7121b1.jpg -8167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it919952f4-d12c-4951-8720-f32809accc3d.jpg -8168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it923c50ca-f7ba-49dd-bc75-72043736df03.jpg -8169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it93d4afdc-fa36-40f9-a190-cc635435f773.jpg -8170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it94034567-bad5-4797-b60c-444848c3d442.jpg -8171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it95b81d0d-49d4-4821-ae77-dc6bba7a2209.jpg -8172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it972f100c-4656-4820-9fc3-e05588a8706a.jpg -8173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it99356f74-e97e-4047-a255-41776ad7b594.jpg -8174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_it9bb7b176-3a8a-4459-8ac7-02b0afbf5899.jpg -8175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_ita0c67632-326f-4984-8ee6-b257a9cbf6ed.jpg -8176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_ita1be0259-12ea-4483-836b-098a70829931.jpg -8177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_ita269bcd3-f207-476b-828e-ee4ab5f21280.jpg -8178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_ita54a9c94-24e7-484f-a6fe-4a07ae602d72.jpg -8179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_ita844f7eb-b883-47bf-82db-d8f89b020dc6.jpg -8180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itaac17ef4-f6e9-4387-a71b-8c9bbc3c31bf.jpg -8181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itae539d59-8823-4d13-b785-563d8c604118.jpg -8182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itaf173ad3-3a8b-4da8-87cd-3e7e81d1286a.jpg -8183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itaff9071e-c6d4-4436-955b-359fc500a626.jpg -8184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itb094cd8d-2628-4732-8299-baf1c27986f3.jpg -8185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itb2f91486-bb9b-4386-b715-0a350049b53b.jpg -8186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itb619560b-b424-43ab-82c5-362e1b74154c.jpg -8187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itb6c87057-805b-4926-af9c-86347d0607b4.jpg -8188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itbb50ea63-a8c0-4235-ab0e-389eb044fc6d.jpg -8189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itbf8949b3-f8b2-4175-ad46-00ecb7cb970c.jpg -8190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itc255d2bd-d703-4ef1-ac3d-154e3fa792c2.jpg -8191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itc321cdca-23c1-4f54-9501-314aa68393bb.jpg -8192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itc3dbbd9b-8883-4d21-8ae6-0bee4a0d9b23.jpg -8193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itc452d60d-a0ff-43e9-830d-43d727d46337.jpg -8194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itc5ce97da-3b05-4c99-8543-c9519fee5b8e.jpg -8195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itc6c5e473-be4f-47d9-a0bb-025975f4da3d.jpg -8196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itc7dbb533-e350-4ff9-9b67-6cee1da5fe86.jpg -8197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itc8f78e13-4e6e-43c4-90d0-330fe7df425a.jpg -8198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itcd40d7ed-9a19-4049-babb-33f35f557abb.jpg -8199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itcf3d89d5-cddc-492b-82c8-bbec37a1b851.jpg -8200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itcf96b518-46da-46fb-8c16-1c3de55da29f.jpg -8201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itd33f9822-a90b-48a5-9830-8f8d0eb56647.jpg -8202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itd4272d5d-357f-4864-b53b-94acc7e4f519.jpg -8203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itd81fc752-6b38-4f29-a4b9-5da60053c7ae.jpg -8204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itd917586e-dde4-4a43-a66d-5535c8a8d362.jpg -8205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itd932731c-01f6-4939-bbea-8502026be03f.jpg -8206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itd97422ef-b153-465e-8aa5-3c7d67a2225a.jpg -8207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itdf3c8112-f5ef-4048-a228-36b3c253280d.jpg -8208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_ite01ab7c0-b055-4860-af2c-41785bc23cab.jpg -8209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_ite6b73a7f-f8be-4d6c-b5a2-ea6b1da0980f.jpg -8210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_ite9f39b56-a442-4c49-af76-56e142e1e3c3.jpg -8211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itea9eed33-9bd6-459d-87e3-4a0a58fb22f7.jpg -8212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_iteee8a021-d6b1-4ccd-a480-dd8be5b06d2c.jpg -8213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itf07866a4-c07c-4cac-9df4-6e94e9cfb11e.jpg -8214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itf10e6c97-db67-4f61-9de8-b1140539ab84.jpg -8215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itf3e21343-ccad-4b53-865b-a026f9489e8d.jpg -8216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itf4f6ed27-2730-4009-80dc-d282e3e442f0.jpg -8217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itfade5cc9-5eb0-4d5c-82b2-aabba43a90df.jpg -8218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itfae730f0-2887-4dcd-bba3-5b585f26a759.jpg -8219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itfda3a48d-718a-4bc5-b7b1-4e2a874d3b98.jpg -8220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itfedf6fad-5743-44f8-87fa-da3b1f692fdc.jpg -8221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_stop_sign_in_itff072091-3083-4765-8f78-393d7094373e.jpg -8222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it00a2d938-0a67-403a-9c23-2e85c3b68908.jpg -8223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it01173a49-654e-4678-9c89-6081d3ecb041.jpg -8224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it0162345f-5915-4b24-a0f0-3fab3c26991f.jpg -8225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it02068cd5-34e7-404a-9142-d39730a3d24b.jpg -8226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it044fa436-3916-4ec9-8694-df3b81c6a50c.jpg -8227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it054dcf02-54b1-473b-88fa-af96e6ddfa78.jpg -8228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it083c18d7-67c5-4e18-9ca7-0cd55332770f.jpg -8229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it0c686513-6a93-4a79-a69b-e64c7fdc83d2.jpg -8230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it0d7c3b2e-921a-410a-a39a-3804ed1928af.jpg -8231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it11d3587c-adab-4440-ae42-d9a162155bf2.jpg -8232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it11eeaec6-30dc-43b8-bb66-43b5d66fabd2.jpg -8233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it192b49a2-b458-4927-bc90-a0cc973a6e74.jpg -8234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it2205cfce-861d-427b-9840-99a55a5127a7.jpg -8235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it2381dbb1-3410-4147-9331-d69a5ebcffdf.jpg -8236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it24200634-b7ec-45ab-a501-7b3687e6b994.jpg -8237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it25e5e7b2-a62e-4585-9ea4-54973dc7ce4f.jpg -8238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it2628639f-71a9-423e-8cfa-811706e21a2b.jpg -8239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it2671b06a-46d0-4f79-83f6-fc1f4fa517c8.jpg -8240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it2a185101-9dec-4c1d-a631-201e4cca5ac4.jpg -8241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it2d060ba3-3df2-4ec3-9579-06f79b94883f.jpg -8242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it31435e88-3284-4e10-b9b7-faff9873c34f.jpg -8243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it34732cb4-8449-4e03-84f7-b6ecbb30e86f.jpg -8244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it35cc2f73-370b-4860-9cdf-1b96b0d2326e.jpg -8245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it3827e035-85a7-490b-856b-a45daf46edae.jpg -8246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it38335d66-aa7b-41f1-9307-58a5db55b3b7.jpg -8247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it3b0a2ff3-7e37-479d-bd03-03d778b72ebe.jpg -8248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it3cd56768-c4f0-469a-b1a0-1afe23f3f52c.jpg -8249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it3e19e71e-e4ed-4971-800c-cfdf5fbb6be7.jpg -8250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it3e24b035-31f2-4667-80d6-28b4bd2fb1b1.jpg -8251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it3ef2781a-aa8c-459a-8764-1a8e3c208036.jpg -8252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it3efb755b-435b-4cc4-a455-1f9382f15465.jpg -8253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it45abe06c-dd1b-4013-85f1-dd0199da7c99.jpg -8254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it4825dfb1-1d6c-4c27-96d7-5395e826d3e8.jpg -8255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it484e52f6-310f-4282-8de4-e07f6655220b.jpg -8256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it4b1f6601-fabb-4d9a-b072-be9c886b83f0.jpg -8257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it4e58b82e-d093-4d3e-9b71-876ba88f9877.jpg -8258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it4f3845ff-db09-4588-baa2-bcd3a72587e6.jpg -8259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it58f1f8b1-226b-46b2-b3af-fdfd4249608d.jpg -8260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it5900635d-854e-4614-b08d-5fda1efec830.jpg -8261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it59364504-41bf-4c3e-8e14-f6bc70f0e863.jpg -8262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it59782e88-8b65-4209-a877-a72d2627e0cf.jpg -8263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it5b38d5f3-8928-4eee-a940-f97db4b5313e.jpg -8264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it60c7e7b8-9a75-46d5-9dd3-9b2e08ea34c6.jpg -8265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it662dd95c-358d-4ffa-a28a-a68d8f7d12fc.jpg -8266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it6941155b-9102-4c24-ae00-55ac51147c0c.jpg -8267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it6be48534-b0d0-4691-833b-bef3b4534fa8.jpg -8268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it6cb079c9-ed87-462f-a332-98e6046f109b.jpg -8269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it71aac435-54b0-4ec4-b8a6-0062ba1f62f4.jpg -8270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it739e1a0c-a761-4d74-89f7-d566ab50699a.jpg -8271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it79a3816b-9ec8-4d81-9d1a-533b90e4342f.jpg -8272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it7a44c2b0-c5f5-4cde-a9cd-0f3458d2bf7b.jpg -8273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it7c82534f-9a46-441d-ae14-1789d3cd1092.jpg -8274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it7f0983c4-64bd-45d5-bdee-0f4957b7098f.jpg -8275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it8163109b-2ad2-44a6-b2a9-e961c9d81f0e.jpg -8276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it82ac0845-06f8-4c78-8b2e-f60cb7a236f6.jpg -8277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it838e7e67-0f19-4942-8304-cd76daa120c0.jpg -8278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it839a1f7a-d7db-482b-87ee-378b212977ea.jpg -8279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it86f88844-6125-4ad8-b33f-301fca073b8b.jpg -8280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it8e2ab466-0eae-4a0b-9f0b-c504cadf2ede.jpg -8281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it91379a6a-5be7-4b8e-b680-c21cc74734f2.jpg -8282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it92a08764-e6b0-47a1-975b-b800abc1296a.jpg -8283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it93bf49ee-e84a-4093-8ded-46c7a3870969.jpg -8284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it96722357-7c1c-4e21-bff3-1f66826fa928.jpg -8285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it99dc6689-8cb3-4587-af8c-82112d02ba7a.jpg -8286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_it9b88a6ea-f896-4185-a549-46093003180e.jpg -8287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_ita2fc605d-6343-40f8-be9d-710973a1b8c8.jpg -8288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_ita5c1f428-f02a-4e04-ad7a-df9c25b8cf8b.jpg -8289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_ita72f6c57-9a2e-49a2-8583-3bd269d2d160.jpg -8290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_ita83f8c28-438e-414b-ae1f-ad7b94901d9c.jpg -8291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_ita87bab92-c455-4441-97c9-32090de40aa5.jpg -8292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_ita88adda3-9001-46d9-bef9-5807d888d121.jpg -8293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itaae5c055-23cc-4e92-bbaa-76987607a6c5.jpg -8294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itacf8dd7d-c1ce-42c0-876c-cfb5850b2d29.jpg -8295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itaefcbcce-c810-4f53-80cc-4b037d6cab6a.jpg -8296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itb0a17c47-228c-4bae-88ff-3cfaa5460d90.jpg -8297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itb4676ea7-88f0-4f9e-81ce-1cd8208a7614.jpg -8298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itb59f953f-ccd3-4e95-a863-71af729bc9f6.jpg -8299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itbaddbd8d-6a72-455e-9955-85de9cd013bc.jpg -8300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itbbaf4b62-18ae-48ff-b51f-8444ced3d096.jpg -8301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itc02bef38-d3f9-40d9-be44-58cbb0ad129e.jpg -8302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itc0b6b779-9139-410f-b469-4271cb0ea597.jpg -8303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itc2344652-1652-4a81-a539-b79bf40106d8.jpg -8304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itc8f53adf-4b40-4d4e-b573-332f41759a55.jpg -8305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itcb27b52a-8933-4450-9c9c-88d8cabba512.jpg -8306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itcb3f6ab9-0fa4-4979-bc1b-ebf2c3fdc384.jpg -8307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itce137f61-8819-437f-bf18-c9348f380194.jpg -8308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itd217bb95-778c-4bb3-b175-4b1cfc660bf3.jpg -8309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itd2dd85fd-09c0-43bc-a678-7b0324fc54ed.jpg -8310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itd7bcaaea-49fe-4cb2-b678-03b88feb7094.jpg -8311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itd9771993-28b1-4047-956b-3cf7c706d553.jpg -8312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itdb47c1ce-5832-43fd-b216-1a85dc1d3df0.jpg -8313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itddd0b28d-6669-4dc0-9186-a6545c88044e.jpg -8314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itde5717e2-2ad2-4187-b78a-79644f9c2490.jpg -8315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_ite972419c-d725-4c6e-a240-0dd954927255.jpg -8316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itec870c79-9356-4588-aba8-8fa4743672d7.jpg -8317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itf5faa564-5aa2-4827-8059-015ab8b92172.jpg -8318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itf9851a99-5c44-4c54-b82c-7024431dda73.jpg -8319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itfc68644c-e4f1-4ef4-af2a-0c110e0b788d.jpg -8320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itfc92e436-4448-4454-8a75-51c3451daaa6.jpg -8321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_suitcase_in_itff383b55-8044-48bb-bc88-0f6c1954ce7b.jpg -8322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it00aab1ab-e41b-4df9-94ad-dd9d0ca3be00.jpg -8323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it023cdaeb-81af-4c12-a548-f56275ea0a1e.jpg -8324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it036b8df4-ae14-42ab-8adb-520708f44bf5.jpg -8325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it036de994-412a-42c5-83d6-c42f4588f40e.jpg -8326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it07510838-48ee-4443-bd2f-7701b1a3ffc2.jpg -8327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it09ae5722-e305-419d-b340-66d651f93b03.jpg -8328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it0a01d402-0e85-42fd-9dc9-a409e30eb2e8.jpg -8329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it0ac817eb-2b99-44df-95ec-4fca4bc32384.jpg -8330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it0beafd52-e698-47e5-a949-a12bdd6116dd.jpg -8331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it0c761cab-a7cf-48ac-9535-3f86d91052a4.jpg -8332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it0e52de2a-e8d5-4081-bef6-b6f13593435f.jpg -8333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it0ecb3bdc-8620-40d6-9d68-f9ca842f8038.jpg -8334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it1615c452-96f3-4b36-9527-4dd0be4717ad.jpg -8335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it1954a0f2-492b-420a-b3b1-5e4b1b84f27e.jpg -8336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it1c9521f0-7996-45a2-b725-85c4d6c1d5e6.jpg -8337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it1fbcf11c-013e-4d71-b8c6-9025b7ebdb91.jpg -8338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it21984e66-f4a1-4cd2-a351-8c7d1ef2d96d.jpg -8339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it227fb7a9-ee8f-468b-b525-f088ed53025b.jpg -8340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it2722ddc8-ddf1-4eee-80ba-980371b22cac.jpg -8341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it27ec9d70-cd23-44a3-99c7-5ecb02352290.jpg -8342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it28f8c809-128f-4672-adf1-7e380562cbab.jpg -8343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it29474072-0673-4bca-a75a-8bea336dcd0a.jpg -8344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it2a4a650d-f6f8-4731-af51-c30fb263f24f.jpg -8345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it2ef0e9ce-97ef-426c-9a8b-5e25ad28806f.jpg -8346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it2fa6007c-8bbf-4e07-899f-d71e8aacec14.jpg -8347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it32b803a1-3cca-4535-a4a5-ddc79c3d95f6.jpg -8348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it37d1a904-6092-41a5-81ad-045e474ac843.jpg -8349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it399c13ef-d07f-4abb-a83a-110a7ea49440.jpg -8350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it454dfed0-6ca8-4819-91d5-991439927f37.jpg -8351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it4d4b2eda-9102-4f1e-98e7-c5c30fd955ee.jpg -8352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it4f8284c4-6283-426c-8008-0c1dca6cfa68.jpg -8353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it5109d975-2ea2-447f-ac5f-ec2e2a9ab6dc.jpg -8354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it51322334-4381-47ce-89d7-70ab1370c7fb.jpg -8355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it5897257b-ab87-4e9d-8ff5-02fc7f49c9a0.jpg -8356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it5a7e73bb-69a9-4e0e-afad-416b0f29e49b.jpg -8357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it5b7b1a26-a6e2-4759-a40a-302936ad4517.jpg -8358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it5bcac039-e347-4510-a984-da2b2543309e.jpg -8359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it5c53b3a1-8e57-4f24-b229-904669669b93.jpg -8360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it5e4fdd7a-4e16-4e33-bb0b-5ec13386af33.jpg -8361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it5f4c1237-333c-49de-bed0-c4f02673a254.jpg -8362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it60ac9a0a-5ab7-47dd-a525-c57c6685f06f.jpg -8363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it63c9985f-3ec3-4b73-964d-6dc13620135c.jpg -8364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it68009254-ffbb-447f-8c9a-ddb554c6c391.jpg -8365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it6aa2c2f3-67d4-42b5-90d3-19ae9a52f1c3.jpg -8366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it6c3648d4-19d3-476d-9660-d28eafe5a8ad.jpg -8367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it712c4a8d-51aa-4fb2-ad59-a002d7052e31.jpg -8368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it73439d33-8a57-4a43-9dd1-e125a51c0d6a.jpg -8369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it73f91f14-746f-4cad-98f8-4b4820f52cb9.jpg -8370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it791d77b7-2a57-49ea-979b-e16d4a2be81f.jpg -8371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it79f02b21-427c-4a64-b99c-0333a0e511ae.jpg -8372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it7ad05304-6f40-4bbd-bf69-494d266dbc04.jpg -8373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it7b3e9c8e-b739-4da7-aca7-7286f7788b6b.jpg -8374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it80bb98de-22b5-46b5-a98c-0ec4856b9769.jpg -8375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it85ef4252-cc69-4637-8f7e-85dfc7ccf1f7.jpg -8376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it89727d7c-94cc-47e2-b4fb-fd1bd5df3abe.jpg -8377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it89f38159-9db9-420f-8a3f-188608739ccc.jpg -8378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it8a4bad2f-9a49-484c-a171-c8fdde4891da.jpg -8379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it8b27390f-5aa8-4b34-828f-588284b406f7.jpg -8380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it8ed8fc13-4a70-4fd3-98bf-a2e07c2386d0.jpg -8381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it8fb9da1d-1f07-4969-87c1-1966bacb2cc3.jpg -8382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it924014c3-d82f-4190-b248-68ffedd18e29.jpg -8383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it95e4475a-5b6f-4949-a59c-a793c34a28ff.jpg -8384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_it9b5a301c-c3d5-4eb3-9395-60608564e364.jpg -8385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_ita08c416c-b8bc-4a4d-a8f4-55a6ffeea3da.jpg -8386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_ita7059901-99f0-4d06-b5ce-1e23ef692bfc.jpg -8387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_ita75b58dd-f2bd-43b5-8a84-82d4c700b672.jpg -8388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_ita975d2c7-8a1c-4165-b56a-c50c85647898.jpg -8389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itabc488e1-d7bb-4382-8068-3e4358ec0205.jpg -8390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itaca44f21-67b4-48e2-a198-ab4fbde76a6a.jpg -8391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itb4cf62d4-4cc0-4adb-bb98-601d5a2c0f79.jpg -8392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itb651981d-fd1c-4477-bc21-d7075397f640.jpg -8393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itba281ed7-67e6-43f8-9f47-6425d4cfc9df.jpg -8394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itbb949c42-0077-47fd-b9a9-3fd997eca9f8.jpg -8395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itbebfea9a-4336-4e1f-a760-b0a2e87532be.jpg -8396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itc6f30491-1058-496a-9f32-0ca39a6e33a8.jpg -8397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itcbad90a1-4248-45cb-a525-43780f9bbb29.jpg -8398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itd16fbb22-a380-4a4e-abc7-f43820ffc6e7.jpg -8399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itd45d433f-ac84-4537-94da-5fe64f57951b.jpg -8400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itd4d08f28-3b4b-40dc-babe-5617fabd8510.jpg -8401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itd60a0e44-f601-4764-a367-cfab0368c021.jpg -8402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itd7082310-67ee-4528-b8c9-c55a3b6088c7.jpg -8403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itd7474ff6-2490-4ac7-879e-06fabb0bdddc.jpg -8404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itd8e56452-68cb-4da4-99b3-36e05e5d951e.jpg -8405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itdbdbfa8f-70c5-495a-a84c-0c3d7f414930.jpg -8406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itdcaa41de-6ea2-4db0-a9a2-8390fe19a40d.jpg -8407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itdd1c4e14-b29c-41a2-a43f-5604bea2df7e.jpg -8408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_ite638d21b-c5f6-4295-a751-dbd20fd2c471.jpg -8409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_ite6c28be0-ba63-4c5a-9a2d-b1bdd928a748.jpg -8410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itebda3465-b44c-4eb8-b3e1-9f8b03108c5e.jpg -8411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itecf92c63-f73b-47db-a54c-7e512b0f9d2f.jpg -8412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itee42fd46-f4fe-47b2-b413-0f617a36c65e.jpg -8413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itef6d60ce-8410-4639-93fd-a125404c9601.jpg -8414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itf265af9c-e42f-40d5-b19c-597b033e9922.jpg -8415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itf28d45e7-25f8-4b04-ad83-2587271ccc28.jpg -8416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itf3881626-4706-4fa2-b3c5-0774383781c0.jpg -8417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itf5f633b7-e760-428a-a009-b58f949ececd.jpg -8418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itf856a935-78f6-4eca-beab-2050a7e725d2.jpg -8419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itfd82c1c3-8f0e-4e50-9194-311f330c3955.jpg -8420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itfe2b5a6e-cc8a-4b29-bfd6-686e47a6d4b5.jpg -8421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_surfboard_in_itff959317-abce-4bd0-bbc8-ace9ddb55cdd.jpg -8422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it071db7bf-da07-48d3-b53c-63b845d2394b.jpg -8423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it088dfb40-1dcf-4398-b591-a595298d0d80.jpg -8424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it09c7e0af-1a93-4a89-953d-00515abd5a78.jpg -8425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it0af63701-f3d0-4006-bebb-245aaeac7468.jpg -8426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it15156549-6cb3-4528-bee7-add831b92d82.jpg -8427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it16c249a1-c1b0-4745-9682-69422bc88d78.jpg -8428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it19913d57-f8ab-410a-b132-ea03ae791ec6.jpg -8429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it1e21600e-f6c7-4749-9cdb-a01ab6b9d3d6.jpg -8430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it1e7e4a0d-17d2-4692-bcd3-82b278ea5791.jpg -8431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it231df5c8-1be3-4b8f-8c89-5f45cb064ccd.jpg -8432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it232e73ab-d6c8-4791-972c-96bb06a7aded.jpg -8433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it26708808-3160-441f-9d64-ff7ed285292b.jpg -8434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it2677a167-dd1c-4114-8ce6-45a908ddecd1.jpg -8435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it28e3846a-fa66-40a3-b8b9-2ffcb99b814e.jpg -8436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it2c0e1e00-5557-4264-925f-905d9f942dea.jpg -8437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it2c9fc7a4-25a8-4d3a-9e0c-a54e3da25326.jpg -8438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it2e70e0f6-7682-4c0a-8fb9-9b8c62c77501.jpg -8439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it331157ab-c9b1-4320-9df4-dbe3b3ecf865.jpg -8440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it340e1d98-ac1a-40ed-9888-3fae40918bda.jpg -8441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it341d829f-ac42-4253-93c7-17f7656688ec.jpg -8442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it352ce98c-1b1f-4924-971c-5f7c872fc4d4.jpg -8443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it37ad0cb4-4890-4a2a-8056-71699d6a48e0.jpg -8444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it37d39d4a-16f1-47c8-9f86-bde89f29323a.jpg -8445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it385aa108-03c8-4b15-af0a-0e33efbcedb7.jpg -8446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it393ffcce-61a4-445a-987c-6e9d2954f76f.jpg -8447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it3a5ba7b9-b3a6-4bd7-b747-71426eb09c62.jpg -8448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it3dafdba7-750d-419f-83c7-2557239596b4.jpg -8449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it3ef9eb89-406d-44f6-b0e3-31a45953e805.jpg -8450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it40402cba-9ef6-47ef-9e35-43d0941abac2.jpg -8451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it41cd4fdf-a6cb-4530-8293-8010ab4fd92c.jpg -8452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it42afbc9a-278e-44f3-8079-4a4198315a7a.jpg -8453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it46805312-6a56-4b7b-bd36-de772e9b8058.jpg -8454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it4ce09835-7318-42e7-803d-823f137d5866.jpg -8455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it4d3a1d9a-928f-49dd-a1cb-4ccfdc96e93a.jpg -8456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it4dc4856e-8d1b-484f-84b6-ff36df3f6392.jpg -8457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it4e48da3c-34fb-4f74-b18f-68e5f67e2d60.jpg -8458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it505e8197-ab0f-4d34-a484-59b4a4b8f1eb.jpg -8459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it58542d2d-a239-414e-b1df-0206323956e8.jpg -8460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it588ccf45-f0cb-4670-b394-ea51da102ce6.jpg -8461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it58b76eab-4713-4444-80d6-4295831acdb7.jpg -8462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it59407468-0dcc-4fa2-8680-ada539758bf8.jpg -8463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it5d649bca-e768-4d7d-91c7-bf9397f8ab5b.jpg -8464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it6545d919-8aed-4b60-89a1-7cc28eb4b383.jpg -8465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it6ad186bd-362f-4f20-a701-d375e5eebf87.jpg -8466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it6e5ef304-9482-44a9-acdc-85fda5eafab3.jpg -8467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it6f1956c1-ba48-4a9c-afce-06a02a1d95dc.jpg -8468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it70b85b60-788c-40f7-b2ac-227e42284aaf.jpg -8469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it7336bdca-23ce-4126-b952-6c020af508a3.jpg -8470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it7752cd8d-a69b-4c9c-a07b-169135bbe218.jpg -8471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it79edd999-ac85-42d5-a6bc-d6db5f087334.jpg -8472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it7a4c64e6-7495-4cc2-8fb1-72a0cf5c1602.jpg -8473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it7b7ea553-776b-4564-ae52-7dfb9f09e73e.jpg -8474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it7bc44214-c190-4d93-9ca2-cd16840bc5c8.jpg -8475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it81bb73cd-11ed-4e75-b28a-d116c9006c91.jpg -8476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it8266f454-efa2-488f-b121-0ffb85295544.jpg -8477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it831f16c1-8320-4707-a866-68e88ec5a722.jpg -8478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it84ae2890-5e3b-46a6-a070-3e0ad0ce5ea0.jpg -8479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it871656eb-8724-4699-b0c2-1f153fb6bb47.jpg -8480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it888aa1a8-6ba9-498a-ac88-e3b18d6bb834.jpg -8481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it8d588bb5-8d8e-43b5-bfb9-d13bfe82a6b8.jpg -8482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it91e9f698-386b-4031-90c0-b88a99c25c10.jpg -8483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it9232a07d-1b88-4273-903b-26902c26b780.jpg -8484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it98fb7d88-6b6d-4a5c-b495-8f72dec2e72e.jpg -8485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it9babac0f-8de6-4ee8-9cbb-0d122b925b51.jpg -8486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it9bf9c85c-2322-4302-b604-538ba68716ef.jpg -8487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it9d5a40f3-96fd-45e9-ba7d-bc3494cf667d.jpg -8488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it9d982720-71f9-440f-95b2-f7d3907dd0cc.jpg -8489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_it9e170dd8-1d4d-442c-beb4-609dae4f0489.jpg -8490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ita31bdc35-d80a-4d5a-a654-edb9fad1ca66.jpg -8491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ita3263090-cf2e-4072-a1c0-bf69dce95a68.jpg -8492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ita3b1d53f-bddc-40c2-8eed-e0ed300d409d.jpg -8493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ita449e088-9901-471c-b4b0-c6ad5090139c.jpg -8494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ita483fae8-7ca9-46ed-b6ae-2fee13e7d98c.jpg -8495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ita4d6c741-554e-4794-a4be-6ff4c3363d8e.jpg -8496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itac507b07-7669-4b6f-9fe9-7b6fbf7eb19d.jpg -8497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itb8da1d82-13de-4b5b-93f9-9571daf6d1ed.jpg -8498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itbe9a6a2b-b11b-473d-8363-3a430fa194a3.jpg -8499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itc20c0360-4abc-43d8-8676-8a72cd9a8398.jpg -8500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itc8d3b254-fa7b-4c8c-b5fc-699d5d361802.jpg -8501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itce9e0ff6-f673-42ff-a75c-b8e278141571.jpg -8502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itcf54d543-2565-4979-8dbf-c9a4bf0c2e3c.jpg -8503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itd03e43b1-776e-431a-ab45-8530be075dca.jpg -8504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itd26ce12d-ff8c-4481-8a06-eaa8859de070.jpg -8505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itd5140f56-d28e-40e0-b080-6de7066cf952.jpg -8506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itd5943165-2db4-4feb-bbbb-a489d7b26643.jpg -8507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itd7519c5c-cf03-4e33-9ef3-a375b2cbe2c4.jpg -8508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itda1e23a0-a71f-4617-aef8-32254c50fd18.jpg -8509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itdad0253d-7536-489c-b3fd-e8f9b1f6478b.jpg -8510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itdd183b16-9c58-4e5e-b6cd-12d5c502516c.jpg -8511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ite37683a9-d12b-4038-bcc3-4169b2711569.jpg -8512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ite49aa87b-efe5-4930-b0cd-f578c26850c2.jpg -8513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ite50da90e-f877-4b4e-9b46-441b394c49c3.jpg -8514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_ite710abab-7dbd-46ba-a745-e64cabdbc13c.jpg -8515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itea52953a-8f87-4900-9fe8-ba4c4daed2f7.jpg -8516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_iteddc5859-7655-45f5-8c0f-abf444833ddc.jpg -8517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itf0295c6d-a618-4319-bb11-6cfb2f27cdd1.jpg -8518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itf35d95b9-94ab-444a-bae5-6990c39f7479.jpg -8519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itfe17d23b-2ac8-4bba-b797-1df9d394fe72.jpg -8520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itfe86370a-009f-4988-92ca-221c11fa75c5.jpg -8521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_teddy_bear_in_itffd813e3-f25c-40ac-8df8-d7bca5928cd1.jpg -8522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it0030cea1-65ec-43fc-bb6e-c67fa1a3f13d.jpg -8523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it055fd2f0-67c8-4cbc-ab74-8f4e175de9b0.jpg -8524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it05e0eb38-eadf-4da2-826c-41b19043524e.jpg -8525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it09a81eb8-34a8-4d4b-8a3f-d25792581f58.jpg -8526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it0bea5f98-dca0-4930-8a8b-8f4264af454d.jpg -8527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it0deb1022-a7c9-4026-8350-ed4004842b12.jpg -8528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it0f8c33fc-f0cf-4b4e-8542-67c536974710.jpg -8529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it1323059f-5c53-44fe-a6c7-50ac16f26fec.jpg -8530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it139958cc-6a55-4345-a993-59caf20922a4.jpg -8531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it1500927d-02f0-4180-a47d-d491513d5b4a.jpg -8532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it1a1f16aa-1e7d-4acd-8125-49f745a4e9be.jpg -8533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it1aa130b4-c9d9-44b0-8eed-cf91c5f40efa.jpg -8534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it1ab8b921-2721-4043-87ea-e727f3a2a784.jpg -8535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it1c221ea5-8d0e-41b0-8b2e-057f152c763e.jpg -8536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it1d2f0349-ef4a-40ce-9818-ba7a1ea966e9.jpg -8537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it21d9271a-5209-4cf0-8d31-ae5493ef6c9a.jpg -8538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it23a3e2a3-b134-41ed-b8c7-8f1c3cc8fae9.jpg -8539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it2aec7ed6-5539-47e3-b8e8-b44519938d95.jpg -8540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it2b0c13f0-8887-4241-90cd-c7a4dab8b9c2.jpg -8541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it2b756f7e-eeac-4c5c-8ae9-ad57ddab4304.jpg -8542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it2b8fdf83-45d7-44d0-900d-9f432179cdeb.jpg -8543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it2b92d435-ff48-4e1d-ada8-c0d6133ba464.jpg -8544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it2c3b7162-b298-48d5-a625-59aa59f1dfd0.jpg -8545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it2ddc379c-491e-4434-a4eb-ed261076d3c2.jpg -8546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it30f686d2-11de-44d8-9900-8e74fc899adc.jpg -8547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it32e5e031-b609-4341-8e93-8ca5289ac874.jpg -8548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it3534783f-a320-42b9-9bf0-baeae20e991d.jpg -8549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it41b1fb7c-e592-4107-9083-e5defac3fcda.jpg -8550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it45bc2930-6e52-4748-a143-0b8174f02a9f.jpg -8551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it48837800-eba0-4254-909e-597466124e2d.jpg -8552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it499abb64-15db-4842-8007-380d45460799.jpg -8553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it49d88a91-093d-4b52-aa44-b180addd59a2.jpg -8554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it49e30aac-332c-481e-ad5b-a6dcfba9bdd8.jpg -8555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it4a6065f0-9f7a-4796-b372-d0098147d4b0.jpg -8556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it52edbec5-4080-4166-9ae1-bee16d631190.jpg -8557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it5650cc17-7996-47d8-b18b-6341bf7fc372.jpg -8558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it6184a9da-9936-4338-a4cc-d9d0e20c53f3.jpg -8559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it65f441fb-2fbe-4cf8-a6a0-dc7ffa125787.jpg -8560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it690b5d82-c4c5-4da7-82da-72abcec4ffb1.jpg -8561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it6b21db9d-750c-4232-8d97-83356ec9b01e.jpg -8562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it6c1cfe90-9cf0-450b-bb39-345da3c86e66.jpg -8563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it6cf4d010-bbde-4cce-83a3-2b199af2c9bd.jpg -8564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it6d6e6d25-dd26-4591-adef-5f1da8f3870b.jpg -8565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it71a7cf63-70ba-42f2-b0f5-cfde4270073e.jpg -8566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it79096671-b6f9-435e-84d1-f45764ccbb51.jpg -8567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it796a0d5f-e81d-4930-966a-75f432e7c01f.jpg -8568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it7974842f-0633-4422-b99f-b3e995b2230b.jpg -8569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it7a281c78-088e-40da-99cd-40b6c6afe73a.jpg -8570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it7c8e01ae-ae66-4b5f-bebc-2b69b4dbe6a8.jpg -8571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it804e06e2-787a-47c3-9eff-8011870773c0.jpg -8572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it80882203-995a-468c-a5d0-d430e387ed8a.jpg -8573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it815cdffa-7398-4e51-815d-f8b5c63bf584.jpg -8574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it8265ea4b-bfae-40e9-a024-a489b44b1212.jpg -8575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it83d2c888-c688-40cc-a0a3-e1592258a589.jpg -8576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it86f8608e-9353-4bfd-b8e9-c808aee36b07.jpg -8577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it87436aed-bd4a-4411-a2eb-a154b7a5a516.jpg -8578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it87a8fa8d-a172-4a36-aee6-e005b09670b4.jpg -8579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it8dbec200-5261-48dd-8078-d48866124fef.jpg -8580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it8ffa3fb7-a885-4dee-8180-8f77dee2c610.jpg -8581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it901254cd-baa0-4c88-b899-55fe4dafa7a5.jpg -8582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it91860c7c-d1bd-428d-b4b2-6ec7d0f1cb7f.jpg -8583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it961f9304-3aa9-4c14-95f8-0a2aed932df4.jpg -8584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it9c62f22c-f1ed-47f4-ba90-d01571b9e2dc.jpg -8585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it9de609ef-b805-47f2-ab70-215b8174c5f9.jpg -8586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it9f2e1f78-b95b-42b1-88fd-d0a561dcc1e1.jpg -8587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_it9f6f77bf-0a33-459a-aeb0-c9ea7445d44a.jpg -8588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ita06c9cdc-5eca-4630-8040-aa1fb0b05f2a.jpg -8589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ita6ce85ab-ddd5-4286-a044-fb97f518fda4.jpg -8590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itb29bcbe9-9066-46d8-9752-8131768bce67.jpg -8591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itb889ff02-d26a-4f5f-b5b3-a005b21247d3.jpg -8592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itbeb7a3f7-c8ee-4148-9f90-f6f6da9517d5.jpg -8593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itc295ffc6-209a-4efe-a70e-ef7b65520ecb.jpg -8594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itc3c84d63-de70-4b7a-8c9f-796a325375ee.jpg -8595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itc538d4d3-8c14-451e-9c90-ef933b692b09.jpg -8596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itc76e0e66-441a-41b3-a9c4-6d75608c2079.jpg -8597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itca07eaa0-14a6-4561-b0f6-354f8461e19c.jpg -8598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itcf1b0a74-871a-4ee8-915c-48f4f51ab1b4.jpg -8599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itd7a3a888-0b25-4c5e-ae49-52559fffe0c4.jpg -8600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itd7c18708-77df-4357-8b0e-9632b2f1b774.jpg -8601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itd8e6a986-2cea-493f-b782-2f4168d10c9f.jpg -8602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itd9159744-2ac4-46e3-a252-d5688a7bff35.jpg -8603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itdc825244-5887-4091-9d14-c58a8586f1ae.jpg -8604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itde504c88-9b9b-42c3-9006-836b1d8d30be.jpg -8605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itdf7420b0-579c-4ca0-8e7a-c343bf930c93.jpg -8606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ite166f7a8-ae5a-4295-a370-7517c337cf02.jpg -8607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ite32829a0-8d7f-41e1-93a8-763d94756413.jpg -8608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ite32a9d78-a41e-41df-9711-377714d63733.jpg -8609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ite6804ced-893d-46b0-a92a-b8c6afe048b7.jpg -8610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ite7fbd22f-b4e5-4d7a-9d62-83a6be266eb9.jpg -8611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ite8faa989-a9e4-4015-8ff7-6eab1a135cd6.jpg -8612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ite930e222-acd3-40c6-b0ed-b984bb2125fc.jpg -8613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_ited8281fc-899e-471e-a745-fde042f596c4.jpg -8614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itf03305ea-2d90-4005-959a-133c3692ca03.jpg -8615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itf83c2fdc-ca39-4602-9d41-3eb16908a729.jpg -8616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itf8ed4645-215f-4960-a6bb-44b171297ae1.jpg -8617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itf9f5ba6a-469e-422d-af6f-421c3dc2fea4.jpg -8618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itfa612380-3270-4461-b254-ef123665fc0b.jpg -8619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itfb81d0fa-7db2-4eea-bdf3-e66851efe04d.jpg -8620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itfc21954a-fd0a-4550-8d2b-d08f58cb8507.jpg -8621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tennis_racket_in_itff95a412-8651-4691-aa37-1be8ddc5e349.jpg -8622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it02313765-b0c6-43ae-b9e8-641b087d917b.jpg -8623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it043dc309-3b6d-4234-9d58-00871a53f558.jpg -8624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it0a910d40-7acb-4175-a6e3-f129b5e03da3.jpg -8625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it0b1d8b9b-0c07-488c-89f9-13d239c3a606.jpg -8626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it0cf1bb20-e49f-4225-bf06-6cbc8a94b9e8.jpg -8627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it15e852b0-1e4d-4180-9f4b-491b0298e902.jpg -8628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it15f6ca91-f421-4067-974d-74b3e7b8ff12.jpg -8629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it17b64750-2f9c-46ac-abc2-ce2a6581a9e9.jpg -8630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it1af3e763-7caa-4e92-98fa-0eb44a17827c.jpg -8631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it238cd1f6-05d4-411f-b856-26d3f3801169.jpg -8632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it23e314ee-6147-4705-ac46-85116aa6dc57.jpg -8633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it269db20c-3364-4c55-9aff-3e210326c66b.jpg -8634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it2835f7cf-0a4e-4b48-8619-288d03a9b0d6.jpg -8635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it2ccd6495-c8cc-46bc-b51a-69576768ca87.jpg -8636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it30320da4-4d60-4986-b5bb-1c605ee4db55.jpg -8637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it30a2c115-8cf6-4594-8872-a654e1ee737c.jpg -8638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it32317dba-e054-4963-97dc-354e80a3e16c.jpg -8639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it33055c44-75f6-434a-824d-4f773578f70b.jpg -8640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it36ccd609-4ca5-4c35-80d9-39cb257c139c.jpg -8641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it36fa7248-8cd6-4529-be6f-d5057f5453ca.jpg -8642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it39fb1311-2ecd-4139-aa97-9ce8c83e076d.jpg -8643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it3f7992d5-3078-4283-9b73-9f9361d27fdf.jpg -8644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it4274a61f-7ce6-4f4e-8e88-410fc7ced162.jpg -8645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it47500a3e-2f0c-4b44-94a8-bb56db04ffbf.jpg -8646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it481a3a73-7d70-4285-9982-1155ef68484f.jpg -8647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it487861d0-780f-4dc5-b523-4af2132958c7.jpg -8648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it49c56068-220d-497c-94bb-437c615b2eae.jpg -8649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it4f2ef89b-fb58-4f79-a7c2-dc46aa2f1691.jpg -8650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it50e9838b-19b5-4dcd-a836-1e394165e255.jpg -8651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it53c93fd3-d911-42a5-8b71-4d7287deabeb.jpg -8652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it56eaab36-7a59-4b3e-8575-3d0cbaff49b2.jpg -8653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it586120ec-6247-43f8-ab11-83ec75cfe45c.jpg -8654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it5afb3dd8-3728-4593-b6d6-6504d5be1a78.jpg -8655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it621ae8cb-68ea-4f8f-828a-20594807bdb2.jpg -8656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it6789eae5-a770-41c7-8c4c-c38fe5f982dc.jpg -8657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it678c6ed8-fd61-4b6a-bf43-2ba37c6d039c.jpg -8658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it684ca2fe-7f71-4008-a736-d4fc3c807ded.jpg -8659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it6df9d4ee-1739-458a-ad35-fee44b5f0d4c.jpg -8660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it70700a2f-6a00-4e8a-827e-0fa44dc07670.jpg -8661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it70a97c10-dc13-40fc-91b5-2783a4b16aa4.jpg -8662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it71fcbc16-23d9-4da8-9698-4275961dd8aa.jpg -8663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it74f134c5-c264-4593-ad3a-b2a140cc4f4c.jpg -8664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it7669aac7-7619-4b6b-b114-896f18dbc197.jpg -8665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it79aeef6d-7aae-4279-a741-78cc88d0566d.jpg -8666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it7d65bfde-0ea7-4402-bf0d-6d00b136ee29.jpg -8667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it82e51fde-7b74-464a-8bed-b4745972d829.jpg -8668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it83781285-3b14-4a9a-bea0-23579c05f8c1.jpg -8669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it84848581-4a7c-4143-b5fa-1b85db2edf55.jpg -8670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it85038adb-7d12-4a2a-82d1-e16d981f21e0.jpg -8671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it8b31ea64-9c9d-49cd-a626-af73927330a9.jpg -8672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it8bbfcc55-9500-4307-9d98-966965f5b452.jpg -8673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it97cc2275-a799-4227-8005-5057dc82c64d.jpg -8674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it99d757e6-f535-4432-b735-b6d3318cd521.jpg -8675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it9a36ef0f-c04b-4a1e-a386-e0e7ebcb4e72.jpg -8676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it9b7c7594-658e-45c2-a607-b0bb26cb47e6.jpg -8677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_it9b85db87-500c-4b76-8f9c-8a5baff09a01.jpg -8678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ita11524b6-5cfc-401d-94ce-addd09f71d08.jpg -8679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ita494809f-1576-4bfb-ac3a-f291ec1bb05e.jpg -8680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ita53e5ff3-920d-4e47-82a0-c433b7b85dcd.jpg -8681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ita59ff6c8-9490-41db-aa72-778cd2b5edf9.jpg -8682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itaac10bbd-5be4-43f5-8f6f-34b868516bb4.jpg -8683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itab5991fe-9b39-4ae0-b0d1-69e7816d6186.jpg -8684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itb1287dc3-d980-4c09-b142-3b4b136c3aec.jpg -8685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itb1967e7a-66ef-47d8-8a1b-29ffbfc9a8c5.jpg -8686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itb1d68398-f5bf-47a9-9620-c40f0a74bac0.jpg -8687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itb2d53ba9-3019-40cb-a34d-1c033a7e1970.jpg -8688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itb52459e4-3bef-4602-bded-4ff38b05f188.jpg -8689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itb5999c2e-ec46-4900-b3c4-dd7586072186.jpg -8690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itb6c7f2b6-983f-419b-b810-5e8694481126.jpg -8691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itbbe3c5c7-1d74-4cbe-a2db-bd1ad3b7b3e5.jpg -8692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itbce08366-173b-4b54-a979-731346a71d1d.jpg -8693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itbf3958d0-fd10-4832-9feb-3d034060de0d.jpg -8694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itbf3c96a8-af54-4c66-94df-35d09e4a996c.jpg -8695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itbff8b6b7-927a-47a4-8b7b-1abba62fb3f3.jpg -8696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itc0d563f4-6c2e-46e7-8aa5-020250fa1951.jpg -8697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itc412bdfd-770a-4d3f-9b06-1580b19fe9c2.jpg -8698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itc7618b67-a2c2-4944-8a97-d791eb5fde6f.jpg -8699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itccfec892-ff37-4c39-93bd-9ffeaa27a520.jpg -8700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itcf6ff1f4-c8c3-4d83-a467-1e9a1ff38921.jpg -8701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itd70a30a9-cf4f-40ee-aee6-0c79e1b7fc58.jpg -8702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itdb9994dc-c621-4b47-a844-9a58df63c02d.jpg -8703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itdbb2f0b1-a86e-4994-a1ee-5f6a5ad45366.jpg -8704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itde1e303b-c594-4d2e-aadc-dc0169c5b25e.jpg -8705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itdfa7dc94-0f75-4cc2-ab78-85b2d85bd940.jpg -8706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itdfe72521-6643-418d-b53f-f3e3915bd45a.jpg -8707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ite2863099-e7fc-4246-a7cf-5ffc98e7537d.jpg -8708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ite503848e-4970-469c-8d17-a5f5a26849fd.jpg -8709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ite58455b5-e137-4f40-807b-23fa2f08a481.jpg -8710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ite78af64e-6acd-461c-80c1-f688ffc11533.jpg -8711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_ite7eac978-6d53-4dd2-b764-47a84057ef60.jpg -8712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_iteae30682-28dc-4a89-a1bb-adb27002091c.jpg -8713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itee714784-cb95-4ab3-abd5-508aaba73b2e.jpg -8714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itf23dbbfc-d9b3-4b2b-aec6-e1d0815dcb5a.jpg -8715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itf2d2dd62-36a9-4510-b0f6-a67adcba6bb0.jpg -8716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itf4e73fe7-ac1e-44de-acda-560381577570.jpg -8717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itf722a785-97f7-46f1-adcd-54ed6811fb59.jpg -8718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itfa2cd416-a201-4f0e-943b-f4806b7fd0fc.jpg -8719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itfa8018c9-bc3c-439b-9983-2eb68e4d4819.jpg -8720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itfb57d4d9-5a15-4c67-b4aa-c9bad55efac4.jpg -8721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tie_in_itfd379923-a95f-4a1a-8dec-f0bd1b7c5709.jpg -8722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it00c32fb2-f96d-44bb-86cb-b3697e1770a0.jpg -8723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it08cd9030-68e4-4a92-b084-14702b0c0d72.jpg -8724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it0c688cc1-94a7-44f3-adca-1b03b8dceb41.jpg -8725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it0c9206e3-7644-46d0-a011-aa634fe4f888.jpg -8726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it0f8ea0d6-a9a5-4ae3-b819-f2372b36de24.jpg -8727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it110afed5-1b65-44c2-b9bf-4275282d277d.jpg -8728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it1113d0c5-ad69-49e6-8df9-09e2ad4d5f8b.jpg -8729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it12d4c8a5-faeb-48f4-b397-1eeaaf4d7f02.jpg -8730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it13cb34ea-0110-4747-90b4-64050b7794b0.jpg -8731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it168cacc6-8733-4f7a-a732-0d384d7bc8df.jpg -8732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it16ba6a48-e9dc-4a64-968a-534fbe1d01ac.jpg -8733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it16f254fa-db72-4777-a267-b3e1f12505d3.jpg -8734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it1c0c4cb7-327d-4bb5-ae9e-60c7750ad2d1.jpg -8735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it1c7ccf8b-2ef3-432c-b4d4-b38678f44089.jpg -8736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it1fae373c-2134-41a9-923f-a4fdf8a9222f.jpg -8737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it24c888d9-ad79-4a50-a449-ec07ab20471d.jpg -8738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it25f55a61-0365-4985-b1eb-ce52dda8ef43.jpg -8739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it2de7cedb-77da-471e-a355-e6cd0f847350.jpg -8740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it36aa182a-044a-4559-91d9-c48784002cb2.jpg -8741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it37aa8a7b-d388-4fbc-9f6a-471a91332001.jpg -8742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it3837f552-77f3-41c5-ac8c-359ec05685e1.jpg -8743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it3c441bc1-cb2f-4a53-a5bc-17379148c8e0.jpg -8744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it4077fe68-f7e7-459f-93c6-c7cf42812eb0.jpg -8745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it409b567f-3190-4b0a-b20f-72009fdc3e5a.jpg -8746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it42efe682-fde9-4e97-b536-1beecbceab4c.jpg -8747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it4334e043-5cc9-4c83-932a-7c60a421b579.jpg -8748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it43fadae8-b467-4a6a-a511-40e0021a836c.jpg -8749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it48d870fe-6173-4b4e-b26a-f34322779b9a.jpg -8750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it4c05168d-b8f1-4df1-a649-5b5b49e13ce1.jpg -8751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it4c3e7146-6f46-4ec3-8c21-b4968f741724.jpg -8752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it4c843264-c938-4e93-af0d-869b488eca07.jpg -8753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it4e8aa062-2914-4315-b0d5-2d3fda4699a1.jpg -8754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it54c30df8-3d20-4b6a-ae50-64540e541f9e.jpg -8755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it569b7ef7-d904-480e-aeba-c83c33dbb10b.jpg -8756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it58accbfb-ca9b-47e2-921d-e31b4f7af615.jpg -8757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it5a3268b3-9616-4130-88b2-bf7e8e2c3e67.jpg -8758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it5c698a46-2e13-424c-b606-9e0a27ab6e81.jpg -8759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it5d4e0abd-d076-481b-a554-7ad23ff80113.jpg -8760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it5e043368-60f2-45fd-86e0-24764fcc06ac.jpg -8761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it5fe34177-1034-4eb3-8ae9-64c7449d05ae.jpg -8762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it6521bf63-38f0-4119-9b69-0182985fc0ae.jpg -8763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it6f55717e-27c2-465e-873f-064cd1a3f34d.jpg -8764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it7197ed73-5e05-4a48-ab90-a0ed5f0fd7a5.jpg -8765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it7237902e-f88c-42a6-ac37-31085d2a00e0.jpg -8766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it74f12964-849c-415c-98e2-f30b4c36096b.jpg -8767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it75bdedc7-5a60-4bc0-a80a-e72cf614f65f.jpg -8768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it760ce57b-fe0f-4fd5-80f2-62565be251af.jpg -8769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it774708f8-51d4-4a9e-bcbe-27f6174b90dc.jpg -8770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it7c5736f1-c75a-4891-8960-0689f0d6ceef.jpg -8771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it7cb79725-68f6-403d-bf25-0e58db14fe85.jpg -8772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it7cdf5d7d-133f-4c9f-ae95-918aee0b2ec3.jpg -8773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it8342a9a0-a504-4af1-8bd6-a0d856c063e9.jpg -8774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it866aa95c-bec0-450d-9d89-92cffea45be1.jpg -8775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it86819647-bcdf-4767-803c-7d339100f4a5.jpg -8776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it8786abda-d2f4-4fef-84b1-f05be9bc9e27.jpg -8777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it8c887577-83de-46a0-ae3b-1b01f0a61590.jpg -8778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it8fb84ebc-755e-4eee-8832-f7db4916e090.jpg -8779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it93ecc69f-cd06-4c69-86a7-6a863b11bceb.jpg -8780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it9577da77-fc7f-4ef2-abfe-b339836a52c5.jpg -8781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it95c1204f-6b45-41f2-bd7e-77ffc20da569.jpg -8782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it9716f116-56a7-4d31-8838-22c7617a24f1.jpg -8783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_it9db5d98c-5f29-43dd-9e17-adbacf514127.jpg -8784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ita13e6533-594c-4820-b55e-9f0c13e6aa2a.jpg -8785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ita1ecf898-11c7-4d7e-b64c-f28df7996f34.jpg -8786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itaba0eb4f-6e62-49f2-959b-20402c17fe6f.jpg -8787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itaf90a375-b082-4e0e-9366-2ba57294c9e5.jpg -8788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itb6dfab21-fcb1-4495-8cff-de1ab196abb1.jpg -8789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itb8432b92-d6f7-490b-aa82-4c52b9b1c889.jpg -8790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itb95324b3-41be-4d26-8ea2-f1f0a5b25f82.jpg -8791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itbd300b72-cfa3-45d3-8b67-4cb1de8b56ba.jpg -8792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itbe6642e0-f212-4680-957e-974dc32427bb.jpg -8793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itbf33f2dd-496f-4a83-9ff7-41684d79cd4d.jpg -8794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itc005edef-3205-478d-aa2a-1b09f151dd7e.jpg -8795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itc41ce799-427f-435f-aee7-499fe052882f.jpg -8796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itc5b69de6-4440-413f-a11b-da4cffe6f582.jpg -8797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itc869c09b-8b15-47da-affe-0e0f88c23c79.jpg -8798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itc8e0a304-b490-42b1-a74f-497cfc2fac6b.jpg -8799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itc9705642-a1f0-47e5-a950-bb5085391dca.jpg -8800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itcc543de4-a008-477c-ac9c-439181c63153.jpg -8801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itd432d758-59c3-46db-a44b-d8385760b8d9.jpg -8802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itd5e4621a-eb9e-4aa6-aa8f-773333036556.jpg -8803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itd75ecdb9-18d3-4e13-bae1-d12b2e6968de.jpg -8804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itdd1d5bc6-b29b-476a-9260-936320a6470b.jpg -8805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itdd2e9fa2-cf92-4808-a03a-af080eae1f8f.jpg -8806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ite0ad7fe4-0116-461e-be55-b25a651ae5c5.jpg -8807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ite130b9a6-0c19-46a0-be39-0f3750df45b3.jpg -8808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ite3b50383-08d6-4577-868a-695c091a6387.jpg -8809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ite5ad1946-1c45-4758-a99a-9d8ae2a010fb.jpg -8810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ite8b6cdc8-e1b0-4bf3-98d2-7ae63e6e50c5.jpg -8811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ite930c8e5-8589-4c65-94f5-97b853793b27.jpg -8812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_ite9d51a17-b567-4f8e-9989-6db1d71287c5.jpg -8813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itedee9f74-40cc-4f8a-bd99-64636f2e6e1e.jpg -8814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itee17c6d7-581f-4f60-a661-2e3911caa2da.jpg -8815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itf19a7647-0ab7-42a9-b044-626ae60f7552.jpg -8816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itf309ceca-9fad-41dd-8f98-0581cfd1e7d3.jpg -8817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itf33bfae7-1c5f-41d4-9aca-5395fbc0120c.jpg -8818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itf3ee3f40-05a5-4b8d-8da3-cb723c0bde7f.jpg -8819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itf6ab8834-cfa8-4dff-ac02-40f67fc1b63e.jpg -8820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itf9c3d8d1-7d28-4bd4-ba75-7b79fdc2edf1.jpg -8821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toaster_in_itfc6b8769-36d9-4df3-b628-6e1dbb425484.jpg -8822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it058f2257-87ed-4de8-96ae-58d13c984b11.jpg -8823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it06a589ca-db12-4053-b1cf-154ef8e51705.jpg -8824,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it06e34a35-92cc-4e49-bd17-0eda84c973c3.jpg -8825,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it07c3ebc7-897a-4d26-a45c-af71fc2c4103.jpg -8826,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it09854325-4d87-49af-a193-a59edde0eb9a.jpg -8827,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it0a222173-e2f6-4cc8-9e49-a5bceeab0556.jpg -8828,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it0f63a314-505b-483a-9ed2-58b7b4109858.jpg -8829,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it1565d45d-9683-40aa-acc7-f10da4ad7b6c.jpg -8830,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it15bc040a-63a5-4a63-8279-d02d4670167a.jpg -8831,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it1799532e-36fb-40ef-9e66-4973dad95b47.jpg -8832,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it1bd6fa01-a314-4a27-b35d-cb4915b7802a.jpg -8833,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it1c4c378f-52ac-49ff-b541-9583f3462543.jpg -8834,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it1f858790-8e63-45b1-b7db-7d8e69611afb.jpg -8835,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it1f9a2699-4758-413b-b7a5-35196ab629af.jpg -8836,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it2051fe95-5039-4173-9d46-0c5937e42147.jpg -8837,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it21cdea44-02ae-432e-aa13-0163533b85cc.jpg -8838,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it23219be6-4386-465e-bdbc-c54c6edae0b0.jpg -8839,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it25e591ec-2f7a-4789-bfb6-1f55057602b4.jpg -8840,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it25f29248-896f-4d49-bd89-ffd47db7c214.jpg -8841,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it26207a2e-06d7-493a-a1cb-53260d33f157.jpg -8842,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it299b7078-249c-4643-ae2f-7b195fbe61a2.jpg -8843,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it374677b0-6294-4880-a8a2-1c964bce25f8.jpg -8844,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it39138e6d-c21c-493f-9f24-29d14cb48925.jpg -8845,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it3a57b98d-3a48-435c-9c98-202e0620ee56.jpg -8846,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it3a8dc77e-1857-4cc7-84de-bd02a00b93f3.jpg -8847,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it3c82cd79-d13a-433d-af4e-cfb325345ab4.jpg -8848,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it3e40a59a-73c5-4980-8acd-07641661cb23.jpg -8849,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it3e793aae-bbc8-4dff-b04b-de509c1ec736.jpg -8850,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it3f35a6a3-84ef-4089-af7f-07245fd2bb01.jpg -8851,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it42ad5f23-a104-48b7-8563-d6889da95cfb.jpg -8852,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it43b1a073-5cc4-4840-8681-c28607aa8976.jpg -8853,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it48fa22fa-21ee-4dd4-855f-d1c3200b4581.jpg -8854,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it4b67b762-7792-4f5b-b248-e60d6db119f4.jpg -8855,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it4dd1aa63-a480-4855-ba20-3f6a4ceb080a.jpg -8856,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it4f41e32a-6c90-419c-9d39-828167d3d8e7.jpg -8857,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it52241720-bf11-4914-bbb1-5e210a4eeb67.jpg -8858,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it53e4f6f7-e6bd-4193-af6e-4349e9834a5b.jpg -8859,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it57c159af-f95c-4162-b593-5551455a45f9.jpg -8860,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it583f2ec6-0c2e-43e6-beee-f5ef074955ab.jpg -8861,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it59080307-b2af-4c32-8bee-e3d9a2d7c060.jpg -8862,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it5e64b303-69b2-46e4-8ae0-6c89fb272280.jpg -8863,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it5f5b5158-aae6-4cb3-85d1-4fff35ebf043.jpg -8864,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it655b442e-32e3-47bf-b45d-02fb29e4f146.jpg -8865,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it67bdbbca-f37f-46d3-aaf7-c0d3cd61fe33.jpg -8866,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it68dcd25d-0dcc-46f1-b4ec-d1653ed1bf68.jpg -8867,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it6b78501c-f990-48c4-8f5b-685bdaa086c6.jpg -8868,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it6c6e0890-9c40-426a-8f41-3dc2a10a0462.jpg -8869,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it74f512ec-d47b-4d33-a679-8086c3b3a493.jpg -8870,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it78a66d15-2653-405c-8bb3-329c2b43079f.jpg -8871,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it7b2c0f6d-3223-47b7-b522-4b502ad1a662.jpg -8872,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it83e149e2-5b4b-48ba-a0fd-b8f2e1bb859e.jpg -8873,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it86315b27-6270-410b-9217-4526126933a7.jpg -8874,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it865e2719-aa71-422d-b8dc-3baf6210f2d4.jpg -8875,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it88ab07d7-fb89-4145-853f-3ee3ba6acc42.jpg -8876,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it8b7b9d5d-11f4-40af-8e16-e34b44fa3526.jpg -8877,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it8c41d0bf-ec77-4d72-8ece-05292c2f7f4f.jpg -8878,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it8cad1a3a-6d03-4991-b33d-57d0a12de91e.jpg -8879,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it98c4d79c-b5f1-4fa6-a967-b67c7f5f8fba.jpg -8880,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it993c1466-d828-47c9-bd46-119ec988e344.jpg -8881,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it9a14e2bc-0296-4a8b-a248-470a93973f91.jpg -8882,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it9da054ea-adc6-4f05-8210-32d65e5b2e1f.jpg -8883,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it9e6c9f77-b67c-477c-beff-556fb7a55f1b.jpg -8884,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_it9f5c971e-76c8-4dd8-a777-e6dbe56a8a28.jpg -8885,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ita05f220a-6dc0-4030-bc8b-d298d7965630.jpg -8886,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ita0c1d9f5-7264-4408-8e3f-f4de342fb6b1.jpg -8887,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ita38a2ab7-5925-4ef1-923b-469abd067f73.jpg -8888,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ita38cc3ad-4cbd-4b99-837f-43b66eace2ec.jpg -8889,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ita5136a7b-5c1d-4be4-9492-95b75c8381e9.jpg -8890,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itae4baeae-3a13-4c07-931c-781530b4d188.jpg -8891,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itaf69eb51-a1e5-42e9-893b-54f4abb3ed3e.jpg -8892,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itafa3a550-cb7a-41c1-b3b6-e4b6edd7d5e2.jpg -8893,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itb049da9d-2e73-4b5f-845e-4202885993a0.jpg -8894,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itb29ebbea-ecad-434b-bc96-c4ace254135b.jpg -8895,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itb4e7b608-3acf-4ba3-83ad-1dbfcd86e82d.jpg -8896,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itbd7d08ab-dd34-4f2d-b1a0-27f333cd19b8.jpg -8897,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itbeeb4728-faca-4fce-ad76-a93123cd39ea.jpg -8898,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itc32df376-5391-4e75-99d0-2615803c79f8.jpg -8899,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itc5cee23d-03da-40ae-bddf-f2834693d147.jpg -8900,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itc61fe4a3-e3ac-4e92-a25e-4872d6c69c11.jpg -8901,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itca638785-1f1f-4deb-8e35-db59ccca2e6a.jpg -8902,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itcabcae62-11b3-4f4d-ba0a-173ad1d00964.jpg -8903,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itce6f92f4-1fa7-47ab-a504-6fcedbbe6af5.jpg -8904,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itcfc6873c-7ea3-4daf-ba93-a56664a73132.jpg -8905,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itd2ef8178-abff-40da-bdb2-dd35919e65c7.jpg -8906,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itd3c80bc4-f2cd-4be4-ae9d-9c5052eab2d8.jpg -8907,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itd72621d9-d0a2-46b2-a9b5-5210cf144082.jpg -8908,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itdf2477e9-7eb3-4dca-94f2-367fdcffb1c3.jpg -8909,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itdffa355d-c676-45ea-a479-9371235eec6f.jpg -8910,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ite0188a09-925c-4ff8-87f6-1f26ccc4391b.jpg -8911,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ite0b451dd-1fdb-492b-b90c-0761031d77b3.jpg -8912,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ite13b09ce-4a01-4913-9c21-48293fde5447.jpg -8913,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ite6051a18-99c8-4d6f-bdd3-55c098d36c1f.jpg -8914,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_ite7ad99a5-d7d5-4ac4-8971-99104dc20e5c.jpg -8915,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_iteb31dc2a-7c43-480a-9301-a707e6e1438a.jpg -8916,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itecc132b6-0674-41dd-aac3-dc5223349531.jpg -8917,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itede7c24d-b6f8-48a5-8154-391daec4b6b3.jpg -8918,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itee4f3b7b-59bc-4055-a506-d8aa85753255.jpg -8919,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itf061cbc8-5b63-43ca-b300-b98bf31f78c3.jpg -8920,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itf462e422-4fec-4bd0-a34c-98766921e618.jpg -8921,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toilet_in_itfaf16f80-d025-4dd4-8193-bd985493c492.jpg -8922,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it001b9592-0d8e-456a-ac75-8907cdef93a0.jpg -8923,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it009118c7-feea-4ad8-8d3e-04ad98205866.jpg -8924,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it0172d049-cb53-42e5-bdc0-4f675115f0b1.jpg -8925,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it05c80e5d-4aa2-41c9-a3bd-ebd17d26daec.jpg -8926,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it0625d2ae-020e-4e10-9a79-793681981170.jpg -8927,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it0d94fafe-bac8-4e1d-9716-155ec293d4ec.jpg -8928,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it155259f5-0639-4786-8e76-fef4983a7ffc.jpg -8929,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it176d1e25-471f-424f-a40f-3fd98aed8abb.jpg -8930,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it186146ad-f2c6-479f-ae42-ad5bdc881547.jpg -8931,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it1cb95b1a-d12a-4d00-b180-4141c22c2a37.jpg -8932,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it1db8a925-d37a-4163-978f-417a1733a6dc.jpg -8933,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it1dfe6f32-caf9-4c70-ac36-7bff7657c933.jpg -8934,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it1e2fcd7a-2bb6-4842-8e18-9fd8ba574b8c.jpg -8935,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it20136250-68a2-46a3-b741-a4031da8b479.jpg -8936,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it23bfb9b0-a720-43b7-affc-64b811b3ae3a.jpg -8937,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it24be376d-ba7c-4a8e-9193-c1c173f8c80a.jpg -8938,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it252b5d0e-b93e-4c51-be3e-909c3e35c7a0.jpg -8939,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it2ad4cd6e-8569-4ac9-aad9-f7372c0abc58.jpg -8940,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it2b406a13-9f6b-49bb-9c17-6f836a0ce378.jpg -8941,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it2bd15dd0-feb6-48be-bda0-55e50f3b8dff.jpg -8942,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it2c6dc7e7-d679-4d90-ba67-20a74c223c73.jpg -8943,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it3005e368-2e7d-4148-b18c-4db504550af0.jpg -8944,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it342934ae-ad46-4bd1-b8d0-905a4bc5548b.jpg -8945,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it357607f3-3237-4d0e-9ac8-7f1584d401c5.jpg -8946,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it35f4f2e5-a5e9-46c7-bd97-d8739e8b29b6.jpg -8947,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it3672c8a6-30ac-4172-84b6-54c3169f8470.jpg -8948,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it38fef051-0f0e-4039-96f5-de731af51c8f.jpg -8949,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it3999101a-65f7-4da3-87c7-6475ece45f97.jpg -8950,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it3b4ae6fc-201b-42ed-b297-a9f64fa76e30.jpg -8951,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it3e1c5e32-8466-4652-a61a-b546582b19b5.jpg -8952,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it42879434-5ab4-40ad-8098-ce1e322c791b.jpg -8953,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it43b8acaf-632a-4eeb-867a-2390f58be436.jpg -8954,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it45a707b8-d2ee-4573-9ac1-3cf3648ec520.jpg -8955,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it475a78ec-80cd-445b-ab2c-1fc0efb73880.jpg -8956,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it49a68d3c-5863-43d7-9cc3-2fa83af8f471.jpg -8957,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it4ddab01f-81e7-42ae-b1c0-3b5583040524.jpg -8958,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it540955bb-733d-4bb8-917d-a19d8b3c0024.jpg -8959,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it5538d306-ff02-42ae-bdb9-1fda1bc6dcc1.jpg -8960,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it55e36bd2-eeb4-453d-80d3-11b296418696.jpg -8961,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it5a91b2b6-4ed8-483c-8822-638b2b0e7a27.jpg -8962,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it5b0db683-76c4-4c15-b67d-424c149d8e83.jpg -8963,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it5bbcb393-d780-42c0-906d-8083ecae0b88.jpg -8964,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it5c0bc562-a795-44aa-a128-4c2095e25735.jpg -8965,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it5fa9089b-5574-4820-b6f2-42ae3e8da372.jpg -8966,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it627176bc-b15f-4d4b-a605-9e6813517774.jpg -8967,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it673af901-8ab9-4cf6-850f-f96b4e182dd0.jpg -8968,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it68bfeb7f-d406-4dd8-a35b-7f7187b7be75.jpg -8969,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it700323a4-1273-42dd-b2b0-a96a83e0e936.jpg -8970,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it73cbc66f-342c-4508-8677-45f5110776d6.jpg -8971,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it74765b67-adc8-4c27-a4de-28a3dffdb294.jpg -8972,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it74bf8f8e-a40e-45c2-96c9-7319fb9b8a07.jpg -8973,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it774a3859-a3e8-423e-aba9-99d84a1ba8f3.jpg -8974,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it79d37d9a-f44c-4c90-9393-294559860127.jpg -8975,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it79faeb60-450c-4a77-8f43-87317315c71f.jpg -8976,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it7ce5278f-453d-4c68-a7ed-a4f12dea61f6.jpg -8977,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it7dda5ffd-144a-466c-948a-c52ee99de547.jpg -8978,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it7e16bf89-d971-4cbf-b0ab-2583cc715c86.jpg -8979,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it8424ee8a-38b2-4b6a-9fcb-c9a5aebdad0f.jpg -8980,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it8c0bb79a-d6a9-40da-9180-cfe6babcd392.jpg -8981,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it9074245c-4130-46f9-baba-518960352dbf.jpg -8982,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it91b77557-36c0-405e-b626-7a57155ae743.jpg -8983,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it95a792f4-753c-419a-a568-fb17af3045e4.jpg -8984,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it96e5bdde-9b4a-42fd-af5c-0b7142d64eea.jpg -8985,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it9a9c3c99-8f12-494e-926a-0067e92c5ded.jpg -8986,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_it9d090235-d3c6-4956-b407-e078aa9b4499.jpg -8987,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_ita4257fe3-554a-49dd-aca2-9395c8c87df7.jpg -8988,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_ita8a03e2d-0510-415c-9890-71455223f668.jpg -8989,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itaa15dca1-0624-4e66-a081-f27b8db2180a.jpg -8990,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itac43d965-3998-45d6-9571-0aebc6245a56.jpg -8991,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itafa35751-7960-4627-b93b-ca7dfb82c580.jpg -8992,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itb1d716ae-b152-4e8c-8e06-00a107e6f3d0.jpg -8993,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itb330a407-42a3-41ac-8c13-e1a948ea998b.jpg -8994,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itb5b955c5-f5c2-469a-a242-2c8f88d8aefb.jpg -8995,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itbc7da371-5286-4909-b421-543b9ce10604.jpg -8996,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itc1738496-3244-49c3-881b-d57c6b2d19ca.jpg -8997,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itc201bcfc-71a4-4d04-aab2-8c2c6d4f48c9.jpg -8998,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itc2b8ae46-27ec-4b01-8a28-63433fd59b1a.jpg -8999,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itc69e696b-8993-4f0c-b422-196433a90dd0.jpg -9000,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itc8f2d980-d105-46c4-bdd4-7dffdb02cc5e.jpg -9001,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itc9221f05-7cf4-4f7d-bf1d-8db28a5b673a.jpg -9002,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itcc38f2f6-89d2-4293-8eaa-e67c3089b816.jpg -9003,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itce305508-52de-427d-a094-d2dbf152cbfb.jpg -9004,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itd4508ef3-7851-49ab-b356-01b49acf5c8b.jpg -9005,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itd78d247e-1fa0-4bd4-9eaa-fdf08f0e6cd5.jpg -9006,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itdb454aaf-e348-4b2e-9f8c-18f44b260431.jpg -9007,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itdcc40feb-f108-4b98-92e5-037279aec2a6.jpg -9008,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itdec2eccb-353c-4e44-99fb-28a93caca737.jpg -9009,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itdffdb721-d9ec-4974-8552-5dcd59aecbd9.jpg -9010,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_ite50641fc-17c4-4318-86c5-b7ccd693895b.jpg -9011,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_ite83911db-e6ea-408b-bff5-eb7bb1e1f4b8.jpg -9012,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_iteabdecfc-e8e1-47af-b5c8-1892065470ca.jpg -9013,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_iteb134de2-08c1-48b0-8723-ab134d58e722.jpg -9014,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itec02ea18-d783-4421-9a7f-2839f684cb8c.jpg -9015,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itf1988248-46be-4884-b205-d69b0fc8dd30.jpg -9016,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itf1cd25e1-a2a6-4ed8-8e75-7ce424efb903.jpg -9017,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itf325608b-e545-44a0-ae66-92f882f16f55.jpg -9018,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itf6da993b-97d4-4cfe-9823-3963dfd48115.jpg -9019,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itf73b3e14-6259-44b9-86f4-b6e21bf76783.jpg -9020,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itfaeabf64-3dbd-44d2-bee2-e3e27e163fbb.jpg -9021,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_toothbrush_in_itfb8ed773-6370-4f74-9889-7dd3759725b8.jpg -9022,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it01c3343a-7dae-4fa2-83f0-cc360228dcdd.jpg -9023,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it0e76c645-7137-466a-92c2-251645a3ea4b.jpg -9024,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it0fa21421-f4ff-40f6-9819-7ea49faaca32.jpg -9025,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it10cbcdf6-08b1-4ff5-b4b0-640b283dd224.jpg -9026,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it10ed1f96-5a23-477f-a2b5-0b9df1883a73.jpg -9027,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it113f6e27-59bb-40b7-9a9a-6a92bcd4927e.jpg -9028,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it12c1209c-36ae-4baf-932c-f449c3d538e8.jpg -9029,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it15c24e24-fa0d-46d7-aa04-197096859485.jpg -9030,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it15f48e7e-4ff9-4bb1-8a80-468fc092eeab.jpg -9031,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it166c6fca-bd1e-4302-a9da-7ae176b68487.jpg -9032,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it18bc051f-1adc-4db6-917e-832292de9149.jpg -9033,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it1d496994-b22c-4ac3-983f-ef2755a01041.jpg -9034,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it2138651f-f374-4cb0-a147-4454abd21be4.jpg -9035,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it26189f7f-ec03-477b-9a29-cf98ecdee3d1.jpg -9036,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it27107c87-3cc5-47a4-b2e2-9d4127efd88d.jpg -9037,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it2b1b8ebe-52aa-4215-a3af-0e165dd32687.jpg -9038,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it2ecb412e-1966-4770-aef7-f9b9efb108ca.jpg -9039,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it319f454d-bff1-40ed-a8b2-b2cbf63ef7e0.jpg -9040,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it32b5393a-bf89-4253-a3e2-e791af5cc6c9.jpg -9041,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it33838075-6ef7-4d7c-a4e0-2237a8ce1028.jpg -9042,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it3776fe7e-ab3c-401b-afe7-9d1e8325f660.jpg -9043,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it37d232f4-982a-4014-9c01-a500a4cf37b2.jpg -9044,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it3c12f9b7-db6d-4c40-b087-0a901cc91e92.jpg -9045,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it3c3bf268-aa20-4797-b05e-9537f9d6a0c2.jpg -9046,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it3ee977fc-d774-4aee-b5aa-235a4fc5daf9.jpg -9047,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it40d471b2-aa53-4956-97d5-0ab6c4b11804.jpg -9048,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it499780e8-89fb-4c9e-9d9d-bf305cf042f4.jpg -9049,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it4c10fbac-c184-4207-bbfb-17d483d4ee04.jpg -9050,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it4d8ba64c-3a90-48cd-ae76-b6a5c67b1065.jpg -9051,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it4f6cf4fe-b765-4e33-9a70-7f36d49b6224.jpg -9052,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it5051f3ba-a92c-4e32-b5ca-5b7307e1b466.jpg -9053,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it5bf078fa-e106-404a-949d-f43750105f63.jpg -9054,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it608a9d09-e5eb-48a6-923b-2955747f0e27.jpg -9055,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it63e4d391-042e-4ec4-85fd-d95d6c3b6ff2.jpg -9056,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it63f703ce-2e21-499c-be4b-55c5ebbc5d1a.jpg -9057,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it64411118-7e28-49ef-a93f-efe6e3a4d466.jpg -9058,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it669c75de-c5c2-42f1-9f56-4ea6924d23af.jpg -9059,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it6982d751-12bc-4b5e-9bf3-78d3d64ceac4.jpg -9060,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it6a4fb768-a3ab-472f-95a1-4d2e1cb53970.jpg -9061,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it6a853b2f-38ae-455e-85bb-6dddd68f1016.jpg -9062,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it6e220be4-071e-4900-9581-2d5180801a7c.jpg -9063,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it7058be4e-7068-475c-9390-b83706d615c9.jpg -9064,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it70768b6c-1286-4332-b111-aaf288df5c5e.jpg -9065,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it72c5d073-0aff-40b5-a4f3-981625aae55b.jpg -9066,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it72dd8122-bc2f-47ee-b577-c3fb51dac7c3.jpg -9067,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it750d5cc9-9937-48cc-8924-6973926af90b.jpg -9068,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it7929b1b1-981d-41ee-be05-60cd0dfaba0a.jpg -9069,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it7a24f5f9-2416-4b49-bc46-26df840dc8d6.jpg -9070,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it7acbf84c-a3e9-4878-b1bf-3ac8d32ec224.jpg -9071,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it81601e74-4115-42fb-aa2e-5c1c7a09e302.jpg -9072,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it836a25e6-d35c-417f-a7e3-6cd5ea3a6ac2.jpg -9073,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it838d1543-9df6-46aa-9414-f2af8c28eb87.jpg -9074,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it88964836-f781-4d72-ac9b-ebb0f0fa89aa.jpg -9075,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it8b28e058-064b-4af3-a933-3d3c8612e856.jpg -9076,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it8b2b0d84-82ec-4f30-a226-1e4665865212.jpg -9077,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it8c1e9ae9-9bad-4380-a46b-0cf649df62ac.jpg -9078,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it8da8fdc4-d920-4fff-b288-3353a198003f.jpg -9079,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it8dc00546-d07c-4110-8a63-9477ea094bad.jpg -9080,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it90fc3eca-ec88-4a14-8b00-27ddb6774ba0.jpg -9081,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it9177e558-013c-4653-ac6e-c3ca44441aa1.jpg -9082,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it9af04273-4527-4b59-b991-b69b110c9614.jpg -9083,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it9c3674f9-e800-4478-8d28-f8ed1d60e6cd.jpg -9084,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it9f434c05-3e47-4593-b05d-1af26e14d57a.jpg -9085,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_it9ff73152-76d9-439f-9a13-46cabc405b93.jpg -9086,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_ita3b10705-b73d-43bf-8d73-b8bbeea802e5.jpg -9087,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itab6bb98f-3f58-4449-97ba-7be3e8e65910.jpg -9088,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itacd0f636-28af-4859-a43b-93094a0384eb.jpg -9089,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itaead72dd-c0c0-41e4-9b3a-e95b997e55d0.jpg -9090,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itb0f85a4a-34de-4fa0-ab2e-254d6b439c8a.jpg -9091,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itb1eebc77-c6d6-4c10-92cc-57f156096b42.jpg -9092,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itb9cd5e4a-db29-4841-8bc5-02ad3cbc42d6.jpg -9093,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itc1d4b693-6670-4232-ad90-75fe9400eab2.jpg -9094,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itc7a6a1ed-22fc-493d-a4ce-8b95f553b3dc.jpg -9095,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itca9d357a-c201-4290-8a13-36f42671fe2c.jpg -9096,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itcd08baaa-6043-4211-add9-ffcb3a06eb70.jpg -9097,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itce83a66d-7c77-42b9-a85f-ebe2fe5785e3.jpg -9098,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itcf281017-31c2-447e-9a4e-14706ab56940.jpg -9099,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itd124fc94-0ebd-4a97-9bfa-6528a61b0ade.jpg -9100,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itd24b409d-bac9-4ac2-95ea-ad08ef3e74b6.jpg -9101,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itd6a7323b-faf0-40cd-82c8-fceee4a4cfa9.jpg -9102,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itd9ab582f-a095-4076-86ce-13a06cf5bcf9.jpg -9103,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itda57963d-8f6b-4a34-8b55-e8f32eeaf529.jpg -9104,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itdd5575a6-a5b4-4636-95b0-fd715e3164e0.jpg -9105,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_ite09d629b-2330-4496-8fac-9117200ff581.jpg -9106,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_ite15966c2-b5fc-45b5-9ad8-0d8d114ff685.jpg -9107,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_ite2b5e6cd-ff7c-4573-b2ef-ff9d96e36d28.jpg -9108,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_ite659e61c-cfa9-47f6-9fae-ac4e57dc81b4.jpg -9109,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_ite696386d-72b7-4746-af5a-e57eba5fe266.jpg -9110,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_ite8fe6a7f-54a2-43ec-a9de-6d5a69bc5158.jpg -9111,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_iteab667b1-ce72-4c0c-bb0f-584c9deaa3ab.jpg -9112,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itecf6117c-57cd-4e25-b3d3-7c7f5fc29926.jpg -9113,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itf14b6f5e-8c88-433a-8ad4-6932bc11024c.jpg -9114,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itf1ceee12-4393-4180-8850-590bc6e254ed.jpg -9115,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itf2c10c2b-13c2-4929-a4e5-abacaff523ba.jpg -9116,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itf4cc2aee-048f-494a-a9a5-d41a541a4da1.jpg -9117,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itf4f1ffaa-0a15-4f0d-a1ca-ed659dc0b2ea.jpg -9118,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itf6f61c2a-d9b3-4144-885a-6e078a577cf0.jpg -9119,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itf7470b5e-2b97-4e86-9d23-7f82c43d9891.jpg -9120,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itfcee09be-616d-4a88-9d92-7411b972df4c.jpg -9121,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_traffic_light_in_itff736a5b-c4a6-46ca-bc7f-8fb5995619f2.jpg -9122,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it01a5e3be-90d8-4fad-a847-5a46c213aa0b.jpg -9123,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it029755cb-56ff-4458-9b96-ca8c9e5a537f.jpg -9124,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it04fa1de5-3cf1-4df1-9955-eb844add57e5.jpg -9125,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it062decdf-bfce-4cf0-8c74-ad6f61a855f4.jpg -9126,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it079c2bf1-5635-44d6-a676-2f20542714ac.jpg -9127,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it098c78eb-d9aa-48af-bb8e-e2eebd357d6f.jpg -9128,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it0c6fdc4c-e6a8-4687-b779-17555ec37823.jpg -9129,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it0d636eb5-f476-416a-96a0-39841fe058fe.jpg -9130,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it0e8cdea0-ba00-4322-95c8-7f778cbe01bc.jpg -9131,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it0f532892-56ef-462b-bf24-62d180346940.jpg -9132,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it13822807-fd3f-4e6f-b1fe-13bfb26b3627.jpg -9133,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it14d5ad8d-eeab-4a59-93bd-b11541344d3b.jpg -9134,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it19279069-b17b-4274-8244-65f033344279.jpg -9135,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it19a42728-56c0-47ea-a060-f9f1826f0ad0.jpg -9136,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it1a334733-e40e-4eb5-877d-ed35d085285a.jpg -9137,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it1c8811dc-503d-4121-80f0-cd8efe2ba6ea.jpg -9138,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it203f1b8e-bb4d-4beb-aefc-006cedcbbab4.jpg -9139,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it2383b777-cec4-4f62-84c1-a4db7c81e861.jpg -9140,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it277381cd-bb1c-40b9-af7a-2b06e8be2305.jpg -9141,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it2a109940-1250-4e96-95a2-7bf0ca1d8b23.jpg -9142,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it2d731592-8464-46a0-ad75-02812d0c109f.jpg -9143,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it2effd98f-a834-46ba-a762-061fb54391ed.jpg -9144,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it2ff299ee-b95f-4085-9e79-0420e9409d40.jpg -9145,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it318769d9-ee0d-4d83-8ca1-e21201d51bdd.jpg -9146,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it320bf53b-556c-4f9b-aab8-573515a07c95.jpg -9147,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it35fcbcfa-9601-4337-832b-dea7e5ece73c.jpg -9148,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it3c36db38-f604-418a-a770-8ad3ac222cda.jpg -9149,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it3ed3b376-ef2f-4280-b139-9b136525175d.jpg -9150,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it3fdad45d-2cdd-4592-b983-f7656719b080.jpg -9151,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it41b3c4c4-285f-4576-9645-5b3690f4b0db.jpg -9152,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it44f57b31-5eb5-42e7-87d3-712c3b5749c9.jpg -9153,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it4664f1b4-3ec7-42cb-b7a5-43a239194520.jpg -9154,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it48f0af01-484b-489a-b552-4704a4b49228.jpg -9155,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it4aae7129-174d-482a-a3f8-a2dd0bb79b91.jpg -9156,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it55372a46-a0e9-4522-abd8-e4beb4a4ccaf.jpg -9157,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it582079e0-d049-4e3f-b97b-347603e92f05.jpg -9158,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it592c3451-165c-4211-9bd6-e82ee5e6e89b.jpg -9159,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it5c2c1f75-0c18-4421-af1d-6b99f827bfb8.jpg -9160,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it5caab79e-d597-431e-8cbf-cf0ddbdef036.jpg -9161,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it64225313-ab90-49e2-a6d9-eb5d6ce9098a.jpg -9162,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it6a98e706-2504-4981-bc3e-816d89154819.jpg -9163,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it6b10010d-354c-4ceb-8293-a7712cbfd20b.jpg -9164,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it6b14cd61-ec27-4534-9ecf-a6169eee4c71.jpg -9165,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it6b49e57c-6f0a-451c-a23c-fad1a2e4a1f0.jpg -9166,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it6bf721e9-021d-499d-bf11-7bba5667f7fc.jpg -9167,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it6de34df6-096d-4817-be5a-52984adf4690.jpg -9168,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it705d7ac7-30df-473e-82c1-f83fe80f8596.jpg -9169,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it726abaaf-b019-4199-986a-625da822b4b8.jpg -9170,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it741a1018-04cb-4182-9952-45eb04b00a73.jpg -9171,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it7b5fa870-dbd6-495e-9ab1-735ef50818c4.jpg -9172,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it7bf26c4f-87ca-4dd7-aaf6-ef80db361325.jpg -9173,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it7cc9aa08-c3db-4361-9bc3-0ace2ba184c2.jpg -9174,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it81b89cca-2420-4f2a-a5f8-42f7178bdb6d.jpg -9175,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it85002724-5af8-4cfa-99a6-b4c3c8113b12.jpg -9176,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it8589d60b-0501-4ae9-8feb-583e93f4e9b6.jpg -9177,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it89e57a47-9405-45f1-9bb2-3490200ccf9a.jpg -9178,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it8a1c2b96-02f1-4ab1-be17-2064e9f86dc0.jpg -9179,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it8be1a2d1-e23c-4296-8f90-1ba5a2276098.jpg -9180,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it8d5dc1b2-e575-42f9-bdae-24a53794677c.jpg -9181,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it93daf30a-cc74-4393-8975-0a5d2b3c9c31.jpg -9182,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it9a2869f6-2494-4cfd-9783-a8d981778137.jpg -9183,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_it9f33647b-9cc4-4ec6-9144-af942284c012.jpg -9184,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ita01aece2-770b-4ed9-870f-86036adc8ce2.jpg -9185,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ita1065cca-ad36-4ba7-9d98-fe8e1e5328cd.jpg -9186,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ita3801c19-a68c-4eba-90f4-5ca80318c8cd.jpg -9187,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ita6f63efa-808c-4117-8d11-3fc780a37852.jpg -9188,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ita78fad4d-39ac-4602-bfdd-2e4cd8998a34.jpg -9189,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itab2eaa46-5f30-4b1a-bca4-81efbd184648.jpg -9190,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itafad8375-ae93-4225-874c-de45c5c4e71d.jpg -9191,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itb1ec6535-2a9e-415c-b3f3-65129570596f.jpg -9192,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itb661c712-9f1e-4564-b5f1-f544e53fc93c.jpg -9193,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itb9aeef2b-4234-4dd8-90f6-d74418c10961.jpg -9194,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itbdfb85ed-6d91-4223-acb7-99824cd044e5.jpg -9195,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itbe225ea8-67e5-471e-81ea-dd1521ca1723.jpg -9196,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itc03cc927-2aae-4441-b0a3-af841c74929a.jpg -9197,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itc2f7fab5-a6a9-43f4-bb7c-48ba8407c931.jpg -9198,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itc3b063a4-8ca8-4cbb-895c-31f223cd29c3.jpg -9199,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itc645127f-ccdf-46b9-9e61-079ee39f9858.jpg -9200,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itc6e40662-440a-495b-a6cd-e57637c2430c.jpg -9201,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itc75f4d90-09f2-4dcf-8031-8734040c802a.jpg -9202,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itc8a91614-f7fa-4122-9caa-b48e6b40acb3.jpg -9203,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itc8dd9923-a60d-467f-a822-90bd36f61bcb.jpg -9204,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itcc5c605b-7d2d-4daf-a4b5-03dcf3a9bf48.jpg -9205,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itd1644b60-d253-4e49-bfe3-c7e47bd17b6b.jpg -9206,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itd37e1c7a-5697-4c74-a2d4-117fc471f74c.jpg -9207,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itd5715554-a662-4ede-80bd-b5ff47cd6dbd.jpg -9208,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itdac222b7-a8c9-4378-9b01-2f793178543d.jpg -9209,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itdf7855ca-7b7a-417c-a166-9b2151a4b485.jpg -9210,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ite06a8c26-0ec7-41fd-a7a4-9a2e97db1aa4.jpg -9211,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ite0906d67-5e31-4d8a-ac07-1db90ea0bd2e.jpg -9212,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itea49cfa0-da4c-41a1-812b-2ab53873be03.jpg -9213,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itec9272d2-7a92-47dd-bd39-84c112f2e84f.jpg -9214,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ited7c0467-1f48-4a71-8a91-ac51427dba86.jpg -9215,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_ited86b45e-7045-4137-9826-cb51975daa30.jpg -9216,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itf107059d-3cd2-4ad2-9822-6a281fce828a.jpg -9217,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itf1167487-2823-436e-a0a9-848d2b781882.jpg -9218,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itf388e2e8-da04-4817-a300-37b32852cea5.jpg -9219,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itf39eee59-3b20-4f77-b824-7e55400a55f5.jpg -9220,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itf956cc9b-029a-4899-9211-298510e307e6.jpg -9221,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itff26ca90-b9c0-4981-bc62-7aabd8d07f55.jpg -9222,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_train_in_itff2dc77d-d44f-41e4-ae32-e283ef831d93.jpg -9223,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it00020232-38ac-423b-bb2f-8638a1c82ccd.jpg -9224,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it085eaf4c-ca0e-4ceb-a440-cc56e83997f5.jpg -9225,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it09347403-78e6-48c4-84c3-6395174452f6.jpg -9226,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it0ac0d0e3-1536-4035-8c85-0c75c6e7bffd.jpg -9227,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it1580f5fd-3611-45b3-b152-47b35e7f7655.jpg -9228,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it1603c2ab-8695-4075-9273-c20fa4255fa8.jpg -9229,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it1ae768e3-1549-41b7-b346-fda8e1df08c5.jpg -9230,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it1c9b3960-b7c4-48d1-abc5-398590eb2224.jpg -9231,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it1cdfb511-f8f4-4ad0-8345-95c2334b1ede.jpg -9232,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it22e24157-a938-46e9-92e2-508c9d23a4a1.jpg -9233,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it26a25dc7-c662-4e38-b645-212ba6552597.jpg -9234,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it299bec4d-418e-4f5f-9ff4-49936b1b668b.jpg -9235,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it29e0a982-0b9f-4715-b680-0372ea7bfcf0.jpg -9236,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it2baf50a8-2994-412c-84b9-c1b299ede9cb.jpg -9237,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it2be3114d-60d6-40e3-969c-3e2a91558576.jpg -9238,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it2be84a63-7a90-41ba-b0fe-245690648f08.jpg -9239,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it2c7f6da5-ef7c-4039-a54e-802a01732b30.jpg -9240,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it2ca3c2d0-4c1f-4055-8c48-ff3a1a28a864.jpg -9241,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it36036f62-4cf4-4009-a4aa-e9eca27b5a37.jpg -9242,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it366f95fd-9dc3-446a-a662-e59204877e5d.jpg -9243,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it37b31d7a-2c6c-4eef-9efb-85f268468137.jpg -9244,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it3ac91920-8ee6-4fb8-a816-e4aa8f26a305.jpg -9245,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it3ae79992-636d-4aa7-88b3-b5a673a934dc.jpg -9246,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it3b844991-3824-474b-bae7-86dda79150bd.jpg -9247,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it3b861e7f-f840-47bc-ba06-aeccb16c9412.jpg -9248,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it3c568575-ec84-4cff-b995-2b37e18bee2b.jpg -9249,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it3f9273c0-8034-40df-9efc-09494bcbdf5f.jpg -9250,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it4330452d-6271-4178-b4fc-706caeb79d89.jpg -9251,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it447d43d7-1c9f-4ac2-ac51-a142ac330f2c.jpg -9252,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it44cefdf2-1252-49cb-a184-ebcc6a468e06.jpg -9253,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it4924fbb3-166a-46ac-b02c-05a543d30a92.jpg -9254,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it4aaf79f4-4ef0-4a95-a808-7b08d4cb17b6.jpg -9255,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it4b0ff528-a865-4189-829d-e0f32e768160.jpg -9256,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it4c41cf82-5111-4922-ad38-116961fb4f18.jpg -9257,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it51880603-39a1-4391-af47-0f1e7a21863b.jpg -9258,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it55ab8718-d1a7-4bad-9485-6b59a53593ab.jpg -9259,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it588fc0a9-7886-4400-9389-06de1fc4359e.jpg -9260,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it5951b052-0b72-4dfb-bc8f-1cefaf02767f.jpg -9261,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it5a3025b4-553e-46a1-a414-16324fe2f0f3.jpg -9262,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it5a76520f-5ecb-415c-8c06-2ec24b040fda.jpg -9263,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it5f056141-8158-4bb8-91ff-ff4d2ee874fc.jpg -9264,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it640d35f0-b43c-4b44-a036-66dea904cd20.jpg -9265,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it680497fc-2ab6-4177-8f6e-f41af5f166af.jpg -9266,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it683fd861-4991-49f3-a5b9-a32cdfc0aaf1.jpg -9267,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it6c82cdda-d704-4acf-a119-77a92daa1b83.jpg -9268,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it6cf68bba-5031-44fd-93a3-3435d6cd31f2.jpg -9269,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it6d77090a-f58f-4415-bf09-7392a8091a7e.jpg -9270,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it7012a9fc-ac86-4029-9b57-3bdcfe066770.jpg -9271,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it71a85387-25cd-46fc-b3f9-2cced579c22b.jpg -9272,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it72421c04-2af7-48cf-8582-7cb49a810e89.jpg -9273,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it76e4eeba-9490-4fe3-b597-73dec04e2703.jpg -9274,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it77cf4522-e2fa-485c-8e77-c019575c03c6.jpg -9275,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it79043e78-8ef5-4a07-be95-7fac66bfde58.jpg -9276,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it7c35beff-8adf-4d80-8602-0d7e3129ea68.jpg -9277,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it7c41b594-c251-47dc-a16a-1b4002f1a876.jpg -9278,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it801f4b05-d7bf-428a-a90f-da9bab0644e7.jpg -9279,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it80478d3d-7984-4e0c-ab24-36442a496e1d.jpg -9280,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it88b02c87-4104-47a1-8a60-bd8a19120ddc.jpg -9281,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it8ab05cac-169a-4632-baca-59026b321f69.jpg -9282,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it909f9aec-f7b0-4950-ba89-160c12f9e970.jpg -9283,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_it9245cee1-4a30-4032-b3a8-2dcc7aa847d1.jpg -9284,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ita0347d14-36fc-41c7-ad65-9b93adde9113.jpg -9285,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ita2437900-3ce3-4742-9a5b-7e5c73fe4e80.jpg -9286,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ita2825f03-7ec4-4846-a92b-1c6e3cc9087f.jpg -9287,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ita44b2718-5382-4860-9bbf-98b6f63a8412.jpg -9288,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ita4bd911e-8df7-4d2a-9517-100c3aed973b.jpg -9289,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ita733aba4-4a21-420f-8199-4605cd653971.jpg -9290,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itaaf922ca-ce21-44f2-b8f6-938f5003d762.jpg -9291,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itab97efcb-0d57-4439-b91f-df452e0d2ab1.jpg -9292,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itb262d169-9e2b-4194-ad63-5b05c399980d.jpg -9293,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itb3630b97-0509-4908-a76d-03b514a5499c.jpg -9294,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itb49bc6d6-b0a5-4e44-8b4b-e777ed1df6ed.jpg -9295,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itb6223c7f-594d-4d9c-9253-67113e03ec13.jpg -9296,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itbd026559-22ef-4e72-830e-6f09dd86d03d.jpg -9297,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itbd913b74-e6ba-4aba-b7fe-2a8568475e25.jpg -9298,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itc0b57f2a-1fb9-4e3a-887c-891d5a020892.jpg -9299,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itc13a9540-31b6-4d6e-a95b-8d9b8f3a55fe.jpg -9300,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itc3ab8dc7-2f7d-4137-aa60-477492a397f6.jpg -9301,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itc4ca63e7-795c-486d-9a77-1c37621b6056.jpg -9302,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itc8662222-03a7-41d3-8f07-8f67a3922c31.jpg -9303,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itcc27e134-23ca-46e6-9ef7-036d85b6087d.jpg -9304,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itccc0ad23-41e4-4835-963d-058bee99b28c.jpg -9305,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itcdae0fd5-a8e1-4d2c-9c15-471b7a71a071.jpg -9306,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itcde0f36d-2fab-4031-89a8-b1045e46b258.jpg -9307,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itd17013bd-9a0a-4c52-8233-0737502ae56d.jpg -9308,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itd21548dc-47a0-42aa-af73-73cfbd063136.jpg -9309,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itd2bb4495-2265-49bc-95de-18f2b427399c.jpg -9310,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itd5c43667-278b-484d-beb3-03179f555a48.jpg -9311,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ite08d7b00-9631-4af7-89d5-32d7aef8b5ac.jpg -9312,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ite3f3fb4b-69b5-41ce-b522-4b5ab0b50fc9.jpg -9313,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ite68e4e1b-9de2-483b-9ed3-6fa4e7226cbd.jpg -9314,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ite6c37f69-98ac-4d46-a14c-681464517a3e.jpg -9315,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_ite6d23d1b-16c4-4de4-b32e-b5e15bbbd241.jpg -9316,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_iteae1c7c8-f7f9-4c8d-8b38-3961b416a6e6.jpg -9317,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_iteb8ac43c-afa9-4d94-81d8-a7bbe879a16a.jpg -9318,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itf0a99f52-f6c2-4ef9-97c4-d772006e6e49.jpg -9319,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itf0ed1bd4-ab65-4a3c-83e2-ac815b8f399f.jpg -9320,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itfbc8f98a-10d5-492e-809c-10be6be4c71a.jpg -9321,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itfd95b9cc-cf83-46c2-af4e-02a66abb5f65.jpg -9322,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itfe36538a-9eca-4372-a605-2d2ee1962efa.jpg -9323,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_truck_in_itffad6d3b-bc6f-4400-93f3-d5e56774b6e5.jpg -9324,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it047cd1fa-4c2e-467d-9e3e-0b1a59c4fdb7.jpg -9325,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it0cc2b4c5-ccc8-43c0-972e-fb5dbf1a3291.jpg -9326,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it0dc80ddb-87d5-4231-8dd9-7364bfa7ad7b.jpg -9327,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it1224c5ec-f18c-4b70-b4cf-ed7f2c3db341.jpg -9328,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it1251cc29-ae6e-4297-b047-2bda908675bd.jpg -9329,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it1772d112-1022-42ef-8353-bd2812c037d0.jpg -9330,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it17c6273f-8239-4920-a192-a24c52e26a2a.jpg -9331,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it1879eaba-9d31-4c1f-9319-87e42f6ad1ad.jpg -9332,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it1a5c200a-31be-42b4-b4ff-b546c9318adb.jpg -9333,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it208b319c-4d86-4887-911c-ded4be7d2dda.jpg -9334,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it209cbcf5-5a26-4bf6-99a0-33439b84cb89.jpg -9335,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it20ddc710-a13b-4c26-85e4-472bd6a87f1b.jpg -9336,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it2a37e552-d0bc-45ed-b368-f1282f13ed0d.jpg -9337,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it2dad6f9f-1a55-44c5-a459-9fdfcd4aeb39.jpg -9338,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it2fa4f5ed-7fee-44fa-9803-fac08d74beab.jpg -9339,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it33d9fe81-3b76-4341-bdd1-8eeaad35efb0.jpg -9340,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it34edbc91-a5bc-4d9e-bd14-020876a58906.jpg -9341,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it35a2b001-d914-4ba3-b6c7-d867bfeb980c.jpg -9342,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it35c75dd2-bbc9-44ab-906e-79f414951e7a.jpg -9343,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it37c6a87e-db94-44ad-9781-69de89bc61e0.jpg -9344,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it3f1b7c17-5705-4c73-8c3d-ea1cf696be93.jpg -9345,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it441de6a3-6233-475c-8602-83f39653a6a2.jpg -9346,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it4481352a-3492-4dd8-b831-ca2702c98686.jpg -9347,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it482d7269-65ac-4182-b1f9-fcf58935128d.jpg -9348,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it487dd18c-ae13-4140-8428-4bb29e5f4d7f.jpg -9349,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it4914ad01-7631-4a04-a98a-af701644d0ae.jpg -9350,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it4b416553-ab18-4c78-9f30-02b26b856647.jpg -9351,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it4c7c3b14-0ee5-4c5c-8448-f01b88e3cd2c.jpg -9352,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it4d73c229-c14e-44e0-8f2a-627c33c59ba4.jpg -9353,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it4e35132a-4c8a-4741-ac75-ece7178f86fc.jpg -9354,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it51e9bc4a-70d3-4c2d-a8bf-a6cd203044fa.jpg -9355,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it5c4bff0a-06ed-4042-9763-6b01d600cc6b.jpg -9356,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it5ebc518b-52d8-4e99-899e-4a1b79482f1a.jpg -9357,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it5f1d4f92-d667-44c9-bcf6-1bdb13bd509d.jpg -9358,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it5fe245fe-5f96-4f25-af03-4cebeb51145e.jpg -9359,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it607de3ef-8bb5-46f8-8697-f6dcda79bfbf.jpg -9360,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it67e6a820-1c53-4ae3-a639-35d24e076caa.jpg -9361,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it6bbf4c09-469d-4abe-957a-ee5cec197d37.jpg -9362,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it6bcd8bba-b7e7-4dd5-afd7-cbef8b706e29.jpg -9363,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it6bec103a-26f0-4ab1-929f-a4962102dc95.jpg -9364,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it6caa8526-7b1b-4ebb-a3e4-de33da786826.jpg -9365,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it6f519d7c-c7f4-43bf-af0e-445254f1ea2b.jpg -9366,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it708a6c9a-cf37-4447-839f-f6b43e6a9345.jpg -9367,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it7272c1ce-4da7-43cf-b63e-24a87416ba54.jpg -9368,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it741a1b26-be06-4721-a773-42067fc4abe6.jpg -9369,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it743095e7-7620-46d3-a466-f5e75149c0c3.jpg -9370,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it7c935c23-8319-4621-83e2-fca58338fc47.jpg -9371,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it7fc9089c-933a-4564-8524-c5c0081f1e6e.jpg -9372,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it85e59bf6-6051-4d40-aa07-4a7d1c47ff62.jpg -9373,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it86120bdd-1e18-4aca-a1b6-f49eab19df7c.jpg -9374,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it86a68ec7-6e6c-454f-b3f5-aee2b0fd48a0.jpg -9375,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it86bbbc20-cceb-45d9-bc41-cde5c6c7dfd7.jpg -9376,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it86e2c82c-2e52-45f8-8093-a2c4ac242d14.jpg -9377,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it8a6e7447-a269-49f7-b9e4-8decfe27f3a9.jpg -9378,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it8b3c5139-efc5-4841-ad11-ffe7f428cf1b.jpg -9379,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it8bf01119-8016-44d5-9265-5af2c5b2fad7.jpg -9380,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it950c5008-d26c-4184-9cd4-269af0b5915b.jpg -9381,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it95ff6d00-2e72-44d2-a090-e9ac65147003.jpg -9382,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it9682ede6-c905-42ad-b32c-c9d90f0e0765.jpg -9383,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it97173674-4c14-4f84-beb0-f682c5bf1bad.jpg -9384,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it9784d020-2bfa-422d-a52d-4546c8e2046b.jpg -9385,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it99120180-9542-4e30-887b-e31702356da7.jpg -9386,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it9a0943d7-6d9a-4bf7-9d9d-88af006e7e5b.jpg -9387,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_it9d5c995d-fbdb-47a4-9729-88ffdaa129a4.jpg -9388,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_ita16fa68e-e8f4-41ec-80a9-cf097f864708.jpg -9389,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_ita33455d7-ef35-43ab-beaf-2463496699c5.jpg -9390,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_ita69f2a6b-1ac7-4287-bb30-47798dae5009.jpg -9391,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itb26c1af0-dd7e-487e-91e3-22af0c0ee2b1.jpg -9392,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itb45dad03-3538-4aed-b542-3eff13a5f36e.jpg -9393,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itb4f3be43-7df3-49d5-a80e-1cc4570f44b1.jpg -9394,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itb547385d-0023-491a-b465-88fef376189d.jpg -9395,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itb66ec9b1-ad3e-47e5-99a1-8afde5a8ca2f.jpg -9396,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itbd4d37df-8475-4d17-8fe6-ee81a056d8da.jpg -9397,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itbe94c157-bd00-45ed-8b6e-d0ede10c1f36.jpg -9398,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itc0fdddef-c8dd-4f4b-8f22-07e50206e91a.jpg -9399,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itc1cf4333-91fb-4bfb-8421-3c502dfed3b7.jpg -9400,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itc7650761-b07f-44b4-b384-7e3b382dc090.jpg -9401,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itcb08473d-8398-437e-9167-890a4f8e5e03.jpg -9402,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itcec57058-f9bf-42fa-b752-9ef1877ee054.jpg -9403,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itcfe2f43b-fbb7-4e8b-9798-ba314442ae4b.jpg -9404,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itd1d1ced6-6935-4194-99af-46d66bca397f.jpg -9405,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itd4dba37d-3c5d-48a9-9aca-d9f428010387.jpg -9406,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itd5a623e1-c308-493c-bf9b-59e3084050fb.jpg -9407,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itd686a44b-9c72-46d6-aa95-3e0318b870c9.jpg -9408,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itd6ce4335-016e-4296-856c-d7b3166da007.jpg -9409,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itd6ede034-2fee-4a39-8c54-17125fdcc2d2.jpg -9410,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itd7df91ff-43fc-40e1-a0b7-5f908a2874ed.jpg -9411,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itd9d31bb7-ff8e-4ffa-bb29-03bf26510eae.jpg -9412,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_ite0d4bb20-e0ff-4efd-9888-e940ead1933e.jpg -9413,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_ite3296ba7-f1fa-4dcb-aad0-bb1d89e6c6bc.jpg -9414,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_ite61edc1f-440d-4743-8ab3-f28e5211802c.jpg -9415,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_ite628c91d-5220-4dc9-bf9a-f009058a45d1.jpg -9416,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_ited056ddf-b08c-4013-8f19-c0cbb93c14a7.jpg -9417,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itee5d64c9-d523-4e78-8ab3-23e9e9035a2c.jpg -9418,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itf0a09fe2-b492-490e-868c-591afcd351e5.jpg -9419,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itf3b1d583-3eb1-4c08-9443-1bb971f81d44.jpg -9420,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itf7af847b-e240-48ec-b478-c8cae6ea04ed.jpg -9421,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itfa9b2b24-2113-46de-aed3-8cec4ce56bf7.jpg -9422,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itfdfbe396-56af-4aaa-afcf-78bdddd56ae7.jpg -9423,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_tv_in_itffefdebd-ae98-4045-9d10-2dbc17d3afab.jpg -9424,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it020877a2-b065-4495-a068-9022b6971f4d.jpg -9425,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it03adf084-638f-4640-926d-78b98c314258.jpg -9426,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it0717cd20-eecf-484b-ab8c-5d52391229c6.jpg -9427,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it072edf4e-9396-4d28-85f7-fcb62f38f424.jpg -9428,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it090ab79d-4d01-4ebe-9c06-745d29f91ea6.jpg -9429,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it0a4acfc4-9e21-4bc3-9f0a-c7472e119d06.jpg -9430,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it0aae846a-b537-47c3-af36-b7b0b836fd15.jpg -9431,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it0adc1a56-874b-45e7-be12-2af09332e2bb.jpg -9432,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it0ffe53f4-393e-4954-9bf3-25d84dc63fd2.jpg -9433,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it100e34b7-2176-4754-9cb1-c627b7d35bec.jpg -9434,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it14417f12-1fbb-4f9c-a151-61ea56d6bd41.jpg -9435,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it158e32bf-1538-417d-9241-5c491e6df19f.jpg -9436,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it16febb1f-ef66-4ff3-83a8-1f4bea7d8475.jpg -9437,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it192323df-e7ae-4b1a-8206-7a238d181038.jpg -9438,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it19dbe802-3e21-40f2-a593-1c25864e7531.jpg -9439,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it1ac7109f-0878-40b7-b125-11a0d0450980.jpg -9440,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it1b2271a3-14e0-4d31-96cc-e9c17ad2b34b.jpg -9441,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it1b573caf-474b-4451-b055-b561d5eef463.jpg -9442,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it1db5df45-46f4-47ab-8512-b9d417a4ec36.jpg -9443,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it1e4488f0-8be9-4dff-be9a-310c8a253552.jpg -9444,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it1eeb6b05-91e3-4413-b87d-0b0687d66ab6.jpg -9445,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it2c5eae41-a774-4529-b6c6-2844f8f02630.jpg -9446,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it2eb33612-9715-4742-abe2-fdd6655af635.jpg -9447,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it3787f304-2a09-49dc-b01e-3cccc0d55fdd.jpg -9448,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it3d15a730-3b6f-4601-8a1a-96987c999146.jpg -9449,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it3d5bfe7d-3d10-4beb-ad64-04b1a460e163.jpg -9450,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it404d568d-208d-4d81-8365-4b8bf6a197a4.jpg -9451,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it4351519e-2d52-46d6-aedb-8a2e0d3544ad.jpg -9452,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it441e0a46-0593-448e-b35b-2f7203be7203.jpg -9453,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it46f1d1f0-bd87-4c6c-ad86-c208400a9ace.jpg -9454,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it502e9c22-2ac6-4470-8d4b-50d43b1702b1.jpg -9455,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it5233a1a2-5d89-452a-aaaf-62442046671e.jpg -9456,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it54d174fd-d69f-4e06-9cb7-3c2f2f6f01c7.jpg -9457,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it590016b0-ff5c-42d0-aef0-3216ac664d5d.jpg -9458,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it5b0430ee-cc83-4dd6-812f-0815895d679f.jpg -9459,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it5b65519b-7227-4a21-bd63-fd823223cdef.jpg -9460,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it602c7615-2acb-4e57-9e0f-ba095317b38e.jpg -9461,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it639aeef6-3d63-40dc-8a28-a484a008d3e4.jpg -9462,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it662679b1-c214-441d-aa17-c096da58d986.jpg -9463,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it66b5b2e3-f02d-4c6e-bad3-db3a281b218d.jpg -9464,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it672361f2-8799-4279-8da0-70b2d0d039c4.jpg -9465,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it6b7bd7c4-d7b0-44a9-8521-8796bca50497.jpg -9466,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it6c15d83e-04ed-4067-8c86-2d367f0e8757.jpg -9467,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it6d5100c1-d1aa-4d3f-a51e-8f9402312009.jpg -9468,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it70c5aa07-f5cd-4535-839d-1aa66772f889.jpg -9469,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it70ed11c6-f446-4055-a119-ca13f6e9e879.jpg -9470,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it73cda6a0-0cda-4b16-8e46-9f10eb0c87fd.jpg -9471,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it748eb2a8-bc70-43bb-a435-50935a51ea32.jpg -9472,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it7eee65ff-b3da-48a3-92a9-406c68a2f69e.jpg -9473,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it7f3b4558-c7b2-4d7f-9214-9267895bf2af.jpg -9474,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it7f9fa1b8-91aa-48cb-bf80-c9f84294c044.jpg -9475,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it80728139-1669-41fa-9e82-847b72ed1ce0.jpg -9476,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it80fa132c-f59e-4aa8-8457-73a999766eef.jpg -9477,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it825e8acb-e1c7-4c14-a129-dd905e13b2c7.jpg -9478,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it834bf0bf-24da-4dff-a4d9-4db188116884.jpg -9479,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it84bc9d33-1f28-428c-9b38-bbf050a80ccd.jpg -9480,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it88a298c8-ec2d-4e95-a8ce-0923d613840d.jpg -9481,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it8c1bf6eb-e1a5-4251-afb6-5b25c040f3fb.jpg -9482,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it94fd9ba3-1865-43c7-8092-e6d4f6908a74.jpg -9483,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it96545a40-2bc1-4712-b61e-0b4f32b3b9fe.jpg -9484,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it967ac7f6-69e1-4f4d-a5e8-07422c764199.jpg -9485,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it988ab05a-5026-4b4a-9cb3-a9116e566bc1.jpg -9486,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_it98964130-b68a-4763-9658-81b86007fe2f.jpg -9487,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ita047d06e-1cc1-4595-a138-528654017026.jpg -9488,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ita150f878-e570-4306-a3a2-738cff52c704.jpg -9489,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ita870d8c3-92b4-48c4-baec-d50be44cee3a.jpg -9490,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itac70c170-3701-460a-8bf9-b0912dd6c3fb.jpg -9491,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itaeb55dd0-bf1d-46e9-aff0-057b24038117.jpg -9492,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itb0a51931-8d2a-43f1-aea6-3ddfb63f4e1e.jpg -9493,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itb4b0e488-9fbf-4a57-9dff-ea8639f9673d.jpg -9494,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itb61436a1-0bd3-4ed4-b0f6-6e5809adbcd0.jpg -9495,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itbe771a09-f2f1-4a5b-80e1-ee18f202cd2f.jpg -9496,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itbe7efe0a-227a-4e28-a5b9-9426fa8924b5.jpg -9497,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itbe95a3e9-9566-47ed-bd19-528522d706bd.jpg -9498,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itc038de44-448a-423c-961f-a638ef6e42a8.jpg -9499,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itc101ed9e-0753-40d3-85e6-6ea02059da73.jpg -9500,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itc184e1cb-7ff0-4dc3-9eec-c84e40dc54df.jpg -9501,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itc26d0b4c-2343-4865-988a-e9c42dd1c4a4.jpg -9502,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itc489aa5f-df35-4bc9-a8f7-fe1c45f9ed0f.jpg -9503,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itc7b56dcf-80f6-48a8-a0c4-5483e0580446.jpg -9504,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itcf43b260-45c5-4dc9-8829-1b3cd2ed8b06.jpg -9505,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itcf4736e3-da18-4ad2-a070-4df55996c242.jpg -9506,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itcfa92a45-05a7-4cc5-89ac-7816eb4e7857.jpg -9507,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itd8019bf4-9c8b-43bc-ab18-2aa47732a192.jpg -9508,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itd80855b7-c0d9-4495-abfa-d84abd7f687f.jpg -9509,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itd9fa4b68-5177-4802-b7d0-736a493d426a.jpg -9510,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itdf42398f-d54c-4b9c-816e-eef94eca5865.jpg -9511,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itdfa18fa2-8ff5-4ec7-bcd0-2c6ec8178059.jpg -9512,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ite01f7849-c167-4ee5-89d6-74730a9d725f.jpg -9513,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ite18ad951-7913-467c-bf65-41a51f4b7d15.jpg -9514,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ite3d4e105-f7f5-44be-a4ba-4564a402a6c0.jpg -9515,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ite3dcbee9-0403-4603-b317-a57c24458b0a.jpg -9516,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ite6381e18-5752-4e0f-a6c4-e2ecc23c4846.jpg -9517,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ite694a537-7fc3-420c-8620-c08143ce76dc.jpg -9518,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ite80c9c46-16a6-4135-9abb-ee2628acaacd.jpg -9519,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ite98a3bf6-179b-41d8-98cf-e02954fc579a.jpg -9520,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_ited20d493-cdd5-4a5f-a49f-36161f7e5fcb.jpg -9521,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itef6f30d5-8db4-4e37-9e17-63e17b8d55a2.jpg -9522,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itf274c65c-643b-4dca-ab49-c94c74022082.jpg -9523,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_umbrella_in_itff1c235d-525b-449b-b39e-691af1cb3045.jpg -9524,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it01d21445-a30f-45c3-8d56-28bf586bca1a.jpg -9525,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it04a8c679-3640-4c63-b072-bbdbaade3700.jpg -9526,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it08aac670-9d04-421d-8b90-2cc21f15eadc.jpg -9527,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it09557c3d-d92f-479f-9d00-29d590ac16b8.jpg -9528,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it099b70cb-cbd2-4925-bccb-ffebce8b8c97.jpg -9529,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it0a6db2da-5f0a-4c9c-b916-d2d34096f2e7.jpg -9530,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it0ce9ff16-c98f-4e4e-8e8b-d9eb2294236e.jpg -9531,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it0f0ea06e-0d5b-4b9c-9999-94588af00a43.jpg -9532,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it10065926-4e0c-496c-8330-3f191d75a7c7.jpg -9533,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it10f43a08-d08e-4083-860b-66f17efe5242.jpg -9534,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it11f88dc6-36f1-434b-91c6-4881b00a20b9.jpg -9535,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it1331ed1d-9143-4219-a717-0868a176d029.jpg -9536,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it13d99b10-707c-4f38-bdbb-288bfbdd2003.jpg -9537,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it14122099-248a-4d85-b5c9-6461a49461ea.jpg -9538,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it1dfbff1a-cbfb-4de6-8f06-c20a6ae6274c.jpg -9539,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it1f977d55-2ab7-49b9-8861-2b796070667d.jpg -9540,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it1fa2b5a4-3e1e-4e77-b890-c3d54c6c5796.jpg -9541,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it23b39e94-898d-4aa0-a1e2-488e5a188c3e.jpg -9542,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it242e27dc-0324-420b-81f4-aa1b0ebe2110.jpg -9543,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it267ffaf4-5c68-499d-a66a-9ef46464992d.jpg -9544,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it329d6f5d-ac6e-4f36-af7f-70d2ea607b9f.jpg -9545,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it32b83432-ce76-43d8-a17a-ae16a84dd1b7.jpg -9546,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it347dffd2-2fc6-4edc-b387-239b998efd45.jpg -9547,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it3845685a-7fcf-4844-a4ae-9fdea99ed27a.jpg -9548,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it3c2c08fd-85f9-4bf1-a198-9602758759ea.jpg -9549,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it3dbfe0d0-d47b-4ae9-a1d8-3826f70bccf6.jpg -9550,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it41a5a4e2-2c69-4d2e-8ae2-d59ddfe9b40b.jpg -9551,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it4413255c-fd54-4041-b15e-3571161f9697.jpg -9552,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it4858c3df-4a08-45ce-b38b-7275113cef34.jpg -9553,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it53942ada-d1f5-4f9b-8b67-50cf4d18389a.jpg -9554,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it568948be-b35a-4b26-91f4-8024f92bddf7.jpg -9555,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it591cdfb6-a3c2-4167-abd9-4795db2ee84d.jpg -9556,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it595e73b3-4a8b-4391-8c80-036b0c8c363a.jpg -9557,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it5985281d-d474-4056-9f08-c8b17757e05f.jpg -9558,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it5991f7a5-6ed7-4127-8705-d28b62205c64.jpg -9559,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it5a788134-bdd5-440c-af60-0ef55b43ecf6.jpg -9560,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it5b351f27-0084-4151-b60f-f31a918af922.jpg -9561,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it5c7389a2-14b3-40c4-b370-295309abdbaf.jpg -9562,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it5c90343b-1e90-4bf6-9288-9733ee0d739d.jpg -9563,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it616a3404-75dd-4553-ae94-7c61aabd3876.jpg -9564,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it6257b136-330e-4e68-a245-8bc80e0d82b3.jpg -9565,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it63828752-3d7f-40a2-8b39-69643c7ce43f.jpg -9566,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it66c1d65c-d28f-4f70-9053-3270ed420382.jpg -9567,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it6980b318-8a99-4080-8f0d-28ec455d3b00.jpg -9568,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it6a5d9350-4037-4bb5-9f82-d56bd0b58e7f.jpg -9569,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it6b278675-e73b-420d-8060-e9666ee5c315.jpg -9570,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it6ceb8e8e-253e-454b-9c52-7a4b96b9c145.jpg -9571,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it6e4f048a-79d0-4239-bda5-92e4b85d1700.jpg -9572,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it6e929d6d-c331-472a-a916-46c3dfe1001e.jpg -9573,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it75538a1d-f655-4510-82a6-feff525930cf.jpg -9574,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it765ea77d-647d-47d6-9866-88eaeef46c6f.jpg -9575,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it7ac027e3-b9ab-4c06-bd95-51b762b1fce6.jpg -9576,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it7c41291c-a0dc-4cb7-9bb1-b13ff834962a.jpg -9577,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it7e0b904a-affb-4ced-b453-d5c7a6637215.jpg -9578,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it7e9afdd2-f665-4f5b-bf48-2d724cc40f5d.jpg -9579,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it8702fbae-e96e-4b5c-a295-74cc53d71c0c.jpg -9580,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it8761d38e-3d1e-4071-84a9-65f9ad69335e.jpg -9581,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it876d2ed5-672c-40e4-ba65-23c6580fce6f.jpg -9582,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it8ad516d8-841e-480d-9429-d8741a9f21ef.jpg -9583,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it8be98cef-b22e-4c3c-9f9b-825a2b7889be.jpg -9584,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it8f725060-be89-49dc-8d8a-b948084a4958.jpg -9585,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it9383b2e9-a70d-4138-baf4-e6b98ba7f18d.jpg -9586,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it9478e13c-0620-40a7-9f82-e8f12008ccb8.jpg -9587,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it95d79ada-a987-4aaa-a5fb-c9e673c96213.jpg -9588,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_it9c7af450-4eb6-470d-9e94-2d4300a96210.jpg -9589,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ita169fd6e-016e-4947-bcb4-a422f2e3baae.jpg -9590,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ita34e8493-2d61-4953-b10b-1ec88e47af70.jpg -9591,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ita3fee848-93b1-4cd7-aac5-e7b150e19445.jpg -9592,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ita9c177ee-9acd-4855-8933-6ec685607037.jpg -9593,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ita9dae36a-a09e-4f92-8b82-800286751970.jpg -9594,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itae61a837-640c-4327-b045-a9ecea37c221.jpg -9595,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itb68e69c4-a2c2-42cb-bcc9-40444c25e600.jpg -9596,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itb6bad85d-7d0e-4607-8b51-2373cdc6ebf3.jpg -9597,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itb703e91f-b94d-4aab-a87a-2aa4f64f42eb.jpg -9598,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itb7903078-002f-4540-8650-7915e1a4a205.jpg -9599,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itb7bdcd41-ff48-4512-a5af-6d2ea1ef5942.jpg -9600,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itb8972043-16d2-4bb7-87de-5f0c5cd3b390.jpg -9601,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itbbf33fc8-81bd-4b7e-b4e6-9eceeb929860.jpg -9602,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itbd1282f6-247c-4c5a-b976-c0eea567a7e0.jpg -9603,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itbe18da63-0ee7-4a03-8d5f-22b0a1ab95c1.jpg -9604,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itc3305afd-b96e-4937-8b3d-a12c8ad43942.jpg -9605,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itc5b99103-8e07-44f9-bac7-97a069248b61.jpg -9606,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itc6c4887d-8577-445c-af92-8bbb9e5a3530.jpg -9607,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itd0658084-3770-4156-97f2-deba0840263b.jpg -9608,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itd2b44691-26d7-4750-af59-b08390e17d6a.jpg -9609,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itd30dd643-777f-48b2-8aa9-cdf64f5a232f.jpg -9610,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itd3697a48-1948-4b64-8b39-24e729f86c25.jpg -9611,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itd4097b0a-e059-4881-8f2d-12a2d46420ac.jpg -9612,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itd4d95b11-fcca-43ca-b715-13d846f6fdcf.jpg -9613,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itdcd47b14-8fb5-47a8-b1cb-6f5e3b9f0000.jpg -9614,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ite26c3871-10ba-4a24-905f-b75a2bc86da8.jpg -9615,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ite45144f3-8774-4be2-bb80-e77e0b4f5265.jpg -9616,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ite4dccd30-ca5b-4bb7-9d43-2f85fe98aa26.jpg -9617,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ite60f35e6-515d-4b3a-9c09-67b600514ab4.jpg -9618,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ite6fb1692-91cb-4dcc-901f-4523920e6901.jpg -9619,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_ite826b495-b97b-498e-a968-23fe04b2f3c2.jpg -9620,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itf6b1bc52-30b9-4caa-9ff5-5f5db1b2ba6a.jpg -9621,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itf716508b-242d-496c-a891-fe42680ec323.jpg -9622,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itf9ce478b-3862-445f-8cb3-9e3101fe0216.jpg -9623,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_vase_in_itff70eb54-6476-46b3-969a-840c9291371f.jpg -9624,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it020e68c0-726e-4e4d-b71b-5418552d5bfd.jpg -9625,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it042b670c-6894-46ea-befa-ce2327382909.jpg -9626,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it07a9c39f-8905-4859-9242-a9b662a49194.jpg -9627,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it09aab0e6-1748-481f-a31e-68cc95c1e84a.jpg -9628,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it09ec6663-83d6-4eb4-8f85-10936f845906.jpg -9629,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it0c090c75-ad1c-4301-8245-5194ec110871.jpg -9630,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it110648a6-7d78-4d72-828f-f0b5f908ab8b.jpg -9631,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it1246cbed-248c-4a57-bdd5-0e88b0c389c9.jpg -9632,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it1414cb54-8aa2-43ad-8ff6-f04a3d833b40.jpg -9633,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it184d90ee-bbb0-431b-9143-e38481fe6175.jpg -9634,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it1b8b2e56-ddc1-4036-b005-a7957d2a9d9a.jpg -9635,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it1e480002-5e7b-4679-afcc-bb70910292f1.jpg -9636,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it2025ec24-636e-4fc7-affe-9fe87e78b3d1.jpg -9637,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it20e00f14-8a05-4a7c-8aac-329983157bcb.jpg -9638,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it23a8124a-9f45-4487-b2ee-85967e65f52c.jpg -9639,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it25a3101c-b4ad-4099-946e-43f14c79cf2a.jpg -9640,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it26889ad4-3b2e-45ed-9af1-c76a11d42309.jpg -9641,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it296deeda-112b-40f7-8b2e-fd12bf3268e5.jpg -9642,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it2abac1fb-d6a9-4128-9b97-2ed6dcffffdd.jpg -9643,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it2c1a43b0-8e55-4bf9-93e5-66960726a064.jpg -9644,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it2e8148e9-1807-457d-8da4-31a4c0a394ba.jpg -9645,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it2f6dcb08-9d8d-4da7-8b4a-72e6a8c54cfd.jpg -9646,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it3274f43f-a068-4d86-8df6-80338354843d.jpg -9647,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it3983a56c-3c38-4b25-b7f8-093715168cd0.jpg -9648,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it3dc105d6-d4be-4e89-a438-fb94224fa9ac.jpg -9649,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it3f30b4bd-d7fe-48fa-bf2c-e49d67a9fb6c.jpg -9650,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it40742fe7-5b71-42f7-9865-572fe8a6da5d.jpg -9651,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it44f6e63d-b441-4cd1-8d3d-f94bdfdcc93a.jpg -9652,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it494335f3-a1b6-470a-b71a-562735d5386c.jpg -9653,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it4a620817-987a-425d-89ff-7646dde1de42.jpg -9654,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it4bbf3147-8e70-4be2-b4ff-c84bcfe347ca.jpg -9655,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it4ed7de37-5cc2-45f0-bfa9-63192743e637.jpg -9656,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it5005c60c-2e5a-4370-9503-495e6b6cfdf4.jpg -9657,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it5410cae5-9807-499c-b0c5-6da2fab26835.jpg -9658,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it583779bb-15e5-417a-a72e-79ef6f8ae05c.jpg -9659,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it586cf061-9069-4d38-930d-ec16452daaef.jpg -9660,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it59d5f7d1-6bf7-4cda-a1db-61d51db8dd6d.jpg -9661,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it5aa7376f-06c2-4bbe-841e-9fcb44145b50.jpg -9662,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it5c7ee700-6569-439f-9148-6f7a80f3a604.jpg -9663,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it5e6dd0cb-b372-4221-8fad-100b1472e17f.jpg -9664,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it615b6a4f-f2eb-4d9a-82e7-df1ae018925f.jpg -9665,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it61cbebb8-ef5e-4ec0-aaaa-9bf06ea9343b.jpg -9666,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it6217d3f9-0d26-4b16-bb0c-c356c37da81f.jpg -9667,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it622f7f24-4f28-43a0-9e92-1d2cb481fb11.jpg -9668,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it636e76d7-6bd4-4b05-a29a-ded86de85554.jpg -9669,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it69b5611a-387a-490f-aaab-5bf180d6f9e4.jpg -9670,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it6ce38042-ea55-4dd5-8ae1-81e416b13cb1.jpg -9671,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it6e9f984c-b34d-46d3-a77f-ac593338675b.jpg -9672,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it710479a9-eb3f-4245-9f82-342c9d25c481.jpg -9673,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it712df8e7-424e-4b28-92c1-66c5fe1b5f22.jpg -9674,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it72671fe3-024a-43ed-916a-2424245d0bf4.jpg -9675,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it7e6063ca-6512-40ee-b6d7-ce1f22eaa2ba.jpg -9676,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it7fbaf3c2-60cc-45c1-a111-226ac9af03c2.jpg -9677,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it80def75f-48df-4095-b9a9-ab354496c4a6.jpg -9678,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it83fb38a5-c00b-4949-8ffd-c22fe89891e0.jpg -9679,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it8405639a-8081-4870-b7db-101ff20aa7b2.jpg -9680,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it8816e69f-7f7b-490f-a289-64357791b0d0.jpg -9681,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it8b6afa26-9c60-4586-b435-03a797db3445.jpg -9682,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it8e9a98ce-fd20-46ac-a39d-2d9323d35018.jpg -9683,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it91d2f812-67cc-4fd9-842a-a40190aaec4a.jpg -9684,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_it9b32c782-1c3d-4ae2-ad72-fd3d839836e8.jpg -9685,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_ita1021f0e-e567-4881-a846-4ffde4f9b855.jpg -9686,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_ita1597950-fe74-40f6-9cc9-debbc0deb4f7.jpg -9687,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_ita235d9fa-9d1d-45d5-a95c-a3a65802c251.jpg -9688,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_ita3079601-3e5d-4c95-bae3-b39f50494359.jpg -9689,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_ita7403313-fc5c-4457-8262-edcd305dd434.jpg -9690,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itad0e4364-1f39-4e36-9f55-9befa705fa23.jpg -9691,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itb1a268f0-6d3e-4236-a734-4413e187aea3.jpg -9692,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itb397d043-a2ba-4545-95ff-7eea04fa67ec.jpg -9693,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itb4584893-f577-47f6-ae35-85a8baccd1e7.jpg -9694,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itb58eba1a-e88d-4532-8a7e-e3cc07b1d93e.jpg -9695,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itb5d6b7c5-6320-4430-9e78-817aac870385.jpg -9696,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itb80f5e88-90f4-4b86-ae00-66d1845a06d1.jpg -9697,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itbfcfcbbc-963a-4f83-91cf-ef6ced5e0985.jpg -9698,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itc56b8d53-24f8-43c4-a076-eb3ab7d5e49f.jpg -9699,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itc70512b9-c6d5-4f82-af6b-ce9271085e1d.jpg -9700,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itc766badd-64a5-40c3-b015-d9c947df4ab6.jpg -9701,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itc9279f93-278a-4a8e-8602-3008e9296ad8.jpg -9702,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itd042f695-d0c7-4f22-91fb-ecd415ae4c0e.jpg -9703,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itd3109872-077c-4b75-9bea-92b8a9310bcb.jpg -9704,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itd604c7da-b36c-454c-83c1-42cf8b4043a8.jpg -9705,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itd660681e-495e-4fce-8f11-5c8ac353dde9.jpg -9706,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itd9411c59-7977-4a79-bd10-f95479fcfdb8.jpg -9707,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_ite22e78a4-6142-4b53-821a-4d4c07eb3f9c.jpg -9708,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_ite2540743-b8dc-40c2-8b37-ec090dcda228.jpg -9709,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itecc91697-656a-4a40-835d-afbacce442af.jpg -9710,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itece0d5f8-4bf8-489d-903c-50f56608bcf3.jpg -9711,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itef683afa-1579-48a1-bc8a-701e3d7f4d5c.jpg -9712,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itf16820c7-9801-442a-95be-815f06b0f4f2.jpg -9713,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itf2559fbc-f3b5-4d81-8386-84aa154a4c6c.jpg -9714,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itf38958ba-6481-47aa-9710-5b77f3c70070.jpg -9715,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itf439cf4b-d02f-43b1-800b-b3ed2b09ce79.jpg -9716,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itf4e23971-0933-46b7-a547-aff8d79eaf55.jpg -9717,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itf4e889d5-dbd5-405b-8580-1a084409ef7b.jpg -9718,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itf971e41a-16b7-456c-8e8b-d44813955998.jpg -9719,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itfb43dcbf-acdc-49f5-a530-e94ea659296b.jpg -9720,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itfc7b3483-9cd1-4cbb-bf0b-8720bcfcf28a.jpg -9721,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itfcd12fc5-411d-4df5-8eb7-504efabaa559.jpg -9722,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itfcf1e80e-c01e-47d6-84d1-3bb971243b5b.jpg -9723,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_wine_glass_in_itff150ce6-1b48-40ee-8041-1cdf8b67e5e1.jpg -9724,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it04bfe7d1-35db-4c16-948f-c5f78ced4dab.jpg -9725,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it057a9e11-9aca-4bb1-a7a9-bff453b40e15.jpg -9726,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it05c0402b-8ec5-446b-9b57-0d2764d39ad8.jpg -9727,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it06b30d9b-a6db-4877-9c2c-feb6510985b0.jpg -9728,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it06e39017-3ba1-48b1-9839-6eafe5b69f99.jpg -9729,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it06ef0ec9-b248-45cc-8a6f-b934eabe0d9c.jpg -9730,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it0c96fdea-a77f-447e-936b-61b85f278b06.jpg -9731,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it0d3bb375-ed9f-477a-a741-a868b97851e2.jpg -9732,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it0d52bb92-2f8f-4f91-9d38-55125161210f.jpg -9733,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it0d5d61b2-cebc-4a62-a541-8c745cd3e509.jpg -9734,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it0f29b838-466f-4554-b2a0-a0965db5d8c8.jpg -9735,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it11fd6c1f-b63f-44e1-ad2b-3bbf80eeda2b.jpg -9736,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it13467088-4018-425b-887e-410a0f0274c2.jpg -9737,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it1384f4bc-289f-49ef-9eee-a041df236d59.jpg -9738,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it2136b104-856a-404f-b188-d40f4be58fbb.jpg -9739,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it21907d64-ef0f-4f84-a620-322d03defe7a.jpg -9740,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it223531a2-5430-4c4e-b8e8-89d7e80aa4ee.jpg -9741,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it26f89125-cd1f-4abf-aa50-413d06af3219.jpg -9742,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it30c5bcbe-3075-4b3a-8cd5-695c23518a88.jpg -9743,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it37d896f1-1a4d-4935-a35d-33a778e5b765.jpg -9744,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it38581a81-7eb6-4c46-a0b3-627a9c13e663.jpg -9745,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it38c4edb0-bfae-460d-ad9c-a9a368483c3f.jpg -9746,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3907c875-2df9-4ed9-893e-dd3d674ab0be.jpg -9747,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3a1c874d-cb7c-4a8d-8b11-36b698919366.jpg -9748,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3ac0a6e2-30bc-4c11-979f-0fd062966007.jpg -9749,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3b6278ff-8c93-4d56-a8fd-1ea1b49e5bb7.jpg -9750,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3c48231f-353e-40ed-886b-0a9658a7bf86.jpg -9751,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3c6c834e-0a1c-439f-9ce8-2d06b47cdfd4.jpg -9752,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3dc140b7-e912-4eb3-be47-b5664fe20469.jpg -9753,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3e3736cd-526d-4890-9a7d-6fd78861a6a7.jpg -9754,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3f7ad08a-eee7-4c17-a686-39ec683a730e.jpg -9755,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it3f904041-e736-4013-b7bb-15e2741981bc.jpg -9756,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it4044c284-5d5c-49fa-9b6f-14fcbecd6bd3.jpg -9757,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it4181b60f-8956-40f2-af9f-5e0d35900aac.jpg -9758,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it45592af8-3d5f-406e-8b93-37e825b35a58.jpg -9759,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it47c8ce59-c258-4535-adda-0e5524a0d2b4.jpg -9760,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it4dfec82e-134b-470a-806d-a07e3ad41e10.jpg -9761,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it4f822220-09da-472b-a972-a7bc1d5647af.jpg -9762,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it4fb7f31a-a066-4ee8-ba56-cde641093078.jpg -9763,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it50e30ad2-2494-4401-9744-692b3cc0150e.jpg -9764,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it511f92ed-318c-4a1d-ac66-10621aaaa12e.jpg -9765,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it51e87685-4e9b-4cce-a4fc-2516f7269351.jpg -9766,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it5682ed4b-a773-43f4-9dfb-93acc884b696.jpg -9767,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it56b6dbbb-b727-4b29-a41e-b7689ec642a7.jpg -9768,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it5b7a1592-f95e-43e6-a335-ddee46d1ed75.jpg -9769,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it607ff3d3-a300-43e7-835e-3cb4f4e95236.jpg -9770,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it60c6588e-18e7-488a-9a3f-e41b42c2164e.jpg -9771,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it662e3a7c-cb01-47ad-9101-2b4808180fca.jpg -9772,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it68bb1892-a19d-41af-ae7d-7d0b83c4ac36.jpg -9773,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it68c69a46-7c25-4809-8bdf-1e7e0902aae9.jpg -9774,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it6a9dc885-e5ce-4b7b-8a9a-e888b33074cc.jpg -9775,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it6ad13193-e1a8-4510-b04b-a82dac6b2446.jpg -9776,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it6c9d3ed4-a454-415d-a854-b1dbb677ca67.jpg -9777,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it6d4c1753-1ae6-4d00-ae68-ffa931b6ea99.jpg -9778,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it70682c82-a9c3-4b18-80e1-34eea4f96aa2.jpg -9779,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it73fcffdf-ffc8-48fe-b3a9-0be68d6c3b60.jpg -9780,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it7db2c87b-bbf2-419f-9a79-5dba71447418.jpg -9781,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it7fa92e3b-4c59-4d04-8615-164f9ecaa907.jpg -9782,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it83b6619c-beda-4017-aa50-fa6c91ad72f7.jpg -9783,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it880c8a49-36d6-4ab0-927f-62210e75c0fe.jpg -9784,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it880e6c25-4bbf-4d3c-8a25-719f7ed0b4da.jpg -9785,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it89766da5-9b0d-440a-b854-b00a562b70b7.jpg -9786,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it8eb2c706-2453-431c-ad39-733a0b8fe80d.jpg -9787,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it92cc9337-0738-44d0-be28-6260e103d002.jpg -9788,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it941e7675-17fc-4cd1-baf8-a964cc244139.jpg -9789,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it94700cf0-8e43-4a60-8f3f-364f82a4c4d1.jpg -9790,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it9598b678-587f-43e5-9a39-e40d8ba83b96.jpg -9791,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it96369751-87cd-4f22-b835-bf61e8cb10f9.jpg -9792,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it96cda20a-5641-44e6-8d10-a459eb2620c1.jpg -9793,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it9835f917-b01b-4d62-a302-c6ec1c189477.jpg -9794,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_it9aec94ce-218d-4626-b123-140b579dc40c.jpg -9795,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_ita13ad714-83d1-4815-8465-14352e79f6b6.jpg -9796,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_ita36e973d-4858-4fc0-9cef-e0d89e951b56.jpg -9797,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_ita545ffb8-3801-4fe4-8f8f-e81d11f1a240.jpg -9798,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itad9bc0c4-b0a5-480a-9fb3-196fa8429dec.jpg -9799,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itb4aee0ab-bd19-4e31-97fb-8de20866dd77.jpg -9800,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itb8847c1a-77c8-4a38-858c-0b25f5d86f5a.jpg -9801,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itbcd9469a-5ae0-4f6c-a80e-07d1cbed318c.jpg -9802,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itbf78d304-a3f0-4d6e-9b98-45c8270a9c00.jpg -9803,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itc04e27cb-660e-4a1d-9a0a-b2430baf0d5f.jpg -9804,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itc1d78f64-b8a9-49ef-9f46-a55b1173caf2.jpg -9805,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itc39a2ef6-7920-4a8e-aff1-fb5d9336c552.jpg -9806,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itc52259e5-c3ba-4bdc-9a00-77baa6e2ff5b.jpg -9807,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itc56a834a-1a5f-4fa5-8e64-3d518f5c3887.jpg -9808,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itc76fdb60-904b-4519-8798-fd6f7aae06bf.jpg -9809,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itc97f8044-e798-4712-b31c-19816c3ba0b4.jpg -9810,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itd54a663e-9ce5-449b-b7a1-99517289a504.jpg -9811,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itd892b6a2-1fb0-42d6-bc10-ccf381fff857.jpg -9812,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itd9c732a1-0c53-4041-839a-9f75e6418621.jpg -9813,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_ite1143a77-794a-4534-bceb-223d4a62ba65.jpg -9814,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_ite1334483-b86c-44cc-bfb5-78f5b429d502.jpg -9815,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_ite2a40234-703d-49ea-a2d5-8df5fdfea233.jpg -9816,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_ite47ee2e2-d5ba-4af4-af33-fa0f3e3d4760.jpg -9817,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_ite58fce3d-d372-4aa8-97a5-464f2e32a5f4.jpg -9818,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_iteb5feb36-df93-4a71-b1ed-6a7ba3dcff82.jpg -9819,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itebbd604b-5aa1-41eb-8695-9cc4a9ac5a93.jpg -9820,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itf075da13-5615-43c9-9e85-359e870aa05c.jpg -9821,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itf2d32421-1f22-4666-a9ac-97a7b63d19f4.jpg -9822,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itfb476617-ad62-4f7d-aad8-d794afa231d7.jpg -9823,https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images/a_high_resolution_photo_of_a_street_with_a_zebra_in_itffa6cb1c-73e7-4467-a845-2e183cd06b18.jpg diff --git a/examples/ImageSearchLocalization/index_all_data.py b/examples/ImageSearchLocalization/index_all_data.py deleted file mode 100644 index dc1b83c1f..000000000 --- a/examples/ImageSearchLocalization/index_all_data.py +++ /dev/null @@ -1,83 +0,0 @@ -##################################################### -### STEP 0. Import and define any helper functions -##################################################### - -from marqo import Client -import os -import pandas as pd -from utils import download_data - -##################################################### -### STEP 1. start Marqo -##################################################### - -# Follow the instructions here https://github.com/marqo-ai/marqo - -##################################################### -### STEP 2. Get the data for indexing -##################################################### - - -# this will pull directly from the s3 bucket if True, otherwise it will pull for local indexing -use_remote = False -in_docker = True - -data = pd.read_csv('files.csv', index_col=0) -docker_path = 'http://host.docker.internal:8222/' -local_dir = os.getcwd() + '/images/' - -locators = download_data(data=data, download_dir=local_dir, use_remote=use_remote, in_docker=in_docker, docker_path=docker_path) - -documents = [{"image_location":s3_uri, '_id':os.path.basename(s3_uri)} for s3_uri in locators] - -# if you have the images locally, see the instructions -# here https://marqo.pages.dev/Advanced-Usage/images/ for the best ways to index - - -##################################################### -### STEP 3. Create the index(s) -###################################################### - -client = Client() - -# setup the settings so we can comapre the different methods -index_name_prefix = "visual-search" -patch_methods = ["dino/v1", None, "yolox"] #["dino/v1", "dino/v2", "frcnn", None, "yolox"] -model_name = "ViT-B/32" -batch_size = 24 - -# set this to false if you do not want to delete the previous index of the same name -delete_index = True - -settings = { - "index_defaults": { - "treat_urls_and_pointers_as_images": True, - "image_preprocessing": { - "patch_method": None - }, - "model":None, - "normalize_embeddings":True, - }, -} - -for patch_method in patch_methods: - - suffix = '' if patch_method is None else f"-{patch_method.replace('/','-')}" - index_name = index_name_prefix + suffix - - # update the settings we want to use - settings['index_defaults']['model'] = model_name - settings['index_defaults']['image_preprocessing']['patch_method'] = patch_method - - # optionally delete the index if it exists - if delete_index: - try: - client.delete_index(index_name) - except: - print("index does not exist, cannot delete") - - # create the index with our settings - response = client.create_index(index_name, settings_dict=settings) - - - response = client.index(index_name).add_documents(documents, device='cuda', tensor_fields=["image_location"], client_batch_size=batch_size) \ No newline at end of file diff --git a/examples/ImageSearchLocalization/utils.py b/examples/ImageSearchLocalization/utils.py deleted file mode 100644 index e63a7380f..000000000 --- a/examples/ImageSearchLocalization/utils.py +++ /dev/null @@ -1,81 +0,0 @@ -import multiprocessing as mp -from urllib.request import urlretrieve -from pathlib import Path -import os -from functools import partial -from typing import List -import numpy as np -import zipfile -import glob -import subprocess - -def download_data(data, download_dir, use_remote=True, in_docker=True, docker_path='http://host.docker.internal:8222/'): - - local_dir = download_dir - if not use_remote: - zip_file_url = 'https://marqo-public-datasets.s3.us-east-2.amazonaws.com/demos/ImageSearchLocalisation/images.zip' - zip_file = download_file(zip_file_url, local_dir=local_dir) - extract_zip(zip_file, local_dir=local_dir) - # alternatively you can download the files individually - #downloaded = download_parallel(urls=data['s3_uri'].tolist(), local_dir=local_dir) - locators = glob.glob(local_dir + '*.jpg') - - - # we start an image server for easier access from within docker - pid = subprocess.Popen(['python3', '-m', 'http.server', '8222', '--directory', local_dir], stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT) - if in_docker: - locators = [docker_path + os.path.basename(f) for f in locators] - else: - # now we create our documents for indexing - a list of python dicts with keys as field names - locators = data['s3_uri'] - - return locators - -def download_files(urls: str, local_dir: str) -> List[str]: - - results = [] - N = len(urls) - for ii,url in enumerate(urls): - result = download_file(url, local_dir) - results.append(result) - if ii % 10 == 0: - print(f"{round(100*(ii+1)/N, 3)}%") - return results - -def download_file(url: str, local_dir: str) -> str: - """_summary_ - - Args: - url (str): _description_ - local_dir (str): local directory to download to - """ - - if not local_dir.endswith('/'): local_dir += '/' - - Path(local_dir).mkdir(exist_ok=True, parents=True) - - full_local_path = local_dir + os.path.basename(url) - - if not os.path.isfile(full_local_path): - full_local_path, _ = urlretrieve(url, full_local_path) - - return full_local_path - -def download_parallel(urls: List[str], download_to_dir: str, n_processes=8) -> List[str]: - - N = len(urls) - print(f"downloading {N} urls to {download_to_dir} using {n_processes} processes") - - func = partial(download_files, local_dir=download_to_dir) - - urls_split = np.array_split(urls, n_processes) - urls_split = [split.tolist() for split in urls_split] - with mp.Pool(n_processes) as pool: - results = pool.map(func, urls_split) - - return results - -def extract_zip(zip_file, local_dir): - - with zipfile.ZipFile(zip_file, 'r') as zip_ref: - zip_ref.extractall(local_dir) diff --git a/examples/MultiLingual/README.md b/examples/MultiLingual/README.md deleted file mode 100644 index 5ab3105cb..000000000 --- a/examples/MultiLingual/README.md +++ /dev/null @@ -1,7 +0,0 @@ -1. Clone the repository. -2. Run Marqo, for instructions refer to the getting started guide. -3. This demo is best run on a machine with a cuda-based GPU. If your machine doesn't have a cuda-based GPU, then go to the -top of the `MultiLingual/eu_legal.py` file and set `DEVICE` to `cpu`. -4. `pip install` all the imported packages found at the start of the `MultiLingual/eu_legal.py` file, if not yet installed -5. `cd` into the `MultiLingual` directory. -6. Run the code using `python3 eu_legal.py` diff --git a/examples/MultiLingual/article.md b/examples/MultiLingual/article.md deleted file mode 100644 index d781b61b4..000000000 --- a/examples/MultiLingual/article.md +++ /dev/null @@ -1,164 +0,0 @@ -# How I used Marqo to create a multilingual legal database in 5 key lines of code -![](assets/robot_lawyer.png) -*A [machine learning transformer model](https://openai.com/dall-e-2/) -from [OpenAI](https://openai.com/) -generated this image. A transformer model will also power the following multilingual search solution.* - - -The European Union has to deal with a peculiar problem - it has 24 official languages across 27 countries and these countries must abide by EU law. Experts in EU law have the complex task of navigating legal material in multiple languages. - -What if there was a system where a user (like a lawyer) could search through a database of documents in their preferred language, and get the closest matching document in another? What if this user wanted to give access to this database to a colleague that uses a different language? -In this article, we present a solution that can search across multiple languages using a multilingual legal database built using Marqo, an open source tensor search engine, in just 5 key lines of code. -## The dataset - -The MultiEURLEX dataset is a collection of 65 thousand laws in 23 EU languages. EU laws are published in all member languages. This means that we may come across the same law in multiple languages. - -## Scope for this proof of concept -In the interest of time and for ease of replication, this proof-of-concept will be a database to store documents from two languages: Deutsch and English. -We will also only use the dataset's validation splits with 5000 documents from each language. -Note that the machine learning model that Marqo will be using, _stsb-xlm-r-multilingual_ (more about this model can be found -[here](https://www.sbert.net/docs/pretrained_models.html#multi-lingual-models) and -[here](https://huggingface.co/sentence-transformers/stsb-xlm-r-multilingual)) -can handle many more languages -[than just these two](https://metatext.io/models/sentence-transformers-stsb-xlm-r-multilingual). - -The solution was run on an _ml.g4dn.2xlarge_ AWS machine. This comes with a Nvidia T4 GPU. -The GPU speeds up the Marqo machine learning model which processes our documents as we insert them. -These AWS machines are very easy to set up as -[SageMaker Jupyter Notebook instances](https://aws.amazon.com/pm/sagemaker/). - -## The solution -If we were to develop this on a traditional SQL database or search engine, we'd have to manually create a translation -layer to process the queries, or link each document with handcrafted translations. - -An example of this would be to translate all the documents into English as they are stored. The search query would also -be translated into English, and a keyword search would be performed using a technology like Elasticsearch. However this -is problematic as a translated sentence is a lossy approximation of the source language and it introduces a significant component (real-time translation) into the system. This results in poorer search relevancy, worse latency, and additional system complexity. - -Tensor search, the technology that powers Marqo, outperforms traditional keyword search methods. - -First, we set up a Marqo instance on the machine, which has docker installed. Notice the `--gpus all` option. -This allows Marqo to use GPUs it finds on the machine. If the machine you are using doesn't have GPUs, then remove this option from the command. -```sh -docker rm -f marqo; -docker run --name marqo -it --privileged -p 8882:8882 --gpus all --add-host host.docker.internal:host-gateway marqoai/marqo:latest -``` -We use pip to install the Marqo client (`pip install marqo`) and the datasets python package (`pip install datasets`). -We will use the `datasets` package from [Hugging Face](https://huggingface.co/docs/datasets/index) -to import the MultiEURLEX dataset. - -Then, we start work on our Python script. We start by loading the the validation splits for the English and Deutsch datasets: -```python -from datasets import load_dataset -dataset_en = load_dataset('multi_eurlex', 'en', split="validation") -dataset_de = load_dataset('multi_eurlex', 'de', split="validation") -``` -We then import Marqo and set up the client. We tell the Marqo client to connect with the Marqo Docker container that we ran earlier. - -```python -from marqo import Client -mq = Client("http://localhost:8882") -``` -Then, add a line telling Marqo to create the multilingual index: -```python -mq.create_index(index_name='my-multilingual-index', model='stsb-xlm-r-multilingual') -``` -Notice that here is where we tell Marqo what model to use. After this, we'll iterate through each dataset, indexing each document as we go. -One small adjustment we'll make is to split up text of very long documents (of over 100k chars) to make it easier to index and search. -At the end of each loop, we call the `add_documents()` function to insert the document: -```python -mq.index(index_name='my-multilingual-index').add_documents( - device='cuda', auto_refresh=False, - documents=[{ - "_id": doc_id, - "language": lang, - 'text': sub_doc, - 'celex_id': doc['celex_id'], - 'labels': str(doc['labels']) - }], - tensor_fields=["language", "text", "labels"] -) -``` -Here we set the device argument as `"cuda"`. This tells Marqo to use the GPU it finds on the machine to index the document. -If you don't have a GPU, remove this argument or set it to `"cpu"`. We encourage using a GPU as it will make the `add_documents` -process significantly faster (our testing showed a 6–12x speed up). - -We also set the `auto_refresh` argument to `False`. When indexing large volumes of data we encourage you to set this to False, as it optimises the `add_documents` process. - -And that's the indexing process! Run the script to fill up the Marqo index with documents. It took us around 45 minutes -with an AWS _ml.g4dn.2xlarge_ machine. - -### Searching the index -![GIF of a legal search interface, with results in multiple languages](assets/fishing_search.gif) - -We'll define the following search function that sets some parameters for the call to Marqo: -```python -# pprint is an inbuilt python formatter package that prints data in a readable way -import pprint - -def search(query: str): - result = mq.index(index_name='my-multilingual-index').search(q=query, searchable_attributes=["text"]) - for res in result["hits"]: - pprint.pprint(res["_highlights"]) -``` -The first thing to notice is the call to the Marqo `search()` function. We set `searchable_attributes` to the `"text"` field. -This is because this is the field that holds the content relevant for searching. - -We could print out the result straight away, but it contains the full original documents. These can be huge. Instead, -we'll just print out the highlights from each document. These highlights also show us what part of the document Marqo -found most relevant to the search query. We do this by printing the `_highlights` attribute from each hit. - -We search by passing a string query to the search function. For the search with query string: - -`"Laws about the fishing industry"` - -We get the following results as the top 2 highlights: -``` -{'text': 'Consequently, catch limits and fishing effort limits for the cod stocks in the Baltic Sea should be established in accordance with the rules laid down in Council Regulation (EC) No 1098/2007 of 18 '... - -{'text': '(18)\n' - 'Bei der Nutzung der Fangmöglichkeiten ist geltendes Unionsrecht uneingeschränkt zu befolgen -\n' - 'HAT FOLGENDE VERORDNUNG ERLASSEN:\n' - 'TITEL I\n' - 'GELTUNGSBEREICH UND BEGRIFFSBESTIMMUNGEN\n' - 'Artikel 1\n'... -``` -The second result is from a German document. Using Google Translate, the German document's first line translates to - -`When using the fishing opportunities, applicable Union law to be strictly followed` - -Using Google Translate to translate the original fishing law query string into Deutsch gives us: - -`"Gesetze über die Fischereiindustrie"` - -Searching with this string gives us similar results to the English query. The first result is an English document, with the same highlight as the English query. Marqo identifies both queries strings as having similar meaning. - -Because we added the language code as a property of each document, we can filter for certain languages. We add a filter string to the search query: -```python -mq.index(index_name='my-multilingual-index').search( - q=query, - searchable_attributes=['text'], - filter_string='language:en' -) -``` -Searching with this filter for `"Gesetze über saubere Energie"` (Google translation of `"Laws about clean energy"`) yields only English language results. The top 3 results are: -``` -The electricity and water consumptions of products subject to this Regulation should be made more efficient by applying existing… - -Products subject to this Regulation should be made more energy efficient by applying existing non-proprietary cost-effective… - -The electricity consumption of products subject to this Regulation should be made more efficient by applying existing non-proprietary cost-effective technologies that can reduce the combined costs of purchasing and operating these products… -``` -## Conclusion - -Marqo is a tensor search engine that can be deployed in just 3 lines of code and solve search problems using the latest -ML models from HuggingFace and OpenAI. In this article I showed how I used Marqo to quickly set up a multilingual legal database. - -Marqo makes tensor search easy. Without needing to be a machine learning expert, you can use cutting edge machine -learning models to create an unrivalled search experience with minimal code. Check out the full code for the demo -[here](eu_legal.py). Check out (and contribute, if you can!) to our open source codebase [here](https://github.com/marqo-ai/marqo). - - - - - diff --git a/examples/MultiLingual/assets/fishing_search.gif b/examples/MultiLingual/assets/fishing_search.gif deleted file mode 100644 index 9393ee107..000000000 Binary files a/examples/MultiLingual/assets/fishing_search.gif and /dev/null differ diff --git a/examples/MultiLingual/assets/robot_lawyer.png b/examples/MultiLingual/assets/robot_lawyer.png deleted file mode 100644 index df4d03863..000000000 Binary files a/examples/MultiLingual/assets/robot_lawyer.png and /dev/null differ diff --git a/examples/MultiLingual/eu_legal.py b/examples/MultiLingual/eu_legal.py deleted file mode 100644 index 8e86aaf49..000000000 --- a/examples/MultiLingual/eu_legal.py +++ /dev/null @@ -1,103 +0,0 @@ -""" -This example uses the MultiEURLEX dataset. - -Log from running: -Took 45 minutes on ml.g4dn.2xlarge -""" -# change this to 'cpu' if the machine you are running Marqo on doesn't have a -# Nvidia GPU -DEVICE = "cuda" - -# import marqo: -from marqo import Client - -# import the huggingface datasets package: -from datasets import load_dataset - -# import other python packages -import datetime -import json -import pprint -import logging - -# this will be the name of the index: -INDEX_NAME = "my-multilingual-index" - -# this helps us see information about the HTTP requests -logging.basicConfig(level=logging.DEBUG) - -# Create a new Marqo client: -mq = Client("http://localhost:8882") - - -def build_index(): - # Load the datasets. For this example we're just using the English and - # Deutsch validation splits: - dataset_en = load_dataset('multi_eurlex', 'en', split="validation") - dataset_de = load_dataset('multi_eurlex', 'de', split="validation") - - # record the start time: - t0 = datetime.datetime.now() - - # Create the index. The model we're using is multilingual: - mq.create_index(index_name=INDEX_NAME, model='stsb-xlm-r-multilingual') - - # Let's break up large documents to make it easier to search: - MAX_TEXT_LENGTH = 100000 - - for ds, lang in [(dataset_en, "en"), (dataset_de, "de")]: - num_docs_in_dataset = len(ds) - - for ii, doc in enumerate(ds): - dumped = json.dumps(doc) - # we'll set the doc ID to be the document's hash - doc_id = str(hash(dumped)) - - text_length = len(doc['text']) - split_size = MAX_TEXT_LENGTH//2 - # break up the text of large documents: - if text_length > MAX_TEXT_LENGTH: - text_splits = [doc['text'][i: i + split_size] for i in range(0, text_length, split_size)] - else: - text_splits = [doc['text']] - - for i, sub_doc in enumerate(text_splits): - # if a document is broken up, add the text's index to the end of the document: - qualified_id = f"{doc_id}.{i}" if len(text_splits) > 1 else doc_id - # create a dict to be posted - to_post = dict( - [(k, v) if k != "labels" else (k, str(v)) for k, v in doc. items() if k != 'text'] - + [("_id", qualified_id), ("language", lang), ('text', sub_doc)] - ) - print(f"doc number {ii} out of {num_docs_in_dataset} docs in dataset {lang}. " - f"_id: {qualified_id}, celex_id: {doc['celex_id']}, " - f"json to send size: {len(json.dumps(to_post))}") - # Index the document. The device is set to 'cuda' to take - # advantage of the machine's GPU. If you don't have a GPU, - # change this argument to 'cpu'. - # We set auto_refresh to False which is optimal for indexing - # a lot of documents. - mq.index(index_name=INDEX_NAME).add_documents( - documents=[to_post], device=DEVICE, auto_refresh=False, - tensor_fields=["language", "text", "labels"] - ) - t1 = datetime.datetime.now() - print(f"finished indexing. Started at {t0}. Finished at {t1}. Took {t1 - t0}") - - -def search(q): - # Set searchable_attributes to 'text', which ensures that Marqo just - # searches the 'text' field - result = mq.index(INDEX_NAME).search(q=q, searchable_attributes=['text']) - # Just print out the highlights, which makes the output easier to read - for res in result["hits"]: - pprint.pprint(res["_highlights"]) - - -# After you finishing indexing, comment out the following line to prevent going through -# the whole indexing process again. -build_index() - -# Replace 'my_search_query' with whatever text you want to search. In English or Deutsch! -my_search_query = "Laws about the fishing industry" -search(my_search_query) diff --git a/examples/MultiModalSearch/article.md b/examples/MultiModalSearch/article.md deleted file mode 100644 index 6c96624e0..000000000 --- a/examples/MultiModalSearch/article.md +++ /dev/null @@ -1,596 +0,0 @@ -# “Context Is All You Need” - Multimodal Vector Search with Personalization - -*TL:DR We show how both text and images can be used for multimodal search. This allows for multi-part queries, multimodal queries, searching via prompting, promoting/suppressing content by themes, per query curation and personalization. Additionally, we show how other query independent signals can be used to rank documents in addition to similarity. These features allow the creation and curation of high-quality search experiences, particularly for e-commerce and image heavy applications. The article [contains many examples](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#2-multimodal-search-in-practice) of multimodal search and a [walkthrough](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#3-detailed-example) of the [code](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/index_and_search.py) to reproduce these.* - -- -
-- An example of multimodal search that uses multimodal queries to curate search results based on text and images. -
- -## 1. Introduction to Multimodal Search - -Often the items we want to search over contain more than just text. For example, they may also contain images or videos. These modalities other than text will often contain a wealth of information that is not captured by the text. By incorporating these other modalities into search, the relevancy of results can be improved as well as unlocking new ways to search. Examples of multimodal search include domains like fashion and e-commerce which may have title, description as well as multiple images displaying the item. This data can also help disambiguate the subject of the image - for example if there are multiple items present like pants and a top, the text can provide the necessary context to identify the correct subject. The information contained in these data across modalities is complementary and rich. - -This articles has three main parts: -1. [Introduction to Multimodal Search.](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#1-introduction) -2. [Multimodal Search in Practice.](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#2-multimodal-search-in-practice) - - 2.1. [Multimodal Queries](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#21-multimodal-queries) - - 2.2. [Negation](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#22-negation) - - 2.3. [Excluding Low Quality Images](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#23-excluding-low-quality-images) - - 2.4. [Searching with Images](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#24-searching-with-images) - - 2.5. [Conditional Search with Popular or Liked Items](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#25-conditional-search-with-popular-or-liked-items) - - 2.6. [Searching as Prompting](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#26-searching-as-prompting) - - 2.7. [Ranking with Other Signals](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#27-ranking-with-other-signals) - - 2.8. [Multimodal Entities](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#28-multimodal-entities) - -3. [Detailed Example (with code)](https://github.com/marqo-ai/marqo/blob/mainline/examples/MultiModalSearch/article.md#3-detailed-example) - -- -
-- An example of multimodal "document" that contain both images and text. -
- -### 1.1 Multimodal Search - -Multimodal search is search that operates over multiple modalities. We can think of two ways of doing multimodal search, using multimodal queries and multimodal documents. In both cases, they may contain any combination of text and images. For clarity we will stick to two modalities for now, text and images but the concepts are not restricted to just those and can be extended to video or audio (for example). - -- -
-- An example of multimodal search using images and text to refine a search. -
- -### 1.2 Benefits - -There are numerous benefits to this multimodal approach. For example: - -- The mulit-modal representations of documents allows for utilizing not just text or images or a combination of these. This allows complementary information to be captured that is not present in either modality. -- Using multimodal representations allows for updatable and editable meta data for documents without re-training a model or re-indexing large amounts of data. -- Relevance feedback can be easily incorporated at a document level to improve or modify results. -- Curating queries with additional context allows for personalization and curation of results on a per query basis without additional models or fine-tuning. -- Curation can be performed in natural language. -- Business logic can be incorporated into the search using natural language. - -## 2. Multimodal Search in Practice - -In this section we will walk through a number of ways multimodal search can be used to improve and curate results. - -### 2.1 Multimodal Queries - -Multimodal queries are queries that are made up of multiple components and/or multiple modalities. The benefit is that it effectively allows us to modify the scoring function for the approximate-knn to take into account additional similarities - for example, across multiple images or text and images. The similarity scoring will now be against a weighted collection of items rather than a single piece of text. This allows finer grained curation of search results than by using a single part query alone. We have seen previous examples of this earlier in the article already where both images and text are used to curate the search. - -Shown below is an example of this where the query has multiple components. The first query is for an item while the second query is used to further condition the results. This acts as a “soft” or “semantic” filter. - -```python -query = {"green shirt":1.0, "short sleeves":1.0} -``` - -This multi-part query can be understood to be a form of manual [query expansion](https://en.wikipedia.org/wiki/Query_expansion). The animation below illustrates how the query can be used to modify search results. - -- -
-- An example of multimodal search two text queries to further refine the search. -
- - -### 2.2 Negation - -In the previous examples we saw how multiple queries can be used to condition the search. In those examples, the terms were being added with a positive weighting. Another way to utilise these queries is to use negative weighting terms to move away from particular terms or concepts. Below is an example of a query with an additional negative term: - -```python -query = {"green shirt":1.0, "short sleeves":1.0, "buttons":-1.0} -``` - -Now the search results are also moving away from the `buttons` while being drawn to the `green shirt` and `short sleeves`. - -- -
-- An example of multimodal search using negation to avoid certain concepts - `buttons` in this case. -
- - -### 2.3 Excluding Low Quality Images - -Negation can help avoid particular things when returning results, like low-quality images or ones with artifacts. Avoiding things like low-quality images or [NSFW content](https://www.marqo.ai/blog/refining-image-quality-and-eliminating-nsfw-content-with-marqo) can be easily described using natural language as seen in the example query below: - -```python -query = {"yellow handbag":1.0, "lowres, blurry, low quality":-1.1} -``` - -In the example below the initial results contain three low-quality images. These are denoted by a red mark for clarity and the poor image quality can be seen by the strong banding in the background of these images. - -- -
-- An example of multimodal search using negation to avoid low quality images. The low-quality images are denoted by a red dot next to them. -
- -An alternative is to use the same query to clean up existing data by using a positive weight to [actively identify low-quality images](https://www.marqo.ai/blog/refining-image-quality-and-eliminating-nsfw-content-with-marqo) for removal. - -### 2.4 Searching with Images - -In the earlier examples we have seen how searching can be performed using weighted combinations of images and text. Searching with images alone can also be performed to utilize image similarity to find similar looking items. An example query is below: - -```python -query = {image_url:1.0} -``` - -It can also be easily extended in the same way as with text to include multiple multimodal terms. - -```python -query = {image_url:1.0, "RED":1.0} -``` - -- -
-- An example of multimodal search using an image as the query before refining the search further with natural language. -
- -### 2.5 Conditional Search with Popular or Liked Items - -Another way to utilize the multimodal queries is to condition the query using a set of items. For example, this set could come from previously liked or purchased items. This will steer the search in the direction of these items and can be used to promote particular items or themes. This method can be seen as a form of [relevance feedback](https://en.wikipedia.org/wiki/Rocchio_algorithm) that uses items instead of variations on the query words themselves. To avoid any extra inference at search time, we can pre-compute the set of items vectors and fuse them into a context vector. - -```python -query = {"backpack":1.0} query = {"backpack":1.0} -context_vector1 = [.1, ...,.-.8] context_vector2 = [-.01, ...,.3] -``` - -Below is an example of two sets of 4 items that are going to be used to condition the search. The contribution for each item can also be adjusted to reflect the magnitude of its popularity. - -- -
-- Two sets of items based on different relevance feedback mechanisms that can be used to curate the search. -
- -- -
-- Two results sets for identical queries that were conditioned on two different sets of items. The search results are aligned with their conditioning. -
- - -### 2.6 Searching as Prompting - -An alternative method to constructing multi-part queries is to append specific characteristics or styles to the end of a query. This is effectively the same as "prompting" in text to image generation models like [DALLE](https://openai.com/research/dall-e) and [Stable Diffusion](https://github.com/CompVis/stable-diffusion). For example, additional descriptors can be appended to a query to curate the results. An example query with additional prompting is below: - -```python -query = {"handbag, bold colors, vibrant":1.0} -``` - -The impact of this prompting on the results can be seen in the animation. - -- -
-- Results that are curated with prompting. -
- -Another example query of searching as prompting: - -```python -query = {"cozy sweater, xmas, festive, holidays":1.0} -``` - -- -
-- Results that are curated with prompting. -
- - -### 2.7 Ranking with Other Signals - -In addition to curating the search with the methods outlined above, we can modify the similarity score to allow ranking with other signals. For example document specific values can be used to multiply or bias the vector similarity score. This allows for document specific concepts like overall popularity to impact the ranking. Below is the regular query and search results based on vector similarity alone. There are three low-quality images in the result set and can be identified by the strong banding in the background of the images (and are denoted by a red square). - -```python -query = {"yellow handbag":1.0} -``` - -- -
-- Results that are based on similarity alone. -
- -To illustrate the ability to modify the score and use other signals for ranking we have calculated an [aesthetic score](https://github.com/LAION-AI/aesthetic-predictor) for each item. The aesthetic score is meant to identify "aesthetic" images and rate them between 1 and 10. We can now bias the score using this document (but query independent) field. An example is below: - -```python -query = {"yellow handbag":1.0} -score_modifiers = { - "add_to_score": - [ - {"field_name": "aesthetic_score", "weight": 0.02}] - } -``` - -- -
-- Results that are based on similarity and aesthetic score. -
- -In the image above, the results have now been biased by the aesthetic score to remove the low-quality images (which have a low aesthetic score). This example uses aesthetic score but any other number of scalars can be used - for example ones based around sales and/or popularity. - - -### 2.8 Multimodal Entities - -Multimodal entities or items are just that - representations that take into account multiple pieces of information. These can be images or text or some combination of both. Examples include using multiple display images for ecommerce. Using multiple images can aid retrieval and help disambiguate between the item for sale and other items in the images. If a multimodal model like [CLIP](https://openai.com/research/clip) is used, then the different modalities can be used together as they live in the same latent space. - -```python -document = {"combined_text_image": - { - "image1":"https://some_image1.png", - "image2":"https://some_image2.png", - "image3":"https://some_image3.png", - "title": "Fresh and Versatile: The Green Cotton T-Shirt for Effortless Style" - "description": "Crafted from high-quality cotton fabric, this t-shirt offers a soft and breathable feel, ensuring all-day comfort." - } - } -``` - -- -
- - -## 3. Detailed Example - -In the next section we will demonstrate how all of the above concepts can be implemented using [Marqo](https://github.com/marqo-ai/marqo). - -### 3.1 Dataset - -The dataset consists of ~220,000 e-commerce products with images, text and some meta-data. The items span many categories of items, from clothing and watches to bags, backpacks and wallets. Along with the images they also have an [aesthetic score](https://github.com/LAION-AI/aesthetic-predictor), caption, and price. We will use all these features in the following example. Some images from the dataset are below. - -- -
-- Some example images from the dataset. -
- - -### 3.2 Installing Marqo - -The first thing to do is start [Marqo](https://github.com/marqo-ai/marqo). To start, we can run the following [docker command](https://marqo.pages.dev/0.0.21/) from a terminal (for M-series Mac users see [here](https://marqo.pages.dev/0.0.21/m1_mac_users/)). - -```bash -docker pull marqoai/marqo:latest -docker rm -f marqo -docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest -``` - -The next step is to install the python client (a REST API is also [available](https://docs.marqo.ai/0.0.21/)). - -```bash -pip install marqo -``` - -### 3.3 Loading the Data - -The first step is to load the data. The images are hosted on s3 for easy access. We use a file that contains all the image pointers as well as the meta data for them (found [here](https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce_meta_data.csv)). - -```python -import pandas as pd - -N = 100 # samples to use, the full dataset is ~220k -filename = "https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce_meta_data.csv" -data = pd.read_csv(filename, nrows=N) -data['_id'] = data['s3_http'] -documents = data[['s3_http', '_id', 'price', 'blip_large_caption', 'aesthetic_score']].to_dict(orient='records') -``` - -### 3.4 Create the Index - -Now we have the data prepared, we can [set up the index](https://marqo.pages.dev/0.0.21/API-Reference/indexes/). We will use a [ViT-L-14 from open clip](https://github.com/mlfoundations/open_clip) as the model. This model is very good to start with. It is recommended to [use a GPU](https://marqo.pages.dev/0.0.21/using_marqo_with_a_gpu/) (at least 4GB VRAM) otherwise a [smaller model](https://marqo.pages.dev/0.0.21/Models-Reference/dense_retrieval/#open-clip) can be used (although results may be worse). - -```python -from marqo import Client - -client = Client() - -index_name = 'multimodal' -settings = { - "index_defaults": { - "treat_urls_and_pointers_as_images": True, - "model": "open_clip/ViT-L-14/laion2b_s32b_b82k", - "normalize_embeddings": True, - }, - } - -response = client.create_index(index_name, settings_dict=settings) -``` - -### 3.5 Add Images to the Index - -Now we can [add images](https://marqo.pages.dev/0.0.21/API-Reference/documents/) to the index which can then be searched over. We can also select the device we want to use and also which fields in the data to embed. To use a GPU, change the device to `cuda` (see [here](https://marqo.pages.dev/0.0.21/using_marqo_with_a_gpu/) for how to use Marqo with a GPU). - -```python -device = 'cpu' # use 'cuda' if a GPU is available - -res = client.index(index_name).add_documents(documents, client_batch_size=64, tensor_fields=["s3_http"], device=device) -``` - -### 3.6 Searching - -Now the images are indexed, we can start [searching](https://marqo.pages.dev/0.0.21/API-Reference/search/). - -```python -query = "green shirt" -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) -``` - -### 3.7 Searching as Prompting - -Like in the examples above, it is easy to do more specific searches by adopting a similar style to prompting. - -```python -query = "cozy sweater, xmas, festive, holidays" -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) -``` - -### 3.8 Searching with Semantic Filters - -Now we can extend the searching to use multi-part queries. These can act as "semantic filters" that can be based on any words to further refine the results. - -```python -query = {"green shirt":1.0, "short sleeves":1.0} -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) -``` - -### 3.9 Searching with Negation - -In addition to additive terms, negation can be used. Here we remove buttons from long sleeve shirt examples. - -```python -query = {"green shirt":1.0, "short sleeves":1.0, "buttons":-1.0} -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) -``` - -### 3.10 Searching with Images - -In addition to text, searching can be done with images alone. - -```python -image_context_url = "https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/red_backpack.jpg" -query = {image_context_url:1.0} -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) -``` - -### 3.11 Searching with Multimodal Queries - -The multi-part queries can span both text and images. - -```python -# skateboard -image_context_url = "https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/71iPk9lfhML._SL1500_.jpg" - -query = {"backpack":1.0, image_context_url:1.0} -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - -# trees/hiking -image_context_url = "https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/trees.jpg" - -query = {"backpack":1.0, image_context_url:1.0} -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) -``` - -### 3.12 Searching with Ranking - -We can now extend the search to also include document specific values to boost the [ranking of documents](https://marqo.pages.dev/0.0.21/API-Reference/search/#score-modifiers) in addition to the vector similarity. In this example, each document has a field called `aesthetic_score` which can also be used to bias the score of each document. - -```python -query = {"yellow handbag":1.0} - -# we define the extra document specific data to use for ranking -# multiple fields can be used to multiply or add to the vector similarity score -score_modifiers = { - "add_to_score": - [ - {"field_name": "aesthetic_score", "weight": 0.02}] - } - -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10, score_modifiers=score_modifiers) - -# now get the aggregate aesthetic score -print(sum(r['aesthetic_score'] for r in res['hits'])) - -# and compare to the non ranking version -res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - -print(sum(r['aesthetic_score'] for r in res['hits'])) -``` - -### 3.13 Searching with Popular or Liked Products - -Results at a per-query level can be personalized using sets of items. These items could be previously liked or popular items. To perform this we do it in two stages. The first is to calculate the "context vector" which is a condensed representation of the items. This is pre-computed and then stored to remove any additional overhead at query time. The context is generated by [creating documents](https://marqo.pages.dev/0.0.21/Advanced-Usage/document_fields/#multimodal-combination-object) of the item sets and retrieving the corresponding vectors. -The first step is to create a new index to calculate the context vectors. -```python -# we create another index to create a context vector -index_name_context = 'multimodal-context' -settings = { - "index_defaults": { - "treat_urls_and_pointers_as_images": True, - "model": "open_clip/ViT-L-14/laion2b_s32b_b82k", - "normalize_embeddings": True, - }, - } - -res = client.create_index(index_name_context, settings_dict=settings) -``` - -Then we [construct the objects](https://marqo.pages.dev/0.0.21/Advanced-Usage/document_fields/#multimodal-combination-object) from the sets of items we want to use for the context. - -```python -# create the document that will be created from multiple images -document1 = {"_id":"1", - "multimodal": - { - "top_1":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/blue_backpack.jpg", - "top_2":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/dark_backpack.jpeg", - "top_3":'https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/green+_backpack.jpg', - "top_4":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/red_backpack.jpg" - } - } - -# create the document that will be created from multiple images -document2 = {"_id":"2", - "multimodal": - { - "top_1":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/office_1.jpg", - "top_2":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/office2.webp", - "top_3":'https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/office_3.jpeg', - "top_4":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/office_4.jpg" - } - } - -``` - -We can now [define mappings](https://marqo.pages.dev/0.0.21/API-Reference/mappings/) objects to determine how we want to combine the different fields. We can then index the documents. - -```python -# define how we want to combined -mappings1 = {"multimodal": - {"type": "multimodal_combination", - "weights": {"top_1": 0.40, - "top_2": 0.30, - "top_3": 0.20, - "top_4": 0.10, - }}} - -# define how we want to combined -mappings2 = {"multimodal": - {"type": "multimodal_combination", - "weights": {"top_1": 0.25, - "top_2": 0.25, - "top_3": 0.25, - "top_4": 0.25, - }}} - -# index the document -res = client.index(index_name_context).add_documents([document1], tensor_fields=["multimodal"], device=device, mappings=mappings1) - -# index the other using a different mappings -res = client.index(index_name_context).add_documents([document2], tensor_fields=["multimodal"], device=device, mappings=mappings2) -``` - -To get the vectors to use as context vectors at search time - we need to [retrieve the calculated vectors](https://marqo.pages.dev/0.0.21/API-Reference/documents/). We can then [create a context object](https://marqo.pages.dev/0.0.21/API-Reference/search/#context) that is used at search time. - -```python - -# retrieve the embedding to use as a context for search -indexed_documents = client.index(index_name_context).get_documents([document1['_id'], document2['_id']] , expose_facets=True) - -# get the embedding -context_vector1 = indexed_documents['results'][0]['_tensor_facets'][0]['_embedding'] -context_vector2 = indexed_documents['results'][1]['_tensor_facets'][0]['_embedding'] - -# create the context for the search -context1 = {"tensor": - [ - {'vector':context_vector1, 'weight':0.50} - ] - } - -# create the context for the search -context2 = {"tensor": - [ - {'vector':context_vector2, 'weight':0.50} - ] - } - -# now search -query = {"backpack":1.0} -res1 = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10, context=context1) - -res2 = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10, context=context2) -``` - -### 3.14 Indexing as Multimodal Objects - -For the final part of this example, we demonstrate how both text and images can be combined together as a single entity and allow multimodal representations. -We will create a new index in the same way as before but with a new name. - -```python -# we will create a new index for the multimodal objects -index_name_mm_objects = 'multimodal-objects' -settings = { - "index_defaults": { - "treat_urls_and_pointers_as_images": True, - "model": "open_clip/ViT-L-14/laion2b_s32b_b82k", - "normalize_embeddings": True, - }, - } - -res = client.create_index(index_name_mm_objects, settings_dict=settings) -``` - - To index the documents as multimodal objects, we need to create a new field and add in what we want to use. - - ```python - # now create the multimodal field in the documents - for doc in documents: - doc['multimodal'] = { - 'blip_large_caption':doc['blip_large_caption'], - 's3_http':doc['s3_http'], - } -``` - -The next step is to index. The only change is an additional mappings object which details how we want to combine the different fields for each document. - -```python -# the fields we do not want to embed -non_tensor_fields = ['_id', 'price', 'blip_large_caption', 'aesthetic_score', 's3_http'] - -# define how we want to combine the fields -mappings = {"multimodal": - {"type": "multimodal_combination", - "weights": - {"blip_large_caption": 0.20, - "s3_http": 0.80, - } - } - } - -# now index -res = client.index(index_name_mm_objects).add_documents(documents, client_batch_size=64, tensor_fields=["multimodal"], device=device, mappings=mappings) -``` - -Finally we can search in the same way as before. - -```python -query = "red shawl" -res = client.index(index_name_mm_objects).search(query, searchable_attributes=['multimodal'], device=device, limit=10) -``` - -### 4. Conclusion - -To summarise, we have shown how vector search can be easily modified to enable a number of useful functions. These include the use of multimodal queries that comprise text and images, queries with negative terms, excluding low quality images, searching with images, per query search curation using popular items, verbose searching via prompting, ranking with external scalars and multimodal representations. If you are interested in learning more, then head to [Marqo](https://github.com/marqo-ai/marqo), see other [examples](https://github.com/marqo-ai/marqo/tree/mainline/examples) or read more in our [blog](https://www.marqo.ai/blog). - - diff --git a/examples/MultiModalSearch/assets/backpack.gif b/examples/MultiModalSearch/assets/backpack.gif deleted file mode 100644 index 65304515b..000000000 Binary files a/examples/MultiModalSearch/assets/backpack.gif and /dev/null differ diff --git a/examples/MultiModalSearch/assets/backpack1.gif b/examples/MultiModalSearch/assets/backpack1.gif deleted file mode 100644 index 61baa230d..000000000 Binary files a/examples/MultiModalSearch/assets/backpack1.gif and /dev/null differ diff --git a/examples/MultiModalSearch/assets/backpack2.gif b/examples/MultiModalSearch/assets/backpack2.gif deleted file mode 100644 index 9daa8dcad..000000000 Binary files a/examples/MultiModalSearch/assets/backpack2.gif and /dev/null differ diff --git a/examples/MultiModalSearch/assets/context.png b/examples/MultiModalSearch/assets/context.png deleted file mode 100644 index 213e701a4..000000000 Binary files a/examples/MultiModalSearch/assets/context.png and /dev/null differ diff --git a/examples/MultiModalSearch/assets/example.png b/examples/MultiModalSearch/assets/example.png deleted file mode 100644 index c605a7780..000000000 Binary files a/examples/MultiModalSearch/assets/example.png and /dev/null differ diff --git a/examples/MultiModalSearch/assets/example_data.png b/examples/MultiModalSearch/assets/example_data.png deleted file mode 100644 index 0c3ba78c3..000000000 Binary files a/examples/MultiModalSearch/assets/example_data.png and /dev/null differ diff --git a/examples/MultiModalSearch/assets/handbag1-1.png b/examples/MultiModalSearch/assets/handbag1-1.png deleted file mode 100644 index 7da68fb5e..000000000 Binary files a/examples/MultiModalSearch/assets/handbag1-1.png and /dev/null differ diff --git a/examples/MultiModalSearch/assets/handbag1.gif b/examples/MultiModalSearch/assets/handbag1.gif deleted file mode 100644 index fa3e5678e..000000000 Binary files a/examples/MultiModalSearch/assets/handbag1.gif and /dev/null differ diff --git a/examples/MultiModalSearch/assets/handbag2.gif b/examples/MultiModalSearch/assets/handbag2.gif deleted file mode 100644 index 6f3552597..000000000 Binary files a/examples/MultiModalSearch/assets/handbag2.gif and /dev/null differ diff --git a/examples/MultiModalSearch/assets/handbag2.png b/examples/MultiModalSearch/assets/handbag2.png deleted file mode 100644 index 09d1bd89b..000000000 Binary files a/examples/MultiModalSearch/assets/handbag2.png and /dev/null differ diff --git a/examples/MultiModalSearch/assets/multim.png b/examples/MultiModalSearch/assets/multim.png deleted file mode 100644 index b75e01e14..000000000 Binary files a/examples/MultiModalSearch/assets/multim.png and /dev/null differ diff --git a/examples/MultiModalSearch/assets/readme.md b/examples/MultiModalSearch/assets/readme.md deleted file mode 100644 index 8b1378917..000000000 --- a/examples/MultiModalSearch/assets/readme.md +++ /dev/null @@ -1 +0,0 @@ - diff --git a/examples/MultiModalSearch/assets/shirt1.gif b/examples/MultiModalSearch/assets/shirt1.gif deleted file mode 100644 index a4e42a342..000000000 Binary files a/examples/MultiModalSearch/assets/shirt1.gif and /dev/null differ diff --git a/examples/MultiModalSearch/assets/shirt2.gif b/examples/MultiModalSearch/assets/shirt2.gif deleted file mode 100644 index 91987fd81..000000000 Binary files a/examples/MultiModalSearch/assets/shirt2.gif and /dev/null differ diff --git a/examples/MultiModalSearch/assets/stripes.gif b/examples/MultiModalSearch/assets/stripes.gif deleted file mode 100644 index b6ae8a95e..000000000 Binary files a/examples/MultiModalSearch/assets/stripes.gif and /dev/null differ diff --git a/examples/MultiModalSearch/assets/sweater1.gif b/examples/MultiModalSearch/assets/sweater1.gif deleted file mode 100644 index 858bb26da..000000000 Binary files a/examples/MultiModalSearch/assets/sweater1.gif and /dev/null differ diff --git a/examples/MultiModalSearch/index_and_search.py b/examples/MultiModalSearch/index_and_search.py deleted file mode 100644 index 74f733bdc..000000000 --- a/examples/MultiModalSearch/index_and_search.py +++ /dev/null @@ -1,282 +0,0 @@ -import pandas as pd -import os - -from marqo import Client - - -if __name__ == "__main__": - - ####################################################################### - ############ Install Marqo and the python client ############ - ####################################################################### - - # run the following from the terminal - # see https://marqo.pages.dev/0.0.21/ - - """ - docker pull marqoai/marqo:latest - docker rm -f marqo - docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest - - pip install marqo - """ - - ####################################################################### - ############ Read in the data ############ - ####################################################################### - - N = 100 # the number of samples to use (full size is ~220k) - - filename = "https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce_meta_data.csv" - data = pd.read_csv(filename, nrows=N) - data['_id'] = data['s3_http'] - documents = data[['s3_http', '_id', 'price', 'blip_large_caption', 'aesthetic_score']].to_dict(orient='records') - - print("Finished reading data...") - - ####################################################################### - ############ Create the index ############ - ####################################################################### - - # https://marqo.pages.dev/0.0.21/ - client = Client() - - # https://marqo.pages.dev/0.0.21/API-Reference/indexes/ - index_name = 'multimodal' - settings = { - "index_defaults": { - "treat_urls_and_pointers_as_images": True, - "model": "open_clip/ViT-L-14/laion2b_s32b_b82k", - "normalize_embeddings": True, - }, - } - - # if the index already exists it will cause an error - res = client.create_index(index_name, settings_dict=settings) - print("Finished creating index...") - - ####################################################################### - ############ Index the data (image only) ############ - ####################################################################### - - # https://marqo.pages.dev/0.0.21/API-Reference/documents/ - device = 'cpu' # change to 'cuda' if GPU is available - res = client.index(index_name).add_documents(documents, client_batch_size=64, tensor_fields=["s3_http"], device=device) - - print("Finished indexing data...") - - ####################################################################### - ############ Search ############ - ####################################################################### - - # https://marqo.pages.dev/0.0.21/API-Reference/search/ - query = "green shirt" - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - - - ####################################################################### - ############ Searching as prompting ############ - ####################################################################### - - query = "cozy sweater, xmas, festive, holidays" - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - - ####################################################################### - ############ Searching with semantic filters ############ - ####################################################################### - - # https://marqo.pages.dev/0.0.21/API-Reference/search/#query-q - query = {"green shirt":1.0, "short sleeves":1.0} - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - - - ####################################################################### - ############ Searching with negation ############ - ####################################################################### - - query = {"green shirt":1.0, "short sleeves":1.0, "buttons":-1.0} - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - - ####################################################################### - ############ Searching with images ############ - ####################################################################### - - image_context_url = "https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/red_backpack.jpg" - query = {image_context_url:1.0} - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - - ####################################################################### - ############ Searching with multi-modal queries ############ - ####################################################################### - - # skateboard - image_context_url = "https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/71iPk9lfhML._SL1500_.jpg" - - query = {"backpack":1.0, image_context_url:1.0} - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - - # trees/hiking - image_context_url = "https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/trees.jpg" - - query = {"backpack":1.0, image_context_url:1.0} - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - - ####################################################################### - ############ Searching with ranking ############ - ####################################################################### - - query = {"yellow handbag":1.0} - - # https://marqo.pages.dev/0.0.21/API-Reference/search/#score-modifiers - # we define the extra document specific data to use for ranking - # multiple fields can be used to multiply or add to the vector similairty score - score_modifiers = { - "add_to_score": - [ - {"field_name": "aesthetic_score", "weight": 0.02}] - } - - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10, score_modifiers=score_modifiers) - - # now get the aggregate aesthetic score - print(sum(r['aesthetic_score'] for r in res['hits'])) - - # and compare to the non ranking version - res = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10) - - print(sum(r['aesthetic_score'] for r in res['hits'])) - - print("Finished searching data...") - - ####################################################################### - ############ Guided search with popular products ############ - ####################################################################### - - # we create another index to create a context vector - # we create another index to create a context vector - index_name_context = 'multimodal-context' - settings = { - "index_defaults": { - "treat_urls_and_pointers_as_images": True, - "model": "open_clip/ViT-L-14/laion2b_s32b_b82k", - "normalize_embeddings": True, - }, - } - - res = client.create_index(index_name_context, settings_dict=settings) - - # https://marqo.pages.dev/0.0.21/Advanced-Usage/document_fields/#multimodal-combination-object - # create the document that will be created from multiple images - document1 = {"_id":"1", - "multimodal": - { - "top_1":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/blue_backpack.jpg", - "top_2":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/dark_backpack.jpeg", - "top_3":'https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/green+_backpack.jpg', - "top_4":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/red_backpack.jpg" - } - } - - # create the document that will be created from multiple images - document2 = {"_id":"2", - "multimodal": - { - "top_1":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/office_1.jpg", - "top_2":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/office2.webp", - "top_3":'https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/office_3.jpeg', - "top_4":"https://marqo-overall-demo-assets.s3.us-west-2.amazonaws.com/ecommerce/office_4.jpg" - } - } - - # https://marqo.pages.dev/0.0.21/API-Reference/mappings/ - # define how we want to comnbined - mappings1 = {"multimodal": {"type": "multimodal_combination", - "weights": {"top_1": 0.40, - "top_2": 0.30, - "top_3": 0.20, - "top_4": 0.10, - }}} - - # define how we want to comnbined - mappings2 = {"multimodal": {"type": "multimodal_combination", - "weights": {"top_1": 0.25, - "top_2": 0.25, - "top_3": 0.25, - "top_4": 0.25, - }}} - - - # index the document - res = client.index(index_name_context).add_documents([document1], tensor_fields=["multimodal"], device=device, mappings=mappings1) - - # index the other using a different mappings - res = client.index(index_name_context).add_documents([document2], tensor_fields=["multimodal"], device=device, mappings=mappings2) - - # retrieve the embedding to use as a context for search - indexed_documents = client.index(index_name_context).get_documents([document1['_id'], document2['_id']] , expose_facets=True) - - # get the embedding - context_vector1 = indexed_documents['results'][0]['_tensor_facets'][0]['_embedding'] - context_vector2 = indexed_documents['results'][1]['_tensor_facets'][0]['_embedding'] - - # create the context for the search - context1 = {"tensor": - [ - {'vector':context_vector1, 'weight':0.50} - ] - } - - # create the context for the search - context2 = {"tensor": - [ - {'vector':context_vector2, 'weight':0.50} - ] - } - - # now search - query = {"backpack":1.0} - res1 = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10, context=context1) - - res2 = client.index(index_name).search(query, searchable_attributes=['s3_http'], device=device, limit=10, context=context2) - - - ####################################################################### - ############ Indexing as multi-modal objects ############ - ####################################################################### - - # we will create a new index for the multimodal objects - index_name_mm_objects = 'multimodal-objects' - settings = { - "index_defaults": { - "treat_urls_and_pointers_as_images": True, - "model": "open_clip/ViT-L-14/laion2b_s32b_b82k", - "normalize_embeddings": True, - }, - } - - res = client.create_index(index_name_mm_objects, settings_dict=settings) - print(res) - - # now create the multi-modal field in the documents - for doc in documents: - doc['multimodal'] = { - 'blip_large_caption':doc['blip_large_caption'], - 's3_http':doc['s3_http'], - } - - # define how we want to combine the fields - mappings = {"multimodal": - {"type": "multimodal_combination", - "weights": - {"blip_large_caption": 0.20, - "s3_http": 0.80, - } - } - } - - # now index - res = client.index(index_name_mm_objects).add_documents(documents, client_batch_size=64, tensor_fields=["multimodal"], device=device, mappings=mappings) - - # now search - query = "red shawl" - res = client.index(index_name_mm_objects).search(query, searchable_attributes=['multimodal'], device=device, limit=10) diff --git a/examples/MultiModalSearch/readme.md b/examples/MultiModalSearch/readme.md deleted file mode 100644 index 64d44e385..000000000 --- a/examples/MultiModalSearch/readme.md +++ /dev/null @@ -1,7 +0,0 @@ -## Article - -The article is contained in `article.md` and the images are in the assets folder. - -## Code - -The file `index_and_search.py` contains the code to reproduce the article. First install the requirements found in `requirements.txt` diff --git a/examples/MultiModalSearch/requirements.txt b/examples/MultiModalSearch/requirements.txt deleted file mode 100644 index 078f1b4d1..000000000 --- a/examples/MultiModalSearch/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -pandas -marqo==0.9.6 diff --git a/examples/SimpleWiki/README.md b/examples/SimpleWiki/README.md deleted file mode 100644 index b6757fa53..000000000 --- a/examples/SimpleWiki/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# Simple Wikipedia Demo - -## Getting Started -1. Download the Dataset from - [Simple Wikipedia](https://drive.google.com/file/d/1OEqXeIdqaZb6BwzKIgw8G_sDi91fBawt/view?usp=sharing). - -2. Run Marqo; - - ``` - docker rm -f marqo;docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest - ``` - For mode detailed instructions, check the [getting started guide](index.md). - -3. Run the `simple_wiki_demo.py` script via the following command (Note it can take a bit of time to index depending on the computer): - ``` - python3 simple_wiki_demo.py - ``` - - diff --git a/examples/SimpleWiki/simple_wiki_demo.py b/examples/SimpleWiki/simple_wiki_demo.py deleted file mode 100644 index 1a7b45fb5..000000000 --- a/examples/SimpleWiki/simple_wiki_demo.py +++ /dev/null @@ -1,145 +0,0 @@ -##################################################### -### STEP 0. Import and define any helper functions -##################################################### - -from marqo import Client -from marqo.api.exceptions import MarqoApiError -import numpy as np -import json -import pprint -import copy -import math - -def read_json(filename: str) -> dict: - # reads a json file - with open(filename, 'r', encoding='utf-8') as f: - data = json.load(f) - return data - -def replace_title(data: dict) -> dict: - # removes the wikipedia from the title for better matching - data['title'] = data['title'].replace('- Wikipedia', '') - return data - -def split_big_docs(data, field='content', char_len=5e4): - # there are some large documents which can cause issues for some users - new_data = [] - for dat in data: - - content = dat[field] - N = len(content) - - if N >= char_len: - n_chunks = math.ceil(N / char_len) - new_content = np.array_split(list(content), n_chunks) - - for _content in new_content: - new_dat = copy.deepcopy(dat) - new_dat[field] = ''.join(_content) - new_data.append(new_dat) - else: - new_data.append(dat) - return new_data - -##################################################### -### STEP 1. load the data -##################################################### - -# download the json formatted simplewiki from here - -# https://www.kaggle.com/datasets/louisgeisler/simple-wiki?resource=download -# or from -# https://drive.google.com/file/d/1OEqXeIdqaZb6BwzKIgw8G_sDi91fBawt/view?usp=sharing -dataset_file = "simplewiki.json" - -# get the data -data = read_json(dataset_file) -# clean up the title -data = [replace_title(d) for d in data] -# split big ones to make it easier for users on all hardware -data = split_big_docs(data) -print(f"loaded data with {len(data)} entries") - -##################################################### -### STEP 2. start Marqo -##################################################### - -# Follow the instructions here https://github.com/marqo-ai/marqo - -##################################################### -### STEP 3. index some data with marqo -##################################################### - -# we use an index name. the index name needs to be lower case. -index_name = 'marqo-simplewiki-demo-all' - -# setup the client -client = Client() - -# we create the index. Note if it already exists an error will occur -# as you cannot overwrite an existing index -# try: -# client.delete_index(index_name) -# except: -# pass - -# we create the index and can set the model we want to use -# the onnx models are typically faster on both CPU and GPU -# to use non-onnx just use the name 'all_datasets_v4_MiniLM-L6' -client.create_index(index_name, model='onnx/all_datasets_v4_MiniLM-L6') - -device = 'cpu' - -responses = client.index(index_name).add_documents(data, device=device, client_batch_size=20, tensor_fields=['title', 'content']) - -# optionally take a look at the responses -#pprint.print(responses) - -####################################### -### STEP 4. Searching with marqo ###### -####################################### - - -# after indexing we can search using both keyword (lexical) and neural search -# this will perform neural search across all indexed fields - -# lets create a query -query = 'what is air made of?' - -results = client.index(index_name).search(query) - -# we can check the results - lets look at the top hit -pprint.pprint(results['hits'][0]) - -# we also get highlighting which tells us why this article was returned -pprint.pprint(results['hits'][0]['_highlights']) - -# we can restrict the search to specific fields as well -results = client.index(index_name).search(query, searchable_attributes=['content']) - -# we can check the results - lets look at the top hit -pprint.pprint(results['hits'][0]) - -# we can check the results - lets look at the top hit -pprint.pprint(results['hits'][0]) - -# we use lexical search instead of tensor search -results = client.index(index_name).search(query, searchable_attributes=['content'], search_method='LEXICAL') - -# we can check the results - lets look at the top hit -pprint.pprint(results['hits'][0]) - -# we can check the results - lets look at the top hit -pprint.pprint(results['hits'][0]) - - -# lets create another query -query = 'what is a cube?' - -results = client.index(index_name).search(query, searchable_attributes=['content']) - -# we can check the results - lets look at the top hit -pprint.pprint(results['hits'][0]) - -# we also get highlighting which tells us why this article was returned -pprint.pprint(results['hits'][0]['_highlights']) - diff --git a/examples/SpeechProcessing/.env_local b/examples/SpeechProcessing/.env_local deleted file mode 100644 index 1b198ea61..000000000 --- a/examples/SpeechProcessing/.env_local +++ /dev/null @@ -1,2 +0,0 @@ -HF_TOKEN="- -
- - -## The hot-dog 100k dataset -I was pretty interested to see what the model could produce given the same prompt, particularly across a large number of images. I used Huggingface [diffusers library](https://github.com/huggingface/diffusers) to [set up the generation](https://github.com/CompVis/stable-diffusion#diffusers-integration) and just let it run. My original plan of 1 million hot-dogs in a day quickly unraveled as I soon realized the required 695 hot-dogs/minute would be unattainable so I had to settle for 13 hot-dogs/minute and ~93,000 (only 7,000 off) images. - -- -
- - -Here is a sample of 100 images randomly selected. There is a pretty wide variety of dogs that are generated and some very interesting interpretations of what constitutes a hot dog. - -## Indexing the hot-dog 100k dataset - -To dig a bit deeper into hot dog-100k dataset, we can index the data using [Marqo](https://github.com/marqo-ai/marqo). This allows us to easily search the images and do some additional labeling and classifying of the images in the dataset. After downloading the dataset we start up Marqo: - -``` -pip install marqo -docker pull marqoai/marqo:latest; -docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest -``` - -Once Marqo is up and running we can get the files ready for indexing: - -```python -import glob -import os -from marqo import Client - -# this should be where the images are unzipped -images_directory = 'hot-dog-100k/' - -# the images are accessed via docker from here - you will be able -# to access them at something like http://[::]:8000/ or http://localhost:8000/ -docker_path = 'http://host.docker.internal:8222/' - -# we start an image server for easier access from within docker -pid = subprocess.Popen(['python3', '-m', 'http.server', '8222', '--directory', images_directory], stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT) - -# now find all the files -files = glob.glob(images_directory + "/*.jpg") - -# we want to map the filename only with its docker path -files_map = {os.path.basename(f):f for f in files} - -# update them to use the correct path -files_docker = [f.replace(images_directory, docker_path) for f in files] - -# now we create our documents for indexing - a list of python dicts -documents = [{"image_docker":file_docker, '_id':os.path.basename(file_docker)} for file_docker,file_local in zip(files_docker, files)] - -``` - -Now we can start indexing: - -```python -settings = { - "model":'ViT-L/14', - "treat_urls_and_pointers_as_images": True, - } -client.create_index("hot-dogs-100k", **settings) -responses = client.index("hot-dogs-100k").add_documents(documents, device="cuda", client_batch_size=50, tensor_fields=["image_docker"]) - -``` -Check we have our images in the index: - -```python -print(client.index("hot-dogs-100k").get_stats()) -``` - -## Cleaning the hot-dog 100k dataset - -One noticeable thing is the presence of some black images. These are caused by the built-in filtering that suppresses images which may be deemed NSFW. I couldn't be bothered to remove the filter so we have some of these images in the dataset. We can easily remove these though using Marqo. Since I am lazy I will just search for a blank image using a natural language description - *"a black image"*. - -```python -results = client.index("hot-dogs-100k").search("a black image") - -``` -- -
- - -Now we have a black image, we can search using that and find all the other duplicate black images and remove them from the dataset. - -```python -query = 'a black image' - -results = client.index(index_name).search(query) - -# remove the blank images -results = client.index(index_name).search(results['hits'][0]['image_docker'], limit=100) - -# we check the results - scores of very close to 1 are duplicated (this value can change depending on the task) -documents_delete = [r['_id'] for r in results['hits'] if r['_score'] > 0.99999] - -client.index(index_name).delete_documents(documents_delete) -``` - -Now our dataset should be free from images that do not contain hot dogs. - -## Labeling the hot-dog 100k dataset - -Given the variety of hot dogs generated from a single prompt, I was keen to understand more. A quick search of the following query - *"two hot dogs"* yielded something of interest but more was to follow, *"a hamburger"* and *"a face"*. - -```python -results = client.index("hot-dogs-100k").search("a face") -``` -- -
- - -Armed with this survey, I created a new index with the following four documents - *"one hot dog"*, *"two hot dogs"*, *"a hamburger"* and *"a face"*. We can use our dataset images as queries against these labels and get back scores for each. This is effectively doing [zero-shot learning](https://en.wikipedia.org/wiki/Zero-shot_learning) to provide a score for each category which could be thresholded to provide classification labels to each image. - -```python -index_name = 'one_dog_two' - -# the documents here are actually serving as labels. the documents (i.e. label) -# are returned in the order they most closely match and the score can be used for classification -labels = [{"label":"one hot dog"}, {"label":"two hot dogs"}, - {"label":"a hamburger"}, {"label": "a face"}] - -# get a copy of the labels only -label_strings = [list(a.values())[0] for a in labels] - -# we create a new index -settings = { - "model":'ViT-L/14', - "treat_urls_and_pointers_as_images": True, - } -client.create_index(index_name, **settings) - -# add our labels to the index -responses = client.index(index_name).add_documents(labels, tensor_fields=["label"]) - -# loop through the documents and search against the labels to get scores -for doc in documents: - - # the url for the image is what is used as the search - an image - # note: you will want a gpu to index the whole dataset device="cuda" - responses = client.index(index_name).search(doc['image_docker'], device='cpu') - - # now retrieve the score for each label and add it to our document - for lab in label_strings: - doc[lab.replace(' ','_')] = [r['_score'] for r in responses['hits'] if r['label'] == lab][0] - -``` - -Now for each image we have the computed scores against each category which were just "documents" in our small index. - -## Updating the hot-dog 100k dataset - -We have now calculated scores for the different categories described previously. The next thing to do is update our indexed data to have the scores. If we re-index a document it will update it with any new information. We can remove our image field from the documents as it has already been indexed with a model previously. - -```python -documents_image_docker = [doc.pop('image_docker') for doc in documents] -responses = client.index("hot-dogs-100k").add_documents(documents, device='cpu', client_batch_size=50, tensor_fields=["image_docker"]) -``` - -## Animating the hot-dog 100k dataset - -After all this work we can now animate the hot-dog-100k. We will do this by effectively "sorting" the vectors and creating a movie from these vectors accompanying images. Before we animate, we can make it more interesting as well by restricting the images we can search over by prefiltering on some of the scores we previously calculated. This effectively restricts the space we can use for the animation based on the filtering criteria. - -- -
- -To animate the images based on their sorted vectors we can take an image as a start point (based on the query "a photo of a smiling face") and find the next closest one (as seen above). Repeat the process until no more images are left and you have walked across the [latent space](https://en.wikipedia.org/wiki/Latent_space). We are effectively solving a variant of the [traveling salesmen problem](https://en.wikipedia.org/wiki/Travelling_salesman_problem) - albeit with an approximate algorithm. - -```python -# pick one to start -results = client.index("hot-dogs-100k").search('a photo of a smiling face', - searchable_attributes=['image_docker'], filter_string="a_face:[0.58 TO 0.99]") -# find the document that matches closest with the query -index = [ind for ind,doc in enumerate(documents) if doc['_id'] == results['hits'][0]['_id'] ][0] -current_document = documents[index] -# create a list to store the "sorted" documents -ordered_documents = [current_document['_id']] - -for i in range(len(documents)): - - # remove current document - client.index(index_name).delete_documents([current_document['_id']]) - - # now search with it to get next best - results = client.index(index_name).search(current_document['image_docker'], filter_string="a_face:[0.58 TO 0.99]", - searchabel_attributes=['image_docker'], device='cuda') - - next_document = results['hits'][0] - - # now add it - ordered_documents.append(next_document['_id']) - - current_document = next_document - -ordered_images = [files_map[f] for f in ordered_documents] -``` - -After we have done this walk we have the "sorted" list of images. These can then be animated in the order they appear in the list. - -- -
- -## Closing thoughts -Its amazing to watch the progress in image generation and the multi-modality of it all. The fidelity of the images is incredible and the ability to maniuplate images via prompt engineering is very interesting. Of particular interest is how this will impact search given their shared models. If you are interested in this check out [Marqo](https://github.com/marqo-ai/marqo) for yourself and [sign up](https://q78175g1wwa.typeform.com/to/d0PEuRPC) for the cloud beta. diff --git a/examples/StableDiffusion/hot-dog-100k.py b/examples/StableDiffusion/hot-dog-100k.py deleted file mode 100644 index 225b5d19d..000000000 --- a/examples/StableDiffusion/hot-dog-100k.py +++ /dev/null @@ -1,182 +0,0 @@ -##################################################### -### STEP 0. Import and define any helper functions -##################################################### - -from marqo import Client -from marqo.api.exceptions import MarqoApiError -import torch -import json -import pprint -import glob -import os -import pandas as pd -import subprocess - -##################################################### -### STEP 1. Setup some things and create the documents for indexing -##################################################### - -# this should be where the images are unzipped -# get the dataset from here https://drive.google.com/file/d/16_1MlX9GH-6v060jYA23eTJwH74fSU4L/view?usp=sharing -images_directory = 'hot-dog-100k/' - -# the images are accessed via docker from here - you will be able -# to access them at something like http://[::]:8000/ or http://localhost:8000/ -docker_path = 'http://host.docker.internal:8222/' - -# we start an image server for easier access from within docker -pid = subprocess.Popen(['python3', '-m', 'http.server', '8222', '--directory', images_directory], stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT) - -# now find all the files -files = glob.glob(images_directory + "/*.jpg") - -# we want to map the filename only with its docker path -files_map = {os.path.basename(f):f for f in files} - -# update them to use the correct path -files_docker = [f.replace(images_directory, docker_path) for f in files] - -# now we create our documents for indexing - a list of python dicts with keys as field names -documents = [{"image_docker":file_docker, '_id':os.path.basename(file_docker)} for file_docker,file_local in zip(files_docker, files)] - -##################################################### -### STEP 2. Initial indexing -##################################################### - -# we create the index and can set the model we want to use - - -# get the marqo client -client = Client() - -# index name - should be lowercase -index_name = 'hot-dogs-100k' - -settings = { - "model":'ViT-L/14', - "treat_urls_and_pointers_as_images": True, - } -client.create_index(index_name, **settings) - -# Here we index. A gpu is recommended (device='cuda') -responses = client.index(index_name).add_documents(documents, device='cpu', client_batch_size=50, tensor_fields=["image_docker"]) - - -##################################################### -### Step 3. Add some labels via zero-shot learning -##################################################### - - -index_name = 'one_dog_two' - -# the documents here are actually serving as labels. the document (i.e. label) -# that most closely matches is returned first and can be used as a label -# each one gets scored and those scores can also be kept -labels = [{"label":"one hot dog"}, {"label":"two hot dogs"}, - {"label":"a hamburger"}, {"label": "a face"}] - -# get a copy of the labels only -label_strings = [list(a.values())[0] for a in labels] - -# we create a new index -settings = { - "model":'ViT-L/14', - "treat_urls_and_pointers_as_images": True, - } -client.create_index(index_name, **settings) - -# add our labels to the index -responses = client.index(index_name).add_documents(labels, tensor_fields=["label"]) - -# loop through the documents and search against the labels to get scores -for doc in documents: - - # the url for the image is what is used as the search - an image - # note: you will want a gpu to index the whole dataset device="cuda" - responses = client.index(index_name).search(doc['image_docker'], device='cpu') - - # now retrieve the score for each label and add it to our document - for lab in label_strings: - doc[lab.replace(' ','_')] = [r['_score'] for r in responses['hits'] if r['label'] == lab][0] - -documents_image_docker = [doc.pop('image_docker') for doc in documents] -responses = client.index("hot-dogs-100k").add_documents(documents, device='cpu', client_batch_size=50, tensor_fields=["image_docker"]) - -##################################################### -### Step 4. Remove the black images -##################################################### - -query = 'a black image' - -results = client.index(index_name).search(query) - -# remove the blank images -results = client.index(index_name).search(results['hits'][0]['image_docker'], limit=100) - -# we check the results - scores of very close to 1 are duplicated (this value can change depending on the task) -documents_delete = [r['_id'] for r in results['hits'] if r['_score'] > 0.99999] - -client.index(index_name).delete_documents(documents_delete) - - -##################################################### -### Step 5. order the images based on their similarity with each other -##################################################### - -# pick one to start -results = client.index("hot-dogs-100k").search('a photo of a smiling face', - searchable_attributes=['image_docker'], - filter_string="a_face:[0.58 TO 0.99] AND a_hamburger:[0.60 TO 0.99]", device='cuda') - -# find the document that matches closest with the query -index = [ind for ind,doc in enumerate(documents) if doc['_id'] == results['hits'][0]['_id'] ][0] -current_document = documents[index] -# create a list to store the "sorted" documents -ordered_documents = [current_document['_id']] - -for i in range(len(documents)): - - # remove current document - client.index(index_name).delete_documents([current_document['_id']]) - - # now search with it to get next best - results = client.index(index_name).search(current_document['image_docker'], - searchabel_attributes=['image_docker'], - filter_string="a_face:[0.58 TO 0.99] AND a_hamburger:[0.60 TO 0.99]", - device='cuda') - - next_document = results['hits'][0] - - # now add it - ordered_documents.append(next_document['_id']) - - current_document = next_document - -ordered_images = [files_map[f] for f in ordered_documents] -deleted_documents = [d for d in documents if d['_id'] in ordered_documents] - -##################################################### -### Step 6. Animate them -##################################################### -import sys -import subprocess -from pathlib import Path - -def prepend_number(filename, number, new_dir): - _dir, _name = os.path.split(filename) - - return _dir + f'/{new_dir}/' + number + '_' + _name - -def copyWithSubprocess(cmd): - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - -save_base_dir = 'outputs/' -Path(save_base_dir).mkdir(parents=True, exist_ok=True) - -new_images = [save_base_dir + f'{str(i).zfill(5)}' + os.path.basename(f) for i,f in enumerate(ordered_images)] - -for image, new_image in zip(ordered_images, new_images): - - cmd=['cp', image, new_image] - - copyWithSubprocess(cmd) diff --git a/examples/podcast-search/README.md b/examples/podcast-search/README.md deleted file mode 100644 index 5eb145573..000000000 --- a/examples/podcast-search/README.md +++ /dev/null @@ -1,4 +0,0 @@ -- Clone the repository. -- Run Marqo, for instructions refer to the getting started guide. -- `cd` into the `podcast-search` directory. -- Run the code using `python3 podcast_search_demo.py` diff --git a/examples/podcast-search/data/podcast_data.csv b/examples/podcast-search/data/podcast_data.csv deleted file mode 100644 index a990c6dcf..000000000 --- a/examples/podcast-search/data/podcast_data.csv +++ /dev/null @@ -1,3 +0,0 @@ -name,description -"The water crisis in Jackson, Mississippi","What’s happening in Jackson is hardly unique: Cities and states across the US are setting themselves up for failure by postponing expensive but critical work on aging water infrastructure. Climate change is making things worse, faster." -"Your long Covid questions, answered","Millions of people have long Covid; countless more could get it. Dr. Monica Verduzco-Gutierrez answers question from Today, Explained listeners about the condition that has even doctors bewildered." \ No newline at end of file diff --git a/examples/podcast-search/data/transcripts/The water crisis in Jackson, Mississippi.txt b/examples/podcast-search/data/transcripts/The water crisis in Jackson, Mississippi.txt deleted file mode 100644 index e3c265940..000000000 --- a/examples/podcast-search/data/transcripts/The water crisis in Jackson, Mississippi.txt +++ /dev/null @@ -1,136 +0,0 @@ -9/8/22 / The Water Crisis in Jackson, Mississippi -[HALF SECOND OF SILENCE] - -[BILLBOARD] - -NOEL KING (Host): In Jackson, Mississippi, here’s the past month: summed up. - -