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

https://github.com/jahongir7174/seesawloss

Seesaw Loss implementation using PyTorch
https://github.com/jahongir7174/seesawloss

class-imbalance classification loss-functions pytorch seesawloss

Last synced: about 2 months ago
JSON representation

Seesaw Loss implementation using PyTorch

Awesome Lists containing this project

README

        

[SeesawLoss](https://arxiv.org/abs/2008.10032) implementation using PyTorch

### Install

```bash
pip install seesawloss
```

### Usage

```python
from seesawloss import SeesawLoss

...
criterion = SeesawLoss(num_classes=1000)
...
```