Metadata-Version: 2.1
Name: gpnpytorchtools
Version: 0.1.0
Summary: A collection of pytorch tools created by GPN members
Home-page: https://github.com/nxdens/GPNPytorchTools/
Author: Linghai Wang
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

---
# gpnpytorchtools

[![codecov](https://codecov.io/gh/nxdens/GPNPytorchTools/branch/main/graph/badge.svg?token=GPNPytorchTools_token_here)](https://codecov.io/gh/nxdens/GPNPytorchTools)
[![CI](https://github.com/nxdens/GPNPytorchTools/actions/workflows/main.yml/badge.svg)](https://github.com/nxdens/GPNPytorchTools/actions/workflows/main.yml)

gpnpytorchtools created by Linghai Wang with contributions from Jinghang Li

## Install it from PyPI

```bash
pip install gpnpytorchtools
```

## Development

Make sure to install the library locally for relative imports to work properly. You should give the path to the folder containing the setup.py file

```bash
pip install -e path/to/gpnpytorchtools
```

## Usage

```py
from gpnpytorchtools import BaseClass
from gpnpytorchtools import base_function

BaseClass().base_method()
base_function()
```

```bash
$ python -m gpnpytorchtools
#or
$ gpnpytorchtools
```

## Development

Read the [CONTRIBUTING.md](CONTRIBUTING.md) file.
