xautoml


Namexautoml JSON
Version 0.1.4 PyPI version JSON
download
home_pagehttps://github.com/Ennosigaeon/xautoml
SummaryA JupyterLab extension to visualize and explain AutoML optimization procedures.
upload_time2023-07-18 12:16:59
maintainer
docs_urlNone
authorMarc Zoeller
requires_python>=3.6
licenseBSD-3-Clause
keywords jupyter jupyterlab jupyterlab3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # XAutoML: A Visual Analytics Tool for Establishing Trust in Automated Machine Learning

XAutoML is an interactive visual analytics tool for explaining AutoML optimisation procedures and ML pipelines
constructed by AutoML. It combines interactive visualizations with established techniques from explainable AI (XAI) to
make the complete AutoML procedure transparent and explainable. We integrate XAutoML with Jupyter to enable experienced
users to extend the visual analytics with advanced ad-hoc visualizations based on information extracted from XAutoML.

Currently, XAutoML supports only
* [auto-sklearn](https://github.com/automl/auto-sklearn)
* [dswizard](https://github.com/Ennosigaeon/dswizard)
* [FLAML](https://github.com/microsoft/FLAML)
* [Optuna](https://github.com/optuna/optuna)
* [scikit-learn](https://github.com/scikit-learn/scikit-learn)

but we plan to add support for further AutoML systems. You can find a video introducing XAutoML on [YouTube](https://www.youtube.com/watch?v=AyqMrdlds7o).

[![XAutoML: A Visual Analytics Tool for Establishing Trust in Automated Machine Learning](https://yt-embed.herokuapp.com/embed?v=AyqMrdlds7o)](https://www.youtube.com/watch?v=AyqMrdlds7o "XAutoML: A Visual Analytics Tool for Establishing Trust in Automated Machine Learning")


**Important:** XAutoML requires JavaScript support. This implies that embedded Jupyter Notebooks in VS Code, PyCharm,
... may not work properly. Please use XAutoML in a browser for now.

## Install

Create a new environment with python >= 3.7 and make sure swig is installed either on your system or inside the
environment.

Install swig
- You can either install swig via conda (`conda install swig`)
- Or follow the [official documentation](https://www.swig.org/download.html) to install it

To install the extension, execute:

```bash
pip install xautoml
```

## Usage

XAutoML currently only works with JupyterLab. You can find ready to use Notebook examples in the [examples](examples)
folder.

```shell
cd examples
jupyter lab
```

To use XAutoML, three steps are necessary:
1) Perform an optimization in one of the supported AutoML frameworks
2) Import the [RunHistory](xautoml/models.py) of the optimizer via the corresponding [adapter](xautoml/adapter.py)
3) Create the [XAutoML](xautoml/main.py) visualization

```python
from xautoml.main import XAutoML
from xautoml.adapter import import_sklearn
from xautoml.util.datasets import openml_task
from sklearn.model_selection import RandomizedSearchCV

# 1) Perform AutoML optimization
random_search = RandomizedSearchCV(...).fit(...)

# 2) Use Adapter to create RunHistory
rh = import_sklearn(random_search)

# 3) Create Visualization
X_test, y_test = openml_task(31, 0, test=True)
main = XAutoML(rh, X_test, y_test)
main.explain()
```

### Checking Only Specific Aspects

If you want to see only specific information in XAutoML, you can include only specific visualizations. For example,
if you only want to validate the model behaviour, you can exclude all technical ML details by using

```python
main.explain(include={'overview', 'candidate:domain', 'ensemble'})
```


### Standalone Visualizations

Instead of rendering the complete visualization, only specific standalone views can be rendered. For example, if you
are only interested in checking the leaderboard, only it can be rendered using

```python
main.explain_leaderboard()
```

For basically all views a stand-alone view is available. Check the documentation of the various
`XAutoML().render_*(...)` methods for more details.


### Docker

XAutoML is also provided as a Docker container. The container is based on the popular *Jupyter Docker Stack*
[scipy-notebook](https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-scipy-notebook). It
contains a ready to use Jupyter Lab with the installed XAutoML extension. In addition, the `/home/jovyan/automl`
contains ready to use XAutoML examples for all supported AutoML libraries. To use the docker container, simply run

```
docker run -it -p 8888:8888 mz93/xautoml
```


## Uninstall

To remove the extension, execute:

```bash
pip uninstall xautoml
```


## Troubleshoot

If you are seeing the frontend extension, but it is not working, check
that the server extension is enabled:

```bash
jupyter server extension list
```

If the server extension is installed and enabled, but you are not seeing
the frontend extension, check the frontend extension is installed:

```bash
jupyter labextension list
```

If the installation failed with the following exception
```
[...]
    Running setup.py install for pyrfr ... error
    ERROR: Command errored out with exit status 1:
    [...]
    swig.exe -python -c++ -modern -py3 -features nondynamic -I./include -o pyrfr/regression_wrap.cpp pyrfr/regression.i
    error: command 'swig.exe' failed: No such file or directory
[...]
```
verify that you have swig installed (see [Installation](#Introduction) above).


## Contributing

### Development install

Note: You will need NodeJS to build the extension package.

The `jlpm` command is JupyterLab's pinned version of
[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use
`yarn` or `npm` in lieu of `jlpm` below.

```bash
# Clone the repo to your local environment
# Change directory to the xautoml directory
# Install package in development mode
pip install -e .
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Server extension must be manually installed in develop mode
jupyter server extension enable xautoml
# Rebuild extension Typescript source after making changes
jlpm install
jlpm run build
```

You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.

```bash
# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm run watch
# Run JupyterLab in another terminal
jupyter lab
```

With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).

By default, the `jlpm run build` command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:

```bash
jupyter lab build --minimize=False
```

### Development uninstall

```bash
# Server extension must be manually disabled in develop mode
jupyter server extension disable xautoml
pip uninstall xautoml
```

In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`
folder is located. Then you can remove the symlink named `xautoml` within that folder.


### Release new version
Increase version number in `package.json` and upload the latest build to pypi.
```bash
pip install build
python -m build -s
python -m twine upload dist/*
```


## Citation
If you are using `XAutoML`, please cite it as

    @article{Zoller2022,
        author = "Z{\"{o}}ller, Marc-Andr{\'{e}} and Titov, Waldemar and Schlegel, Thomas and Huber, Marco F.",
        title = "{XAutoML: A Visual Analytics Tool for Establishing Trust in Automated Machine Learning}",
        journal = "arXiv preprint arXiv: 2202.11954",
        volume = "1",
        year = "2022",
        pages = "1-34",
        url = "http://arxiv.org/abs/2202.11954",
        eprint = "2202.11954",
        archivePrefix = "arXiv",
        arxivId = "2202.11954"
    }

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Ennosigaeon/xautoml",
    "name": "xautoml",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "Jupyter,JupyterLab,JupyterLab3",
    "author": "Marc Zoeller",
    "author_email": "marc.zoeller@usu.com",
    "download_url": "https://files.pythonhosted.org/packages/b4/2c/91fc5454236e3ff0f54249ddbf7ace7dfa95a3ef1c54fd00f4de07cab97d/xautoml-0.1.4.tar.gz",
    "platform": "Linux",
    "description": "# XAutoML: A Visual Analytics Tool for Establishing Trust in Automated Machine Learning\n\nXAutoML is an interactive visual analytics tool for explaining AutoML optimisation procedures and ML pipelines\nconstructed by AutoML. It combines interactive visualizations with established techniques from explainable AI (XAI) to\nmake the complete AutoML procedure transparent and explainable. We integrate XAutoML with Jupyter to enable experienced\nusers to extend the visual analytics with advanced ad-hoc visualizations based on information extracted from XAutoML.\n\nCurrently, XAutoML supports only\n* [auto-sklearn](https://github.com/automl/auto-sklearn)\n* [dswizard](https://github.com/Ennosigaeon/dswizard)\n* [FLAML](https://github.com/microsoft/FLAML)\n* [Optuna](https://github.com/optuna/optuna)\n* [scikit-learn](https://github.com/scikit-learn/scikit-learn)\n\nbut we plan to add support for further AutoML systems. You can find a video introducing XAutoML on [YouTube](https://www.youtube.com/watch?v=AyqMrdlds7o).\n\n[![XAutoML: A Visual Analytics Tool for Establishing Trust in Automated Machine Learning](https://yt-embed.herokuapp.com/embed?v=AyqMrdlds7o)](https://www.youtube.com/watch?v=AyqMrdlds7o \"XAutoML: A Visual Analytics Tool for Establishing Trust in Automated Machine Learning\")\n\n\n**Important:** XAutoML requires JavaScript support. This implies that embedded Jupyter Notebooks in VS Code, PyCharm,\n... may not work properly. Please use XAutoML in a browser for now.\n\n## Install\n\nCreate a new environment with python >= 3.7 and make sure swig is installed either on your system or inside the\nenvironment.\n\nInstall swig\n- You can either install swig via conda (`conda install swig`)\n- Or follow the [official documentation](https://www.swig.org/download.html) to install it\n\nTo install the extension, execute:\n\n```bash\npip install xautoml\n```\n\n## Usage\n\nXAutoML currently only works with JupyterLab. You can find ready to use Notebook examples in the [examples](examples)\nfolder.\n\n```shell\ncd examples\njupyter lab\n```\n\nTo use XAutoML, three steps are necessary:\n1) Perform an optimization in one of the supported AutoML frameworks\n2) Import the [RunHistory](xautoml/models.py) of the optimizer via the corresponding [adapter](xautoml/adapter.py)\n3) Create the [XAutoML](xautoml/main.py) visualization\n\n```python\nfrom xautoml.main import XAutoML\nfrom xautoml.adapter import import_sklearn\nfrom xautoml.util.datasets import openml_task\nfrom sklearn.model_selection import RandomizedSearchCV\n\n# 1) Perform AutoML optimization\nrandom_search = RandomizedSearchCV(...).fit(...)\n\n# 2) Use Adapter to create RunHistory\nrh = import_sklearn(random_search)\n\n# 3) Create Visualization\nX_test, y_test = openml_task(31, 0, test=True)\nmain = XAutoML(rh, X_test, y_test)\nmain.explain()\n```\n\n### Checking Only Specific Aspects\n\nIf you want to see only specific information in XAutoML, you can include only specific visualizations. For example,\nif you only want to validate the model behaviour, you can exclude all technical ML details by using\n\n```python\nmain.explain(include={'overview', 'candidate:domain', 'ensemble'})\n```\n\n\n### Standalone Visualizations\n\nInstead of rendering the complete visualization, only specific standalone views can be rendered. For example, if you\nare only interested in checking the leaderboard, only it can be rendered using\n\n```python\nmain.explain_leaderboard()\n```\n\nFor basically all views a stand-alone view is available. Check the documentation of the various\n`XAutoML().render_*(...)` methods for more details.\n\n\n### Docker\n\nXAutoML is also provided as a Docker container. The container is based on the popular *Jupyter Docker Stack*\n[scipy-notebook](https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-scipy-notebook). It\ncontains a ready to use Jupyter Lab with the installed XAutoML extension. In addition, the `/home/jovyan/automl`\ncontains ready to use XAutoML examples for all supported AutoML libraries. To use the docker container, simply run\n\n```\ndocker run -it -p 8888:8888 mz93/xautoml\n```\n\n\n## Uninstall\n\nTo remove the extension, execute:\n\n```bash\npip uninstall xautoml\n```\n\n\n## Troubleshoot\n\nIf you are seeing the frontend extension, but it is not working, check\nthat the server extension is enabled:\n\n```bash\njupyter server extension list\n```\n\nIf the server extension is installed and enabled, but you are not seeing\nthe frontend extension, check the frontend extension is installed:\n\n```bash\njupyter labextension list\n```\n\nIf the installation failed with the following exception\n```\n[...]\n    Running setup.py install for pyrfr ... error\n    ERROR: Command errored out with exit status 1:\n    [...]\n    swig.exe -python -c++ -modern -py3 -features nondynamic -I./include -o pyrfr/regression_wrap.cpp pyrfr/regression.i\n    error: command 'swig.exe' failed: No such file or directory\n[...]\n```\nverify that you have swig installed (see [Installation](#Introduction) above).\n\n\n## Contributing\n\n### Development install\n\nNote: You will need NodeJS to build the extension package.\n\nThe `jlpm` command is JupyterLab's pinned version of\n[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use\n`yarn` or `npm` in lieu of `jlpm` below.\n\n```bash\n# Clone the repo to your local environment\n# Change directory to the xautoml directory\n# Install package in development mode\npip install -e .\n# Link your development version of the extension with JupyterLab\njupyter labextension develop . --overwrite\n# Server extension must be manually installed in develop mode\njupyter server extension enable xautoml\n# Rebuild extension Typescript source after making changes\njlpm install\njlpm run build\n```\n\nYou can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.\n\n```bash\n# Watch the source directory in one terminal, automatically rebuilding when needed\njlpm run watch\n# Run JupyterLab in another terminal\njupyter lab\n```\n\nWith the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).\n\nBy default, the `jlpm run build` command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:\n\n```bash\njupyter lab build --minimize=False\n```\n\n### Development uninstall\n\n```bash\n# Server extension must be manually disabled in develop mode\njupyter server extension disable xautoml\npip uninstall xautoml\n```\n\nIn development mode, you will also need to remove the symlink created by `jupyter labextension develop`\ncommand. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`\nfolder is located. Then you can remove the symlink named `xautoml` within that folder.\n\n\n### Release new version\nIncrease version number in `package.json` and upload the latest build to pypi.\n```bash\npip install build\npython -m build -s\npython -m twine upload dist/*\n```\n\n\n## Citation\nIf you are using `XAutoML`, please cite it as\n\n    @article{Zoller2022,\n        author = \"Z{\\\"{o}}ller, Marc-Andr{\\'{e}} and Titov, Waldemar and Schlegel, Thomas and Huber, Marco F.\",\n        title = \"{XAutoML: A Visual Analytics Tool for Establishing Trust in Automated Machine Learning}\",\n        journal = \"arXiv preprint arXiv: 2202.11954\",\n        volume = \"1\",\n        year = \"2022\",\n        pages = \"1-34\",\n        url = \"http://arxiv.org/abs/2202.11954\",\n        eprint = \"2202.11954\",\n        archivePrefix = \"arXiv\",\n        arxivId = \"2202.11954\"\n    }\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "A JupyterLab extension to visualize and explain AutoML optimization procedures.",
    "version": "0.1.4",
    "project_urls": {
        "Homepage": "https://github.com/Ennosigaeon/xautoml"
    },
    "split_keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab3"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b42c91fc5454236e3ff0f54249ddbf7ace7dfa95a3ef1c54fd00f4de07cab97d",
                "md5": "42e5c6da8add4ffab5fdbd2e8f047b30",
                "sha256": "26db44a51863223de2dbf366bffb08d4a0e902558924caa001953db331016e27"
            },
            "downloads": -1,
            "filename": "xautoml-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "42e5c6da8add4ffab5fdbd2e8f047b30",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 4288454,
            "upload_time": "2023-07-18T12:16:59",
            "upload_time_iso_8601": "2023-07-18T12:16:59.595548Z",
            "url": "https://files.pythonhosted.org/packages/b4/2c/91fc5454236e3ff0f54249ddbf7ace7dfa95a3ef1c54fd00f4de07cab97d/xautoml-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-18 12:16:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Ennosigaeon",
    "github_project": "xautoml",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "xautoml"
}
        
Elapsed time: 0.08989s