Skip to main content

PerMetrics: A Framework of Performance Metrics for Machine Learning Models

Project description

PERMETRICS


GitHub release PyPI version PyPI - Python Version PyPI - Status PyPI - Downloads Downloads Tests & Publishes to PyPI GitHub Release Date Documentation Status Chat DOI JOSS License: GPL v3

PerMetrics is a python library for performance metrics of machine learning models. We aim to implement all performance metrics for problems such as regression, classification, clustering, ... problems. Helping users in all field access metrics as fast as possible. The number of available metrics include 112 (48 regression metrics, 20 classification metrics, 44 clustering metrics)

Citation Request

Please include these citations if you plan to use this library:

  • LaTeX:

    @article{Thieu_PerMetrics_A_Framework_2024,
     author = {Thieu, Nguyen Van},
     doi = {10.21105/joss.06143},
     journal = {Journal of Open Source Software},
     month = mar,
     number = {95},
     pages = {6143},
     title = {{PerMetrics: A Framework of Performance Metrics for Machine Learning Models}},
     url = {https://joss.theoj.org/papers/10.21105/joss.06143},
     volume = {9},
     year = {2024}
    }
    
  • APA:

    Thieu, N. V. (2024). PerMetrics: A Framework of Performance Metrics for Machine Learning Models. Journal of Open Source Software, 9(95), 6143. https://doi.org/10.21105/joss.06143

Installation

Install the current PyPI release:

$ pip install permetrics

After installation, you can import Permetrics as any other Python module:

$ python
>>> import permetrics
>>> permetrics.__version__

Example

Below is the most efficient and effective way to use this library compared to other libraries. The example below returns the values of metrics such as root mean squared error, mean absolute error...

from permetrics import RegressionMetric

y_true = [3, -0.5, 2, 7]
y_pred = [2.5, 0.0, 2, 8]

evaluator = RegressionMetric(y_true, y_pred)
results = evaluator.get_metrics_by_list_names(["RMSE", "MAE", "MAPE", "R2", "NSE", "KGE"])
print(results["RMSE"])
print(results["KGE"])

In case your y_true and y_pred data have multiple columns, and you want to return multiple outputs, something that other libraries cannot do, you can do it in Permetrics as follows:

import numpy as np
from permetrics import RegressionMetric

y_true = np.array([[0.5, 1], [-1, 1], [7, -6]])
y_pred = np.array([[0, 2], [-1, 2], [8, -5]])

evaluator = RegressionMetric(y_true, y_pred)

## The 1st way
results = evaluator.get_metrics_by_dict({
  "RMSE": {"multi_output": "raw_values"},
  "MAE": {"multi_output": "raw_values"},
  "MAPE": {"multi_output": "raw_values"},
})

## The 2nd way
results = evaluator.get_metrics_by_list_names(
  list_metric_names=["RMSE", "MAE", "MAPE", "R2", "NSE", "KGE"],
  list_paras=[{"multi_output": "raw_values"},] * 6
)

## The 3rd way
result01 = evaluator.RMSE(multi_output="raw_values")
result02 = evaluator.MAE(multi_output="raw_values")

The more complicated cases in the folder: examples. You can also read the documentation for more detailed installation instructions, explanations, and examples.

Contributing

There are lots of ways how you can contribute to Permetrics's development, and you are welcome to join in! For example, you can report problems or make feature requests on the issues pages. To facilitate contributions, please check for the guidelines in the CONTRIBUTING.md file.

Official channels

Note

  • Currently, there is a huge misunderstanding among frameworks around the world about the notation of R, R2, and R^2.

  • Please read the file R-R2-Rsquared.docx to understand the differences between them and why there is such confusion.

  • My recommendation is to denote the Coefficient of Determination as COD or R2, while the squared Pearson's Correlation Coefficient should be denoted as R^2 or RSQ (as in Excel software).


Developed by: Thieu @ 2023

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

permetrics-2.1.0.tar.gz (61.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

permetrics-2.1.0-py3-none-any.whl (57.2 kB view details)

Uploaded Python 3

File details

Details for the file permetrics-2.1.0.tar.gz.

File metadata

  • Download URL: permetrics-2.1.0.tar.gz
  • Upload date:
  • Size: 61.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for permetrics-2.1.0.tar.gz
Algorithm Hash digest
SHA256 c0b5456d78169cf48e939356197743ac962a54c439472e9a8cd6ef564da57471
MD5 955ad8027d4cb8ccfb77c9db904d2ef5
BLAKE2b-256 3ba6df8e15c34b199e363358ffbdc5cebe273f937f4f9069004f44f37a464110

See more details on using hashes here.

Provenance

The following attestation bundles were made for permetrics-2.1.0.tar.gz:

Publisher: publish-package.yml on thieu1995/permetrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file permetrics-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: permetrics-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 57.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for permetrics-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1e18f3ada1ab3af114e1b5f8be9214e59925f4887b0fc8e561bd45df62b59a2a
MD5 b01903cc471475e8ef4f20b69664056b
BLAKE2b-256 829ece265b3ef8d022ceefe2e673a611f29fc800fad0587f1f600ee24bf83dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for permetrics-2.1.0-py3-none-any.whl:

Publisher: publish-package.yml on thieu1995/permetrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page