An open API service indexing awesome lists of open source software.

https://github.com/jahongir7174/polyloss

PolyLoss implementation using PyTorch
https://github.com/jahongir7174/polyloss

classification polyloss pytorch

Last synced: 5 months ago
JSON representation

PolyLoss implementation using PyTorch

Awesome Lists containing this project

README

          

[PolyLoss](https://arxiv.org/abs/2204.12511) implementation using PyTorch

### Install

```bash
pip install polyloss
```

### Usage

```python
from polyloss import PolyLoss

...
criterion = PolyLoss(epsilon=2.0)
...
```