/SSEM

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.

Primary LanguagePythonMIT LicenseMIT

SSEM (Semantic Similarity Based Evaluation Metrics)

Generic badge Generic badge Generic badge Generic badge Generic badge Downloads

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

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 is None.
  • n_jobs: The number of parallel jobs to use for processing. Default is 1.
  • 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

  1. Evaluation Measures for Text Summarization
  2. BERTScore: Evaluating Text Generation with BERT
  3. Semantic Similarity Based Evaluation for Abstractive News Summarization
  4. Evaluation of Semantic Answer Similarity Metrics

Citation

If you use SSEM in your research, please cite the following GitHub Repository:

@misc{TechyNilesh/SSEM,
  author = {Nilesh Verma},
  title = {SSEM (Semantic Similarity Based Evaluation Metrics)},
  year = {2023},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/yourusername/ssmlibrary}}
}

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.