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
- Host: GitHub
- URL: https://github.com/jahongir7174/polyloss
- Owner: jahongir7174
- License: mit
- Created: 2022-05-02T01:06:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-27T07:26:07.000Z (over 3 years ago)
- Last Synced: 2025-03-31T18:51:25.309Z (7 months ago)
- Topics: classification, polyloss, pytorch
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 12
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
...
```