For the KNN classifier on the lands dataset, this automated workflow classifies satellite imagery by analyzing image URLs. It retrieves embeddings from the Voyage.ai API, queries Qdrant for similar images, and employs majority voting to determine the most likely land type. In cases of ties, it iteratively increases the number of neighbors considered, ensuring accurate classification. Achieving a classification accuracy of 93.24% on test data, this tool effectively identifies land types such as 'forest', 'beach', and 'agricultural', streamlining the process of land use analysis.
View Large Image
For the KNN classifier on the lands dataset, this automated workflow classifies satellite imagery by analyzing image URLs. It retrieves embeddings from the Voyage.ai API, queries Qdrant for similar images, and employs majority voting to determine the most likely land type. In cases of ties, it iteratively increases the number of neighbors considered, ensuring accurate classification. Achieving a classification accuracy of 93.24% on test data, this tool effectively identifies land types such as 'forest', 'beach', and 'agricultural', streamlining the process of land use analysis.
This workflow addresses the challenge of classifying satellite imagery into various land types, such as agricultural, residential, and forest areas. It automates the process of querying a database for similar images and determining the most likely class through majority voting, effectively handling ties by adjusting the number of neighbors considered. This results in accurate classification of images based on their visual content.