Metadata-Version: 2.1
Name: torchtnt
Version: 0.2.3
Summary: A lightweight library for PyTorch training tools and utilities
Home-page: https://github.com/pytorch/tnt
Author: PyTorch
Author-email: daniellepintz@fb.com
License: BSD-3
Keywords: pytorch,torch,training,tools,utilities
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: torch
Requires-Dist: numpy
Requires-Dist: fsspec
Requires-Dist: tensorboard
Requires-Dist: packaging
Requires-Dist: psutil
Requires-Dist: pyre_extensions
Requires-Dist: typing_extensions
Requires-Dist: setuptools
Requires-Dist: tqdm
Requires-Dist: tabulate
Provides-Extra: dev
Requires-Dist: parameterized; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: torchsnapshot-nightly; extra == "dev"
Requires-Dist: pyre-check; extra == "dev"
Requires-Dist: torchvision==0.16.2; extra == "dev"

TNT
==========

**TNT** is a library for PyTorch **t**rai**n**ing **t**ools and utilities.

<p align="center">
<a href="https://github.com/pytorch/tnt/actions?query=branch%3Amaster"><img src="https://img.shields.io/github/actions/workflow/status/pytorch/tnt/test.yaml?branch=master" alt="build status"></a>
<a href="https://pypi.org/project/torchtnt"><img src="https://img.shields.io/pypi/v/torchtnt" alt="pypi version"></a>
<a href="https://anaconda.org/conda-forge/torchtnt"><img src="https://img.shields.io/conda/vn/conda-forge/torchtnt" alt="pypi version"></a>
<a href="https://pypi.org/project/torchtnt-nightly"><img src="https://img.shields.io/pypi/v/torchtnt-nightly?label=nightly" alt="pypi nightly version"></a>
<a href="https://codecov.io/gh/pytorch/tnt"><img src="https://codecov.io/gh/pytorch/tnt/branch/master/graph/badge.svg?token=DR67Q6T7YF" alt="codecov"></a>
<a href="https://github.com/pytorch/tnt/blob/master/LICENSE"><img src="https://img.shields.io/pypi/l/torchtnt" alt="bsd license"></a>
<a href="https://pytorch.org/tnt/"><img src="https://img.shields.io/badge/dynamic/json.svg?label=docs&url=https%3A%2F%2Fpypi.org%2Fpypi%2Ftorchtnt%2Fjson&query=%24.info.version&colorB=brightgreen&prefix=v" alt="documentation status"></a>
</div>


## Installation

TNT can be installed with pip:

```buildoutcfg
pip install torchtnt
```
Or, alternatively, via conda:

```buildoutcfg
conda install -c conda-forge torchtnt
```

If you run into issues, make sure that Pytorch is installed first.

You can also install the latest version from master. Just run:

```buildoutcfg
pip install git+https://github.com/pytorch/tnt.git@master
```

To update to the latest version from master:

```buildoutcfg
pip install --upgrade git+https://github.com/pytorch/tnt.git@master
```
