mllint — Linter for Machine Learning projects
Attention! This tool is no longer maintained
As detailed below, I wrote
mllintduring my MSc thesis in Computer Science between February and October of 2021. I have since graduated and am now no longer developing or actively maintaining this package.
mllintdoes still work, so feel free to use it! If you find any bugs, feel free to create an issue, I still receive notifications of new issues and there's a good chance that I'll look at them in my free time, but I won't guarantee a timely response or a fix for your issue.For those interested in the research output produced in my MSc thesis:
- Full MSc Thesis: http://resolver.tudelft.nl/uuid:b20883f8-a921-487a-8a65-89374a1f3867
- The Prevalence of Code Smells in Machine Learning projects
Bart van Oort, Luís Cruz, Maurício Aniche, Arie van Deursen
published at WAIN 2021 (1st Workshop on AI Engineering - Software Engineering for AI, co-located with ICSE)- "Project smells" -- Experiences in Analysing the Software Quality of ML Projects with mllint
Bart van Oort, Luís Cruz, Babak Loni, Arie van Deursen
published at ICSE SEIP 2022
mllint is a command-line utility to evaluate the technical quality of Machine Learning (ML) and Artificial Intelligence (AI) projects written in Python by analysing the project's source code, data and configuration of supporting tools. mllint aims to ...
mllint does this by measuring the project's adherence to ML best practices, as collected and deduced from SE4ML and Google's Rules for ML. Note that these best practices are rather high-level, while mllint aims to give practical, down-to-earth advice to its users. mllint may therefore be somewhat opinionated, as it tries to advocate specific tools to best fit these best practices. However, mllint aims to only recommend open-source tooling and publically verifiable practices. Feedback is of course always welcome!
mllint was created during my MSc thesis in Computer Science at the Software Engineering Research Group (SERG) at TU Delft and ING's AI for FinTech Research Lab on the topic of Code Smells & Software Quality in Machine Learning projects.
See
docs/example-report.mdfor the full report generated for this example project.See also the
mllint-example-projectsrepository to explore the reports of an example project usingmllintto measure and improve its project quality over several iterations.See also
mllint's website for online documentation of all of its linting rules and categories.
mllint is compiled for Linux, MacOS and Windows, both 64 and 32 bit x86 (MacOS 64-bit only), as well as 64-bit ARM on Linux and MacOS (Apple M1).
mllint is published to PyPI, so it can be installed globally or in your current environment using pip:
pip install --upgrade mllintAlternatively, to add mllint to an existing project, if your project uses Poetry for its dependencies:
poetry add --dev mllintOr if your project uses Pipenv:
pipenv install --dev mllintmllint has a soft dependency on several Python tools that it uses for its analysis. While mllint will recommend that you place these tools in your project's development dependencies, these tools are listed as optional dependencies of mllint and can be installed along with mllint using:
pip install --upgrade mllint[tools]There are also mllint Docker containers available on Docker Hub at bvobart/mllint for Python 3.6, 3.7, 3.8 and 3.9. These may particularly be helpful when running mllint in CI environments, such as Gitlab CI or Github Actions. See the Docker Hub for a full list of available tags that can be used.
The Docker containers require that you mount the folder with your project onto the container as a volume on /app. Here is an example of how to use this Docker container, assuming that your project is in the current folder. Replace $(pwd) with the full path to your project folder if it is somewhere else.
docker run -it --rm -v $(pwd):/app bvobart/mllint:latestmllint is designed to be used both on your personal computer as well as on CI systems. So, open a terminal in your project folder and run one of the following commands, or add it to your project's CI script.
To run mllint on the project in the current folder, simply run:
mllintTo run mllint on a project in another folder, simply run:
mllint path/to/my-ml-projectmllint will analyse your project and create a Markdown-formatted report of its analysis. By default, this will be pretty printed to your terminal.
If you instead prefer to export the raw Markdown text to a file, which may be particularly useful when running on CI, the --output or -o flag and provide a filename. mllint does not overwrite the destination file if it already exists, unless --force or -f is used. For example:
mllint --output report.mdUsing - (a dash) as the filename prints the raw Markdown directly to your terminal:
mllint -o -In CI scripts, such raw markdown output (whether as a file or printed to the standard output) can be used to e.g. make comments on pull/merge requests or create Wiki pages on your repository.
See docs/example-report.md for an example of a report that mllint generates, or explore those generated for the example projects.
Of course, feel free to explore mllint help for more information about its commands and to discover additional flags that can be used.
mllint analyses your project by evaluating several categories of linting rules. Each category, as well as each rule, has a 'slug', i.e., a lowercased piece of text with dashes or slashes for spaces, e.g., code-quality/pylint/no-issues. This slug identifies a rule and is often (if not always) displayed next to the category or rule that it references.
To list all available (implemented) categories and linting rules, run:
mllint list allTo list all enabled linting rules, run (optionally providing the path to the project's folder):
mllint list enabledBy default, all of mllint's rules are enabled. See Configuration to learn how to selectively disable certain rules.
To learn more about a certain rule or category, use mllint describe along with the slug of the category or rule:
# Describe the Version Control category. This will also list the rules that it checks.
mllint describe version-control
# Use the exact slug of a rule to describe one rule,
# e.g., the rule on DVC usage in the Version Control category
mllint describe version-control/data/dvc
# Use a partial slug to describe all rules whose slug starts with this snippet,
# e.g., all rules about version controlling data
mllint describe version-control/dataAlternatively, visit the Categories and Rules pages on mllint's website to view the latest online documentation of these rules.
It is also possible to define your own custom linting rules by implementing a script or program that mllint will run while performing its analysis.
These custom rules need to be defined in mllint's configuration. For more information on how to do this, see mllint describe custom or view the documentation online here.
mllint can be configured either using a .mllint.yml file or through the project's pyproject.toml. This allows you to:
See the code snippets and commands provided below for examples of such configuration files.
To print mllint's current configuration in YAML format, run (optionally providing the path to the project's folder):
mllint configTo print mllint's default configuration in YAML format, run (unless there is a folder called default in the current directory):
mllint config defaultTo create a .mllint.yml file from mllint's default configuration, run:
mllint config default -q > .mllint.ymlAn example .mllint.yml that disables some rules looks as follows:
rules:
disabled:
- version-control/code/git
- dependency-management/singleSimilar to the describe command, this also matches partial slugs. So, to disable all rules regarding version controlling data, use version-control/data.
If no .mllint.yml is found, mllint searches the project's pyproject.toml for a [tool.mllint] section. TOML has a slightly different syntax, but the structure is otherwise the same as the config in the YAML file.
An example pyproject.toml configuration of mllint is as follows. Note that it is identical to the YAML example above.
[tool.mllint.rules]
disabled = ["version-control/code/git", "dependency-management/single"]While mllint is a tool for the Python ML ecosystem and distributed through PyPI, it is actually written in Go, compiled to a static binary and published as platform-specific Python wheels.
To run mllint from source, install the latest version of Go for your operating system, then clone this repository and run go run . in the root of this repository. Use go test ./... or execute test.sh to run all of mllint's tests.
To test compiling and packaging mllint into a Python wheel for your current platform, run test.package.sh.