Component interfaces of the MAMMOth fairness toolkit.
Project description
MAMMOth-commons
Fast component development for the MAMMOth fairness toolkit.
This package is in the pre-alpha stage.
This file contains instructions on how to:
Set things up
Install the latest version of MAMMOth-commons
and the docker
package in your virtual environment:
pip install --upgrade MAMMOth-commons
pip install docker
You also need to create an account in DockerHub or any other online hosting service for docker images. You can ignore this
Finally, download, install, and run Decker Desktop from here. Command line instructions will use this to build docker images locally before uploading them to the hosting service.
Write a new component
You need to have set everything up as above to build and deploy your MAMMOth components. Follow these guidelines to write a component:
- Import the necessary dataset or model classes
from the
mammoth.datasets
andmammoth.models
namespace respectively. Use them to annotate your method's argument and return types. Type annotations are mandatory for datasets and models. - You may also add keyword arguments that serve as parameters with default values, which don't require annotation.
- Don't forget to create a docstring for your component.
- Decorate your component with either the
@mammoth.integration.metric(namespace, version, python="3.11")
or the@mammoth.integration.loader(namespace, version, python="3.11")
decorator. These decorators require at least one argument to denote the component's version. The namespace refers to whom the component should be accredited to and should be the same as your DockerHub username.
Here are some examples of components:
Example metric decorator
from mammoth.datasets import CSV
from mammoth.models import ONNX
from mammoth.exports import Markdown
from typing import Dict, List
from mammoth.integration import metric
@metric(namespace="...", version="v001", python="3.11")
def new_metric(
dataset: CSV,
model: ONNX,
sensitive: List[str],
parameters: Dict[str, any] = None,
) -> Markdown:
"""Write your metric's description here.
"""
return Markdown("these are the results")
Example loader decorator
from mammoth.datasets import CSV
from mammoth.integration import loader
@loader(namespace="...", version="v001", python="3.11")
def data_csv_loader(
path: str,
delimiter: str = ",",
) -> CSV:
"""This is a CSV loader.
"""
# load from path given delimiter or other arguments
return CSV(
... # add arguments here
)
Build and upload a component
Don't forget to set the correct component version first. Then, login to your docker account. For example, in the simplest case where you want to host your component in DockerHub, it suffices to run the following command in your terminal:
docker login
This will ask for your DockerHub username (if you are not part of a team in DockerHub, this should be the same as your namespace) and password. This way, your terminal will have permission to push the created docker images there. Finally, create and upload a technical component by running the following command (kfp is installed alongside MAMMOth-commons):
kfp component build . --component-filepattern test_components/metric.py
In this, replace the test_components/metric.py
with any other path
that contains the Python file in which you implemented your component.
If you do not want to push the created docker image, for example to run your new component in a local copy of the MAMMOth bias toolkit without logging in and uploading it to DockerHub, run this instead:
kfp component build . --component-filepattern test_components/metric.py --no-push-image
:warning: The build should be called from a directory where both your component and virtual environment are subdirectories.
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 Distributions
Built Distribution
Hashes for MAMMOth_commons-0.0.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb9ecae31205a0685af00f8629024200293eacbd23c71ec6a25f41a33edd4e19 |
|
MD5 | 1850f7f8bd8cc68ee014703eb5edaafa |
|
BLAKE2b-256 | 30bb4132454d540ee79ac94c825563f81c3d789743ed4c8325b2cec11bf6c621 |