Skip to main content

Library for ULOWA operations, given fuzzy numbers

Project description

ULOWA MODULE

Please, read carefully before using this library.

This module has been made for academic purposes. If you want to use it, cite the author.

1. Installation

First, you can simpy install it by using the pip comand: pip install ulowa

2. Usage

2.1. ULOWA

It is necessary to define a fuzzy set, each one with 4 points, e.g: fuzzyNumbers = [[0.0, 0.0, 1.0, 2.0], [1.0, 2.0, 4.0, 5.0], [4.0, 5.0, 5.0, 6.0], [5.0, 6.0, 6.0, 7.0], [6.0, 7.0, 8.0, 8.5], [8.0, 8.5, 9.0, 9.5], [9.0, 9.5, 10.0, 10.0]]

Note that the scale may vary, it isn't compulsory to be from 0 to 10

Then, you must define the weights and the labels for the scale, e.g: weights = [0.6, 0.2, 0.2, 0.0, 0.0] labels = ["VL", "L", "M", "AH", "H", "VH", "P"]

Note that the weights must sum up to 1, and the scale must be ordered from worst to best tag.

Now, we should define the labels for our specific problem, e.g: problem_labels = ["VL", "VL", "L", "M", "L"]

Eventually, we call the ULOWA function: ulowaOperation(problem_labels, weights, fuzzyNumbers, labels)

In case you need to analyze more alternatives, you may need to establish a performance table e.g: performance_table in which you will include several problem labels, such as: performance_table = [["VL", "VL", "P", "H", "VL"], ["VL", "VL", "H", "P", "P"], ["VL", "VL", "L", "M", "L"], ["VH", "L", "H", "H", "AH"], ["P", "L", "H", "L", "AH"]]

Note that the tags doesn't need to be sorted, since a specific method will do so.

Now, in order to get a table with all the results, you should execute a code like the following:

fuzzyNumbers = [[0.0, 0.0, 1.0, 2.0], [1.0, 2.0, 4.0, 5.0], [4.0, 5.0, 5.0, 6.0], [5.0, 6.0, 6.0, 7.0], 
                [6.0, 7.0, 8.0, 8.5], [8.0, 8.5, 9.0, 9.5], [9.0, 9.5, 10.0, 10.0]]
 
labels = ["VL", "L", "M", "AH", "H", "VH", "P"]

weights = [0.6, 0.2, 0.2, 0.0, 0.0]
 
performance_table = [["VL", "VL", "P", "H", "VL"], ["VL", "VL", "H", "P", "P"], ["VL", "VL", "L", "M", "L"],
                     ["VH", "L", "H", "H", "AH"], ["P", "L", "H", "L", "AH"]]
results = []
for alternative in performance_table:
    results.append(ulowaOperation(alternative, weights, fuzzyNumbers, labels))
print(results)

2.2. Specificity and Fuzziness

This module also allows you to calculate the specificity and fuzziness of a given fuzzy set. In this case, a code like the shown below must be executed:

a = fuzzyNumbers[0][0]
b = fuzzyNumbers[len(fuzzyNumbers) - 1][3]
order=1
for i in fuzzyNumbers:
    print(f"\nThe specificity of the {order} fuzzy set is: {specificity(i, a, b)}")
    print(f"\nThe fuzziness of the {order} fuzzy set is: {fuzziness(i, a, b)}")
    order = order + 1

2.3. Defuzzification

There are three methods that can be used in this package: defuzzifyCOG(fuzzyNumbers, labels, tag), defuzzifyOrdinal(scale, tag) and defuzzifyCOM(fuzzyNumbers, labels, tag). Here is an example code of their usage:

tag = "VL"           

print(f"The center of gravity of the first fuzzy set is: {defuzzifyCOG(fuzzyNumbers, labels, tag)}")
print(f"The center of maximum of the first fuzzy set is: {defuzzifyCOM(fuzzyNumbers, labels, tag)}")


# Those will give us the COG and COM of the first fuzzy number, since we specified tag VL


print(f"The ordinal value for tag {tag} is {defuzzifyOrdinal(labels, tag)}")

The code shown above can be done in a loop so that we can get for example the ordinal values for all the results of the ULOWA operation.

Author: Universitat Rovira i Virgili (URV) - ITAKA research group (Ignacio Miguel Rodríguez)

Link to the original article: ULOWA article

Contact: Send e-mail

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

ulowa-1.0.2.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

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

ulowa-1.0.2-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file ulowa-1.0.2.tar.gz.

File metadata

  • Download URL: ulowa-1.0.2.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.13

File hashes

Hashes for ulowa-1.0.2.tar.gz
Algorithm Hash digest
SHA256 860dd4702cded66d590ecbc1a485e6f91b10a0da5587638444806bc104fa9b9e
MD5 fbad581dd3581a400f329ca1e7bf7b24
BLAKE2b-256 6128c8c8a4eb60cc0bea81c253921c6cea6eb8faa845336d510f3370c4c6ca93

See more details on using hashes here.

File details

Details for the file ulowa-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: ulowa-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 6.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.13

File hashes

Hashes for ulowa-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 79f8c56f84ffa9d6e28a5cef69f060c120c51ecf058d283eccde4f47d73bb9d9
MD5 54dad80fc8f90c79af8a4e124e8e9468
BLAKE2b-256 47ad7d1fc7132ae4c5305dd273affa5d9ceb7a6f429aa8fac253d9ac5f3ac935

See more details on using hashes here.

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