Product search is a critical feature for any e-commerce platform, as it directly impacts sales and revenue. The effectiveness of the search function depends on how well it generates diverse and relevant results based on customer queries that plays a key role in meeting customer needs and driving conversions. Most of the e-commerce websites are still using old fashioned search that is driven by traditional engine such as solr, elastic search etc. Imagine a smart AI based search portal which is capable to generate much diversified results instead of just relying on product descriptions and other indexed information. Here is a Proof of Concept (PoC) for an enhanced search portal that acts like a virtual shopkeeper, delivering more diverse and relevant search results by accurately understanding the intent behind each query. One of the best suitable options available is semantic search There are numerous AI based models to achieve such tasks and sentence transformers are one of t...
Convolutional Neural Network or CNN for short, is one of the widely used neural network architecture for image recognition. It’s use cases can be widely extended to various powerful tasks, such as, object detection within an image, image classification, facial recognition, gesture recognition etc. Indeed, Convolutional Neural Networks (CNNs) are designed with some level of resemblance to the image recognition process in the human brain. For instance, In the visual cortex, neurons have local receptive fields, meaning they respond to stimuli only in a specific region of the visual field, which is achieved by CNN using kernels or filters. Both human brain and CNN process the visual information in hierarchical manner. Basic information of an image is extracted via lower level of neurons in human brain, and higher-level neurons integrate the information from lower-level neurons to identify the complex patterns. On the other hand, in CNN, we use multiple convolutional layers to extract hiera...