Metadata-Version: 2.1
Name: torchtnt-nightly
Version: 2022.8.12
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
Platform: UNKNOWN
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
Provides-Extra: dev
License-File: LICENSE

TNT
==========

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


![travis](https://travis-ci.org/pytorch/tnt.svg?branch=master)
[![Documentation Status](https://readthedocs.org/projects/tnt/badge/?version=latest)](http://tnt.readthedocs.io/en/latest/?badge=latest)

- [About](#about)
- [Installation](#installation)
- [Documentation](http://tnt.readthedocs.io)
- [Getting Started](#getting-started)


## Installation

TNT can be installed with pip. To do so, run:

```buildoutcfg
pip install 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
```


