Metadata-Version: 2.1
Name: ai2-tango
Version: 0.2.0
Summary: A library for choreographing your machine learning research.
Home-page: https://github.com/allenai/tango
Author: Allen Institute for Artificial Intelligence
Author-email: contact@allenai.org
License: Apache
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7.1
Description-Content-Type: text/markdown
Provides-Extra: torch
Provides-Extra: all
Provides-Extra: datasets
Provides-Extra: wandb
Provides-Extra: dev
Provides-Extra: examples
License-File: LICENSE

# [AI2 Tango](https://ai2-tango.readthedocs.io/)

<!-- start tagline -->

A Python library for choreographing your machine learning research.

<!-- end tagline -->

⚠️ *Currently under rapid development, use at your own risk!* ⚠️

<!-- <p align="center"> -->
<p>
    <a href="https://github.com/allenai/tango/actions">
        <img alt="CI" src="https://github.com/allenai/tango/workflows/CI/badge.svg?event=push&branch=main">
    </a>
    <a href="https://pypi.org/project/ai2-tango/">
        <img alt="PyPI" src="https://img.shields.io/pypi/v/ai2-tango">
    </a>
    <a href="https://ai2-tango.readthedocs.io/en/latest/?badge=latest">
        <img src="https://readthedocs.org/projects/ai2-tango/badge/?version=latest" alt="Documentation Status" />
    </a>
    <a href="https://github.com/allenai/tango/blob/main/LICENSE">
        <img alt="License" src="https://img.shields.io/github/license/allenai/tango.svg?color=blue&cachedrop">
    </a>
    <br/>
</p>

## Quick links

- [Documentation](https://ai2-tango.readthedocs.io/)
- [PyPI Package](https://pypi.org/project/ai2-tango/)
- [Contributing](https://github.com/allenai/tango/blob/main/CONTRIBUTING.md)
- [License](https://github.com/allenai/tango/blob/main/LICENSE)

## Installation

<!-- start py version -->

**ai2-tango** requires Python 3.7 or later.

<!-- end py version -->

### Installing with `pip`

<!-- start install pip -->

**ai2-tango** is available [on PyPI](https://pypi.org/project/ai2-tango/). Just run

```bash
pip install ai2-tango
```

To install with a specific integration, such as `torch` for example, run

```bash
pip install ai2-tango[torch]
```

<!-- end install pip -->

### Installing from source

<!-- start install source -->

To install **ai2-tango** from source, first clone [the repository](https://github.com/allenai/tango):

```bash
git clone https://github.com/allenai/tango.git
cd tango
```

Then run

```bash
pip install -e .
```

To install with a specific integration, such as `torch` for example, run

```bash
pip install -e .[torch]
```

<!-- end install source -->

## Team

<!-- start team -->

**ai2-tango** is developed and maintained by the AllenNLP team, backed by [the Allen Institute for Artificial Intelligence (AI2)](https://allenai.org/).
AI2 is a non-profit institute with the mission to contribute to humanity through high-impact AI research and engineering.
To learn more about who specifically contributed to this codebase, see [our contributors](https://github.com/allenai/tango/graphs/contributors) page.

<!-- end team -->

## License

<!-- start license -->

**ai2-tango** is licensed under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0).
A full copy of the license can be found [on GitHub](https://github.com/allenai/tango/blob/main/LICENSE).

<!-- end license -->


