SSEM is a semantic similarity-based evaluation library for natural language processing (NLP) text generation tasks. It supports various similarity metrics and evaluation levels, and is compatible with any Hugging Face pre-trained transformer model.
Project description
SSEM (Semantic Similarity Based Evaluation Metrics)
SSEM is a python library that provides evaluation metrics for natural language processing (NLP) text generation tasks with support of multiple languages. The library focuses on measuring the semantic similarity between generated text and reference text. It supports various distance metrics, such as cosine similarity, euclidean distances, and pearson correlation.
The library is built on top of the popular Hugging Face Transformers library and is compatible with any pre-trained transformer model. Additionally, it supports parallel processing for faster computation and offers multiple evaluation levels, such as sentence-level, token-level, and Latent Semantic Indexing (LSI) based similarity.
Developed By
Nilesh Verma
Features
- Compatible with any Hugging Face pre-trained transformer models.
- Multiple language support.
- Supports multiple distance metrics: cosine, euclidean, and Pearson correlation.
- Supports different levels of evaluation: sentence-level, token-level, and LSI (Latent Semantic Indexing).
- Supports parallel processing for faster computation.
- Customizable model embeddings.
Installation
You can install the SSEM library using pip:
pip install ssem
How to use SSEM
To use SSEM, you first need to import the library and create an instance of the SemanticSimilarity
class. You can specify the pre-trained model you want to use, the distance metric, and any custom embeddings.
from ssem import SemanticSimilarity
ssem = SemanticSimilarity(model_name='bert-base-multilingual-cased', metric='cosine',custom_embeddings=None)
Once you have created an instance, you can use the evaluate()
method to calculate the similarity between the list of generated text and list of reference text. You can specify various options such as the number of parallel jobs, the evaluation level, and the output format.
output_sentences = ['This is a generated sentence 1.','This is a generated sentence 2.']
reference_sentences = ['This is the reference sentence 1.','This is the reference sentence 2.']
similarity_score = ssem.evaluate(output_sentences, reference_sentences, n_jobs=1, level='sentence', output_format='mean')
The evaluate()
method returns a similarity score, which can be a single float value (mean), a standard deviation value (std), or both (mean_std).
print("Similarity score: ", similarity_score)
You can use this score to assess the quality of the generated text compared to the reference text.
Parameters
model_name
: The name of the pre-trained transformer model to use. Default is'bert-base-multilingual-cased'
.metric
: The similarity metric to use. Options are'cosine'
,'euclidean'
, and'pearson'
. Default is'cosine'
.custom_embeddings
: An optional numpy array containing custom embeddings. Default isNone
.n_jobs
: The number of parallel jobs to use for processing. Default is1
.level
: The level of evaluation to perform. Options are'sentence'
,'token'
, and'lsi'
. Default is'sentence'
.output_format
: The format of the output. Options are'mean'
,'std'
, and'mean_std'
. Default is'mean'
.
License
SSEM is released under the MIT License.
References
- Evaluation Measures for Text Summarization
- BERTScore: Evaluating Text Generation with BERT
- Semantic Similarity Based Evaluation for Abstractive News Summarization
- Evaluation of Semantic Answer Similarity Metrics
Please do STAR the repository, if it helped you in anyway.
More cool features will be added in future. Feel free to give suggestions, report bugs and contribute.
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
File details
Details for the file SSEM-1.0.tar.gz
.
File metadata
- Download URL: SSEM-1.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3ed12b11ab19392bc579534bdd969f3276db4961425e99336e7559fc6d0ab45 |
|
MD5 | 2406f289db09d41f4d1dbfad84aefd47 |
|
BLAKE2b-256 | f80f2354eff549437604de97f4f7155b9d03e345bcdb3023ad3dc85ed7ebce8c |