UserFriendly implementation of Highly optimized advanced semantic search.
Project description
For more information about the author, visit LinkedIn.
Python Package - easySemanticSearch
Overview
This Python package provides utilities for quick, simple and efficient semantic search. This package leverages the SBERT capabilities of the SentenceTransformer. It allows users to perform semantic search on CSV files and pandas DataFrames.
Getting started is incredibly easy, just input the "CSV file path"/ "dataframe" and the query. Advanced configurations are also possible, this can be achieved by inputting the correct arguments, a detailed guide is provided below.
The first run takes longer as the NLU model is downloaded and the dataset is encoded and embedded. Subsequent runs will take less than a second even for large dataset comprising of 19,000 records.
This package has been tested on a power restricted i7-4720hq (2015) running at 15 watts locked to ensure it will run on the majority of systems today with the best efficiency possible.
Release Notes
Version 1.3.3
- Multi-Threaded and Asynchronous processing of chunks has been added to reduce processing times upto 30 percentage on a power restricted i7-4720hq (2015) running at 15 watts locked.
- Enhanced output format - The result is now a List of Tuples where each Tuple consists of the result in JSON format output as a String. The Similarity scores still remain as Float.
- The Semantic Search has undergone further optimizations as a result of optimizing the input which is now a string passed with JSON style formatting instead of just String.
Version 1.3.2
- The first public release of easySemanticSearch
- There are 2 methods of input, csv or dataframe.
- The output is a list of Tuples, each Tuple consists of the response in Str format and a Similarity Score in Float format.
- The initial processing times for 19000 records in a Job posting dataset (file size 97mb) take 47 minutes to encode with the default NLU model.
- After the initial embedding, the subsequent retrievals take less than 2 seconds on most accounts.
- If the embeddings are loaded into python and reused, it takes less than 1 second.
Installation
You can install the package using pip:
pip install easySemanticSearch
Methods
csv_SimpleSemanticSearch
Performs semantic search on a CSV file and returns a list of results.
from easySemanticSearch import csv_SimpleSemanticSearch
results = csv_SimpleSemanticSearch(csv_filepath_name, input_query="Your query")
Parameters:
- csv_filepath_name (str): Path to the CSV file.
- input_query (str, default="Some text"): Query to search for.
- max_results (int, default=5): Maximum number of results to return.
- model_name (str, default="all-MiniLM-L6-v2"): Name of the SentenceTransformer model to use.
- embeddings_Filename (str, default="embeddings_SemanticSearch.pkl"): Filename to save/load embeddings.
- cache_folder (str, default="default_folder"): Folder path to cache the model.
dF_SimpleSemanticSearch
Performs semantic search on a pandas DataFrame and returns a list of results.
from easySemanticSearch import dF_SimpleSemanticSearch
import pandas as pd
# Sample DataFrame
df = pd.DataFrame({
'column1': ['text1', 'text2'],
'column2': ['text3', 'text4']
})
results = dF_SimpleSemanticSearch(user_dataframe=df, input_query="The 1st text", max_results=5, model_name="all-MiniLM-L6-v2", embeddings_Filename="embeddings_SemanticSearch.pkl", cache_folder="C:\anonymous\BestSearcher\easySemanticSearch")
Parameters:
- user_dataframe (pd.DataFrame): Input pandas DataFrame.
- input_query (str, default="Some text"): Query to search for.
- max_results (int, default=5): Maximum number of results to return.
- model_name (str, default="all-MiniLM-L6-v2"): Name of the SentenceTransformer model to use.
- embeddings_Filename (str, default="embeddings_SemanticSearch.pkl"): Filename to save/load embeddings.
- cache_folder (str, default="default_folder"): Folder path to cache the model.
Example Usage
- Below is an example of how to Semantically search csv files using the
csv_SimpleSemanticSearch
method:
#Import the libraries.
from easySemanticSearch import csv_SimpleSemanticSearch
import pandas as pd
# Read dataset from CSV file
csv_filepath_name = "CustomerService_logs.csv"
# Set input query
input_query = "I've experienced some crashes during busy times. Is there a plan to handle increased traffic or peak usage periods?"
print("Query:\n" + input_query + "\n\n")
# Get top 3 similar descriptions
max_results = 3 # The maximum number of search results to be retrieved.
top_SearchResults = csv_SimpleSemanticSearch(csv_filepath_name, input_query, max_results=max_results)
print("Knowledge Base:\n")
knowledgeBase = ""
for description, score in top_SearchResults:
knowledgeBase = knowledgeBase + "\n" + description
print(f"Search Results: {description}")
print("-" * 25)
- Below is an example of how to Semantically Search dataframes using the
dF_SimpleSemanticSearch
method:
#Import the libraries.
from easySemanticSearch import dF_SimpleSemanticSearch
import pandas as pd
# Read dataset from CSV file
csv_filepath_name = "CustomerService_logs.csv"
sample_dataset = pd.DataFrame()
sample_dataset = pd.read_csv(csv_filepath_name)
# Set input query
input_query = "I've experienced some crashes during busy times. Is there a plan to handle increased traffic or peak usage periods?"
print("Query:\n" + input_query + "\n\n")
# Get top 3 similar descriptions
max_results = 3 # The maximum number of search results to be retrieved.
top_SearchResults = dF_SimpleSemanticSearch(sample_dataset, input_query, max_results=max_results)
print("Knowledge Base:\n")
knowledgeBase = ""
for description, score in top_SearchResults:
knowledgeBase = knowledgeBase + "\n" + description
print(f"Search Results: {description}")
print("-" * 25)
Note
The first time this code is run on a dataset, the encoding is time-consuming. Performance improves dramatically after the first initialization. By default, the SentenceTransformer model used is "all-MiniLM-L6-v2", which can be changed based on user preference.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file easySemanticSearch-1.3.3.tar.gz
.
File metadata
- Download URL: easySemanticSearch-1.3.3.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27cb188a8d5954a3bb1ad52005becb478e2fd002adba098e9df9698ea8d75855 |
|
MD5 | 57be8e527fdb15cb9c490c6062b00a56 |
|
BLAKE2b-256 | 20078e754653d18560a442a71278bf5a5712d22c6cc9a5aae1482da09a35196e |
File details
Details for the file easySemanticSearch-1.3.3-py3-none-any.whl
.
File metadata
- Download URL: easySemanticSearch-1.3.3-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bb4d19b6c06051e14e74411e06634f09b79cec4e6b9fc63a0652f9076fd01fc |
|
MD5 | bf2b6cdf855d61d0a03a02ea577d2ee4 |
|
BLAKE2b-256 | a9293647314ff4ba48810474bf05cb0820ae29ea85f4e62deb0642f086799d48 |