Skip to main content

Mutamorhpic testing tool for text-based machine learning problems.

Project description

Mutatest

Mutamorphic-test is a python3 package that provides of a two different kinds of word mutators for sentences, meaning that the original sentence will be transformed by this mutators.

How to install it

In order to install the latest version use the python3 installer pip3.

pip3 install mutamorphic-test 

How to use it

In order to use the package we need to import the mutators first with the statement:

from mutatest.mutators import ReplacementMutator,DopoutMutator

Once we have them imported we can use them. We have to create an instance of the classes in order to use them.

We can specify how many words we want them to modify, how many variants of the sentence shall be created and, in the case of the replacement, which strategy shall be used to select the words to be changed.

For the two mutators we need the following parameters (we can also use the default values):

ReplacementMutator(num_replacements: int = 1, num_variants: int = 5, selection_strategy: str = "random")
DropoutMutator(num_dropouts: int = 1, num_variants: int = 1)

Once we have our mutator we can perform mutation on a sentence in the following way:

mutated_sentence=mutator.mutate(sentence,random_seed=42)

A full example of how this package can be used would be the following:

from mutatest.mutators import ReplacementMutator

mutator=ReplacementMutator()
sentence="This is an example sentence"

mutated_sentence=mutator.mutate(sentence,random_seed=42)

print(mutated_sentence)

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

mutamorphic-test-1.1.3.tar.gz (8.1 kB view hashes)

Uploaded Source

Supported by

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